Grafana Dashboard标签筛选配置(Grafana变量查询配置)
dashboard
General-purpose web UI for Kubernetes clusters
项目地址:https://gitcode.com/gh_mirrors/da/dashboard
免费下载资源
·
在K8s使用过程中,我们经常使用 Prometheus + Grafana的组合,来配置我们的监控及报警,所以Grafana的文章,我也归属到了白话K8s系列当中来了。
写本篇博文的,主要原因是, 当我搜索Grafana 标签配置时, 发现中文文档很少,原先一分钟可以搞定的事情,变成了需要取看官方文档查阅,所以记录一下(走过的弯路…)
文章目录
一、如何添加变量
- 添加变量
- 配置变量 (主要)
标红框内容为关键内容。
- Name: 变量的名称 (查询时需要使用)
- Query: 如何找到这个变量的值,怎么获取 (重要,后面写个例子)
- Label: 显示的标签 ( 没有实质作用,就是一个Label)
- Refresh: 什么时候刷新这个变量的值
示例:
比如我有如下指标, 我先将他们按svc 分组进行查看,比如我想仅查看 svc="spring-cloud-consumer"
的监控指标。
那此时我们就应该像截图中的那样配置, 把 svc标签的值通过 公式 label_value(svc)
去到,后续查询时,可进行分组。
jaeger_spans_received_total{debug="false",format="jaeger",svc="com.jd.testjsf.helloservice",transport="http"} 25189
jaeger_spans_received_total{debug="false",format="jaeger",svc="other-services",transport="grpc"} 0
jaeger_spans_received_total{debug="false",format="jaeger",svc="other-services",transport="http"} 0
jaeger_spans_received_total{debug="false",format="jaeger",svc="other-services",transport="tchannel"} 0
jaeger_spans_received_total{debug="false",format="jaeger",svc="other-services",transport="unknown"} 0
jaeger_spans_received_total{debug="false",format="jaeger",svc="spring-cloud-consumer",transport="http"} 2
jaeger_spans_received_total{debug="false",format="jaeger",svc="spring-cloud-provider",transport="http"} 1
二、指标查询如何使用变量
- 如何配置采集呢? 如何在采集中使用变量呢?
同样我们使用上面的例子,我们想让指标查询公式动态的使用我们的变量,进而完成查看指定服务的Jaeger指标。
请使我们在上一步配置的变量名称 Name, 也是时 svc, 通过 {svc="$svc"}
引入变量。
这样就配置完成啦!! 可以愉快的使用筛选查看数据了 !!
喜欢请一键三连哦 ~!
GitHub 加速计划 / da / dashboard
14.17 K
4.13 K
下载
General-purpose web UI for Kubernetes clusters
最近提交(Master分支:2 个月前 )
9a476333
Bumps [jest-preset-angular](https://github.com/thymikee/jest-preset-angular) from 14.2.0 to 14.2.2.
- [Release notes](https://github.com/thymikee/jest-preset-angular/releases)
- [Changelog](https://github.com/thymikee/jest-preset-angular/blob/main/CHANGELOG.md)
- [Commits](https://github.com/thymikee/jest-preset-angular/compare/v14.2.0...v14.2.2)
---
updated-dependencies:
- dependency-name: jest-preset-angular
dependency-type: direct:development
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> 2 个月前
11b7e82e
Bumps [cypress](https://github.com/cypress-io/cypress) from 13.13.1 to 13.13.2.
- [Release notes](https://github.com/cypress-io/cypress/releases)
- [Changelog](https://github.com/cypress-io/cypress/blob/develop/CHANGELOG.md)
- [Commits](https://github.com/cypress-io/cypress/compare/v13.13.1...v13.13.2)
---
updated-dependencies:
- dependency-name: cypress
dependency-type: direct:development
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> 2 个月前
更多推荐
已为社区贡献3条内容
所有评论(0)