add grafana screenshot

This commit is contained in:
StarsL.cn 2022-04-10 11:55:01 +08:00
parent bea3db9a0b
commit 9d6ba313ac
5 changed files with 52 additions and 4 deletions

Binary file not shown.

After

Width:  |  Height:  |  Size: 143 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 193 KiB

View File

@ -106,6 +106,12 @@ export const constantRoutes = [
name: 'Prometheus 配置',
component: () => import('@/views/node-exporter/pconfig'),
meta: { title: 'Prometheus 配置', icon: 'el-icon-set-up' }
},
{
path: 'grafana',
name: 'Grafana 看板',
component: () => import('@/views/node-exporter/grafana'),
meta: { title: 'Grafana 看板', icon: 'el-icon-data-line' }
}
]
},
@ -139,6 +145,12 @@ export const constantRoutes = [
name: '告警规则',
component: () => import('@/views/blackbox/rules'),
meta: { title: '告警规则', icon: 'el-icon-bell' }
},
{
path: 'grafana',
name: 'Grafana 看板',
component: () => import('@/views/blackbox/grafana'),
meta: { title: 'Grafana 看板', icon: 'el-icon-data-line' }
}
]
},
@ -147,6 +159,10 @@ export const constantRoutes = [
component: Layout,
meta: { title: '快速链接', icon: 'link' },
children: [
{
path: 'https://github.com/starsliao/ConsulManager#%E7%89%B9%E5%88%AB%E9%B8%A3%E8%B0%A2',
meta: { title: '赞赏与鸣谢', icon: 'el-icon-cold-drink' }
},
{
path: 'https://starsl.cn',
meta: { title: 'StarsL.cn', icon: 'el-icon-s-custom' }
@ -163,10 +179,6 @@ export const constantRoutes = [
path: 'https://starsl.cn/static/img/thanks.png',
meta: { title: '我的公众号', icon: 'el-icon-chat-dot-round' }
},
{
path: 'https://github.com/starsliao/ConsulManager/blob/main/Thanks.md',
meta: { title: '特别鸣谢', icon: 'el-icon-cold-drink' }
},
{
path: 'https://element.eleme.cn/#/zh-CN/component/icon',
meta: { title: 'Element', icon: 'el-icon-eleme' }

View File

@ -0,0 +1,18 @@
<template>
<div>
<br>
<el-row :gutter="20">
<el-col :span="12" :offset="6">
<el-card shadow="always" style="text-align: center">
Grafana 看板详情
<el-link href="https://grafana.com/grafana/dashboards/9965" target="_blank" type="primary">https://grafana.com/grafana/dashboards/9965</el-link><br><br>
Grafana 看板ID<strong>9965</strong>
</el-card>
</el-col>
</el-row>
<br>
<div class="block">
<el-image style="width: 100%; height: 100%" src="/blackbox.png" />
</div>
</div>
</template>

View File

@ -0,0 +1,18 @@
<template>
<div>
<br>
<el-row :gutter="20">
<el-col :span="12" :offset="6">
<el-card shadow="always" style="text-align: center">
Grafana 看板详情
<el-link href="https://grafana.com/grafana/dashboards/8919" target="_blank" type="primary">https://grafana.com/grafana/dashboards/8919</el-link><br><br>
Grafana 看板ID<strong>8919</strong>
</el-card>
</el-col>
</el-row>
<br>
<div class="block">
<el-image style="width: 100%; height: 100%" src="/node-exporter.png" />
</div>
</div>
</template>