Prometheus监控clickhouse服务

Posted 品鉴初心

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Prometheus监控clickhouse服务相关的知识,希望对你有一定的参考价值。

Prometheus 自动服务发现

Prometheus-Operator集群已经配置了服务自动发现,详见更新自动发现配置

更新 clickhouse 服务

# 查看 clickhouse 指标服务
kubectl get service clickhouse-operator-metrics -n middle |grep clickhouse
clickhouse-operator-metrics   ClusterIP   172.20.11.30   <none>        8888/TCP   38d

添加自动服务发现标志:

# kubectl edit svc clickhouse-operator-metrics -o yaml -n middle
apiVersion: v1
kind: Service
metadata:
  annotations:
    meta.helm.sh/release-name: ck-operater
    meta.helm.sh/release-namespace: middle
    prometheus.io/port: "8888"
    prometheus.io/scrape: "true"

主要是添加两个:

prometheus.io/port: "8888"
prometheus.io/scrape: "true"

保存退出后,service文件会重新apple。

查看 prometheus targets

对接Prometheus告警

自定义报警rules,具体文件详见prometheus-alert-rules-clickhouse.yaml

部署 clickhouse 报警规则:

kubectl apply -f prometheus-alert-rules-clickhouse.yaml

对接 Grafana

对接grafana时注意json文件的变量,应根据实际情况进行更改:

以上是关于Prometheus监控clickhouse服务的主要内容,如果未能解决你的问题,请参考以下文章

ClickhouseClickhouse 整合 Prometheus 监控 运行时状态

20210810-基于CentOS7/Linux Grafana 集成 Prometheus并实现对ClickHouse监控

clickhouse 20.x 与prometheus + grafana+ckman的集成

统一观测丨使用 Prometheus 监控 E-MapReduce,我们该关注哪些指标?

MySQL 监控 第01期:Prometheus+Grafana 监控 MySQL

大数据ClickHouse进阶(二十七):ClickHouse服务监控