mirror of https://github.com/rancher/dashboard.git
229 lines
7.4 KiB
Vue
229 lines
7.4 KiB
Vue
<script>
|
|
import isEmpty from 'lodash/isEmpty';
|
|
|
|
import InstallRedirect from '@shell/utils/install-redirect';
|
|
import AlertTable from '@shell/components/AlertTable';
|
|
import { NAME, CHART_NAME } from '@shell/config/product/monitoring';
|
|
import { CATALOG, ENDPOINTS, MONITORING } from '@shell/config/types';
|
|
import { allHash } from '@shell/utils/promise';
|
|
import { findBy } from '@shell/utils/array';
|
|
import { getClusterPrefix } from '@shell/utils/grafana';
|
|
import { Banner } from '@components/Banner';
|
|
import LazyImage from '@shell/components/LazyImage';
|
|
import SimpleBox from '@shell/components/SimpleBox';
|
|
import { haveV1MonitoringWorkloads } from '@shell/utils/monitoring';
|
|
|
|
const CATTLE_MONITORING_NAMESPACE = 'cattle-monitoring-system';
|
|
|
|
export default {
|
|
components: {
|
|
Banner,
|
|
LazyImage,
|
|
SimpleBox,
|
|
AlertTable
|
|
},
|
|
|
|
middleware: InstallRedirect(NAME, CHART_NAME),
|
|
|
|
async fetch() {
|
|
await this.fetchDeps();
|
|
},
|
|
|
|
data() {
|
|
const grafanaSrc = require('~shell/assets/images/vendor/grafana.svg');
|
|
const prometheusSrc = require('~shell/assets/images/vendor/prometheus.svg');
|
|
const currentCluster = this.$store.getters['currentCluster'];
|
|
|
|
return {
|
|
availableLinks: {
|
|
alertmanager: false,
|
|
grafana: false,
|
|
prometheus: false,
|
|
},
|
|
resources: [MONITORING.ALERTMANAGER, MONITORING.PROMETHEUS],
|
|
v1Installed: false,
|
|
externalLinks: [
|
|
{
|
|
enabled: false,
|
|
group: 'alertmanager',
|
|
iconSrc: prometheusSrc,
|
|
label: 'monitoring.overview.linkedList.alertManager.label',
|
|
description:
|
|
'monitoring.overview.linkedList.alertManager.description',
|
|
link: `/k8s/clusters/${ currentCluster.id }/api/v1/namespaces/cattle-monitoring-system/services/http:rancher-monitoring-alertmanager:9093/proxy`,
|
|
},
|
|
{
|
|
enabled: false,
|
|
group: 'grafana',
|
|
iconSrc: grafanaSrc,
|
|
label: 'monitoring.overview.linkedList.grafana.label',
|
|
description: 'monitoring.overview.linkedList.grafana.description',
|
|
link: '',
|
|
},
|
|
{
|
|
enabled: false,
|
|
group: 'prometheus',
|
|
iconSrc: prometheusSrc,
|
|
label: 'monitoring.overview.linkedList.prometheusPromQl.label',
|
|
description:
|
|
'monitoring.overview.linkedList.prometheusPromQl.description',
|
|
link: `/k8s/clusters/${ currentCluster.id }/api/v1/namespaces/cattle-monitoring-system/services/http:rancher-monitoring-prometheus:9090/proxy/graph`,
|
|
},
|
|
{
|
|
enabled: false,
|
|
group: 'prometheus',
|
|
iconSrc: prometheusSrc,
|
|
label: 'monitoring.overview.linkedList.prometheusRules.label',
|
|
description:
|
|
'monitoring.overview.linkedList.prometheusRules.description',
|
|
link: `/k8s/clusters/${ currentCluster.id }/api/v1/namespaces/cattle-monitoring-system/services/http:rancher-monitoring-prometheus:9090/proxy/rules`,
|
|
},
|
|
{
|
|
enabled: false,
|
|
group: 'prometheus',
|
|
iconSrc: prometheusSrc,
|
|
label: 'monitoring.overview.linkedList.prometheusTargets.label',
|
|
description:
|
|
'monitoring.overview.linkedList.prometheusTargets.description',
|
|
link: `/k8s/clusters/${ currentCluster.id }/api/v1/namespaces/cattle-monitoring-system/services/http:rancher-monitoring-prometheus:9090/proxy/targets`,
|
|
},
|
|
]
|
|
};
|
|
},
|
|
|
|
methods: {
|
|
async fetchDeps() {
|
|
const { $store, externalLinks } = this;
|
|
const currentCluster = this.$store.getters['currentCluster'];
|
|
|
|
this.v1Installed = await haveV1MonitoringWorkloads($store);
|
|
const hash = await allHash({
|
|
endpoints: $store.dispatch('cluster/findAll', { type: ENDPOINTS }),
|
|
app: $store.dispatch(`cluster/find`, { type: CATALOG.APP, id: 'cattle-monitoring-system/rancher-monitoring' })
|
|
});
|
|
|
|
if (!isEmpty(hash.endpoints)) {
|
|
const amMatch = findBy(externalLinks, 'group', 'alertmanager');
|
|
const grafanaMatch = findBy(externalLinks, 'group', 'grafana');
|
|
const promeMatch = externalLinks.filter(
|
|
(el) => el.group === 'prometheus'
|
|
);
|
|
|
|
grafanaMatch.link = `${ getClusterPrefix(hash.app?.currentVersion || '', currentCluster.id) }/api/v1/namespaces/cattle-monitoring-system/services/http:rancher-monitoring-grafana:80/proxy/`;
|
|
const alertmanager = findBy(
|
|
hash.endpoints,
|
|
'id',
|
|
`${ CATTLE_MONITORING_NAMESPACE }/rancher-monitoring-alertmanager`
|
|
);
|
|
const grafana = findBy(
|
|
hash.endpoints,
|
|
'id',
|
|
`${ CATTLE_MONITORING_NAMESPACE }/rancher-monitoring-grafana`
|
|
);
|
|
const prometheus = findBy(
|
|
hash.endpoints,
|
|
'id',
|
|
`${ CATTLE_MONITORING_NAMESPACE }/rancher-monitoring-prometheus`
|
|
);
|
|
|
|
if (!isEmpty(alertmanager) && !isEmpty(alertmanager.subsets)) {
|
|
amMatch.enabled = true;
|
|
}
|
|
if (!isEmpty(grafana) && !isEmpty(grafana.subsets)) {
|
|
grafanaMatch.enabled = true;
|
|
}
|
|
if (!isEmpty(prometheus) && !isEmpty(prometheus.subsets)) {
|
|
promeMatch.forEach((match) => {
|
|
match.enabled = true;
|
|
});
|
|
}
|
|
}
|
|
},
|
|
},
|
|
};
|
|
</script>
|
|
|
|
<template>
|
|
<section>
|
|
<header class="row">
|
|
<div class="col span-12">
|
|
<h1>
|
|
<t k="monitoring.overview.title" />
|
|
</h1>
|
|
<div>
|
|
<t
|
|
k="monitoring.overview.subtitle"
|
|
:raw="true"
|
|
/>
|
|
</div>
|
|
</div>
|
|
</header>
|
|
<div>
|
|
<Banner
|
|
v-if="v1Installed"
|
|
color="warning"
|
|
>
|
|
<template #default>
|
|
<t
|
|
k="monitoring.v1Warning"
|
|
:raw="true"
|
|
/>
|
|
</template>
|
|
</Banner>
|
|
<div class="create-resource-container">
|
|
<div class="subtypes-container">
|
|
<a
|
|
v-for="fel in externalLinks"
|
|
:key="fel.label"
|
|
v-clean-tooltip="
|
|
!fel.enabled ? t('monitoring.overview.linkedList.na') : undefined
|
|
"
|
|
:href="fel.enabled ? fel.link : void 0"
|
|
:disabled="!fel.enabled"
|
|
target="_blank"
|
|
rel="noopener noreferrer"
|
|
:class="{ 'subtype-banner': true, disabled: !fel.enabled }"
|
|
>
|
|
<div class="subtype-content">
|
|
<div class="title">
|
|
<div class="subtype-logo round-image">
|
|
<LazyImage :src="fel.iconSrc" />
|
|
</div>
|
|
<h5>
|
|
<span>
|
|
<t :k="fel.label" />
|
|
</span>
|
|
</h5>
|
|
<div class="flex-right">
|
|
<i class="icon icon-external-link" />
|
|
</div>
|
|
</div>
|
|
<hr>
|
|
<div class="description">
|
|
<span>
|
|
<t :k="fel.description" />
|
|
</span>
|
|
</div>
|
|
</div>
|
|
</a>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div>
|
|
<SimpleBox
|
|
class="mt-30"
|
|
:title="t('monitoring.overview.alertsList.label')"
|
|
>
|
|
<AlertTable />
|
|
</SimpleBox>
|
|
</div>
|
|
</section>
|
|
</template>
|
|
|
|
<style lang="scss" scoped>
|
|
.create-resource-container .subtype-banner {
|
|
min-height: 80px;
|
|
padding: 10px;
|
|
}
|
|
</style>
|