转载

Nacos + Grafana + Prometheu安装(standalone-derby)

安装前先简单解释一下这些名词,防止大家不知道什么作用,一头雾水

Nacos:

Nacos 致力于帮助您发现、配置和管理微服务。Nacos 提供了一组简单易用的特性集,帮助您实现动态服务发现、服务配置管理、服务及流量管理。Nacos 帮助您更敏捷和容易地构建、交付和管理微服务平台。Nacos 是构建以“服务”为中心的现代应用架构(例如微服务范式、云原生范式)的服务基础设施。

Grafana:

Grafana是一个开源的功能丰富的数据可视化平台,通常用于时序数据的可视化。它内置了以下数据源的支持:下面是我们安装时用到的架构图:

Nacos + Grafana + Prometheu安装(standalone-derby)

Prometheu:

Prometheus(普罗米修斯)是一套开源的监控&报警&时间序列数据库的组合,起始是由SoundCloud公司开发的。随着发展,越来越多公司和组织接受采用Prometheus,社会也十分活跃,他们便将它独立成开源项目,并且有公司来运作。Google SRE的书内也曾提到跟他们BorgMon监控系统相似的实现是Prometheus。现在最常见的Kubernetes容器管理系统中,通常会搭配Prometheus进行监控。

Nacos + Grafana + Prometheu安装(standalone-derby)

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。

安装:

Nacos + Grafana + Prometheu安装(standalone-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 + Grafana + Prometheu安装(standalone-derby)

启动

验证服务是否正常

验证nacos 打开网址:http://10.42.226.203:8848/nacos

Nacos + Grafana + Prometheu安装(standalone-derby)

验证Grafana

打开网址:http://10.42.43.26:9090/graph

Nacos + Grafana + Prometheu安装(standalone-derby)

验证Prometheus

打开网址:http://10.42.99.0:3000/login

Nacos + Grafana + Prometheu安装(standalone-derby)

后续我会陆续介绍如何配置和使用这些软件,享受过程ing

原文  https://juejin.im/post/5e7ec9506fb9a03c5b2faeb9
正文到此结束
Loading...