nacos 接入grafana不展示数据问题解决
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了nacos 接入grafana不展示数据问题解决相关的知识,希望对你有一定的参考价值。
参考技术Aprometheus上面有数据,在grafana导入模板后无数据,错误提示 Templating init failed Datasource named prometheus was not found
出现这种情况请确认默grafana datasources promtheus的数据源名称。
把官方模板修改为你对应的prometheus数据源Name即可,再重新导入一次,显示以下即是正常
Nacos + Grafana + Prometheu安装(standalone-derby)
安装前先简单解释一下这些名词,防止大家不知道什么作用,一头雾水
Nacos:
Nacos 致力于帮助您发现、配置和管理微服务。Nacos 提供了一组简单易用的特性集,帮助您实现动态服务发现、服务配置管理、服务及流量管理。Nacos 帮助您更敏捷和容易地构建、交付和管理微服务平台。Nacos 是构建以“服务”为中心的现代应用架构(例如微服务范式、云原生范式)的服务基础设施。
Grafana:
Grafana是一个开源的功能丰富的数据可视化平台,通常用于时序数据的可视化。它内置了以下数据源的支持:下面是我们安装时用到的架构图:
Prometheu:
Prometheus(普罗米修斯)是一套开源的监控&报警&时间序列数据库的组合,起始是由SoundCloud公司开发的。随着发展,越来越多公司和组织接受采用Prometheus,社会也十分活跃,他们便将它独立成开源项目,并且有公司来运作。Google SRE的书内也曾提到跟他们BorgMon监控系统相似的实现是Prometheus。现在最常见的Kubernetes容器管理系统中,通常会搭配Prometheus进行监控。
derby:
Apache Derby是一个完全用java编写的数据库,Derby是一个Open source的产品,基于Apache License 2.0分发。Apache Derby非常小巧,核心部分derby.jar只有2M,所以既可以做为单独的数据库服务器使用,也可以内嵌在应用程序中使用。Cognos 8 BI的Content Store默认就是使用的Derby数据库,可以在Cognos8的安装目录下看到一个叫derby10.1.2.1的目录,就是内嵌的10.1.2.1 版本的derby。
安装:
version: "2"
services:
nacos:
image: nacos/nacos-server:latest
container_name: nacos-standalone
environment:
- PREFER_HOST_MODE=hostname
- MODE=standalone
volumes:
- /root/rancher/develop/nacos-docker/standalone-logs/:/home/nacos/logs
- /root/rancher/develop/nacos-docker/example/init.d/custom.properties:/home/nacos/init.d/custom.properties
expose:
- "8848"
prometheus:
container_name: prometheus
image: prom/prometheus:latest
volumes:
- /root/rancher/develop/nacos-docker/example/prometheus/prometheus-standalone.yaml:/etc/prometheus/prometheus.yml
expose:
- "9090"
depends_on:
- nacos
restart: on-failure
grafana:
container_name: grafana
image: grafana/grafana:latest
expose:
- "3000"
启动
验证服务是否正常
验证nacos 打开网址:http://10.42.226.203:8848/nacos
验证Grafana
打开网址:http://10.42.43.26:9090/graph
验证Prometheus
打开网址:http://10.42.99.0:3000/login
后续我会陆续介绍如何配置和使用这些软件,享受过程ing
以上是关于nacos 接入grafana不展示数据问题解决的主要内容,如果未能解决你的问题,请参考以下文章
分分钟教会你, 解决 Grafana 中 String 类型的展示问题
分分钟教会你, 解决 Grafana 中 String 类型的展示问题