mirror of
https://github.com/status-im/consul.git
synced 2025-02-12 13:46:46 +00:00
5fb9df1640
* Adding explicit MPL license for sub-package This directory and its subdirectories (packages) contain files licensed with the MPLv2 `LICENSE` file in this directory and are intentionally licensed separately from the BSL `LICENSE` file at the root of this repository. * Adding explicit MPL license for sub-package This directory and its subdirectories (packages) contain files licensed with the MPLv2 `LICENSE` file in this directory and are intentionally licensed separately from the BSL `LICENSE` file at the root of this repository. * Updating the license from MPL to Business Source License Going forward, this project will be licensed under the Business Source License v1.1. Please see our blog post for more details at <Blog URL>, FAQ at www.hashicorp.com/licensing-faq, and details of the license at www.hashicorp.com/bsl. * add missing license headers * Update copyright file headers to BUSL-1.1 * Update copyright file headers to BUSL-1.1 * Update copyright file headers to BUSL-1.1 * Update copyright file headers to BUSL-1.1 * Update copyright file headers to BUSL-1.1 * Update copyright file headers to BUSL-1.1 * Update copyright file headers to BUSL-1.1 * Update copyright file headers to BUSL-1.1 * Update copyright file headers to BUSL-1.1 * Update copyright file headers to BUSL-1.1 * Update copyright file headers to BUSL-1.1 * Update copyright file headers to BUSL-1.1 * Update copyright file headers to BUSL-1.1 * Update copyright file headers to BUSL-1.1 * Update copyright file headers to BUSL-1.1 --------- Co-authored-by: hashicorp-copywrite[bot] <110428419+hashicorp-copywrite[bot]@users.noreply.github.com>
109 lines
3.3 KiB
JavaScript
109 lines
3.3 KiB
JavaScript
/**
|
|
* Copyright (c) HashiCorp, Inc.
|
|
* SPDX-License-Identifier: BUSL-1.1
|
|
*/
|
|
|
|
import { inject as service } from '@ember/service';
|
|
import RepositoryService from 'consul-ui/services/repository';
|
|
import dataSource from 'consul-ui/decorators/data-source';
|
|
|
|
// CONSUL_METRICS_POLL_INTERVAL controls how long between each poll to the
|
|
// metrics provider
|
|
export default class MetricsService extends RepositoryService {
|
|
@service('ui-config') config;
|
|
@service('env') env;
|
|
@service('client/http') client;
|
|
|
|
error = null;
|
|
|
|
getModelName() {
|
|
return 'metrics';
|
|
}
|
|
|
|
init() {
|
|
super.init(...arguments);
|
|
// TODO: this flow should be be async, then can just use either get or a DataSource
|
|
const config = this.config.getSync();
|
|
// Inject whether or not the proxy is enabled as an option into the opaque
|
|
// JSON options the user provided.
|
|
const opts = config.metrics_provider_options || {};
|
|
opts.metrics_proxy_enabled = config.metrics_proxy_enabled;
|
|
// Inject the base app URL
|
|
const provider = config.metrics_provider || 'prometheus';
|
|
// Inject a convenience function for dialing through the metrics proxy.
|
|
opts.fetch = (path, params) =>
|
|
this.client.fetchWithToken(`/v1/internal/ui/metrics-proxy${path}`, params);
|
|
|
|
try {
|
|
this.provider = window.consul.getMetricsProvider(provider, opts);
|
|
} catch (e) {
|
|
this.error = new Error(`metrics provider not initialized: ${e}`);
|
|
// Show the user the error once for debugging their provider outside UI
|
|
// Dev.
|
|
console.error(this.error); // eslint-disable-line no-console
|
|
}
|
|
}
|
|
|
|
@dataSource('/:partition/:ns/:dc/metrics/summary-for-service/:slug/:protocol')
|
|
findServiceSummary(params, configuration = {}) {
|
|
if (this.error) {
|
|
return Promise.reject(this.error);
|
|
}
|
|
const promises = [
|
|
this.provider.serviceRecentSummarySeries(
|
|
params.slug,
|
|
params.dc,
|
|
params.ns,
|
|
params.protocol,
|
|
{}
|
|
),
|
|
this.provider.serviceRecentSummaryStats(
|
|
params.slug,
|
|
params.dc,
|
|
params.ns,
|
|
params.protocol,
|
|
{}
|
|
),
|
|
];
|
|
return Promise.all(promises).then((results) => {
|
|
return {
|
|
meta: {
|
|
interval: this.env.var('CONSUL_METRICS_POLL_INTERVAL') || 10000,
|
|
},
|
|
series: results[0],
|
|
stats: results[1].stats,
|
|
};
|
|
});
|
|
}
|
|
|
|
@dataSource('/:partition/:ns/:dc/metrics/upstream-summary-for-service/:slug/:protocol')
|
|
findUpstreamSummary(params, configuration = {}) {
|
|
if (this.error) {
|
|
return Promise.reject(this.error);
|
|
}
|
|
return this.provider
|
|
.upstreamRecentSummaryStats(params.slug, params.dc, params.ns, {})
|
|
.then((result) => {
|
|
result.meta = {
|
|
interval: this.env.var('CONSUL_METRICS_POLL_INTERVAL') || 10000,
|
|
};
|
|
return result;
|
|
});
|
|
}
|
|
|
|
@dataSource('/:partition/:ns/:dc/metrics/downstream-summary-for-service/:slug/:protocol')
|
|
findDownstreamSummary(params, configuration = {}) {
|
|
if (this.error) {
|
|
return Promise.reject(this.error);
|
|
}
|
|
return this.provider
|
|
.downstreamRecentSummaryStats(params.slug, params.dc, params.ns, {})
|
|
.then((result) => {
|
|
result.meta = {
|
|
interval: this.env.var('CONSUL_METRICS_POLL_INTERVAL') || 10000,
|
|
};
|
|
return result;
|
|
});
|
|
}
|
|
}
|