ClickHouse运行时会将一些自身的运行状态记录到众多系统表中(system.*
),所以我们对于ClickHouse的运行指标的监控,也主要来自于这些系统表,但是这种方式有两个弊端:
1)、过于底层,不够直观,我们需要可视化展示;
2)、系统表只记录了ClickHouse自身的运行指标,有时候我们需要通过外部系统的指标进行关联分析,比如ZooKeeper、服务器CPU等。
现在Prometheus+Grafana的组合较为流行,安装简单,可以继承很多框架,Prometheus负责收集各类系统的运行指标,Grafana负责可视化展示。ClickHouse从20.1.2.4开始,内置了对接Prometheus的功能,配置方式也很简单,可作为Prometheus的Endpoint服务,从而自动将metrics
、events
和asynchronous_metrics
三张系统表的数据发给Prometheus。
下载地址,解压安装包,并修改目录名:
[root@scentos szc]# tar -zxvf prometheus-2.26.0.linux-amd64.tar.gz
[root@scentos szc]# mv prometheus-2.26.0.linux-amd64/ prometheus-2.26.0/
[root@scentos szc]# cd prometheus-2.26.0/
然后修改配置文件prometheus.yml:
[root@scentos prometheus-2.26.0]# vim prometheus.yml
将scrape_configs一项修改成如下形式:
scrape_configs:
# The job name is added as a label `job=` to any timeseries scraped from this config.
- job_name: 'prometheus'
# metrics_path defaults to '/metrics'
# scheme defaults to 'http'.
static_configs:
- targets: ['scentos:9090'] # 主机ip:9090
- job_name: 'clickhouse' # clickHouse任务
static_configs:
- targets: ['scentos:9363'] # 主机ip:9363
然后启动prometeus:
[root@scentos prometheus-2.26.0]# nohup ./prometheus --config.file=prometheus.yml
nohup: ignoring input and appending output to ‘nohup.out’
在浏览器访问ip:9090,并查看Status
->Targets
:
可见如下界面:
因为我们的ClickHouse还没有对Prometheus配置,因此这样是正常的,不过已经说明Prometheus正常安装、配置并启动了。
下载安装:
[root@scentos szc]# wget https://dl.grafana.com/enterprise/release/grafana-enterprise-7.5.2-1.x86_64.rpm
[root@scentos szc]# yum install grafana-enterprise-7.5.2-1.x86_64.rpm
直接启动:
[root@scentos szc]# service grafana-server start
访问ip:3000,用户名密码都是admin:
第一次访问要修改密码,不过可以点击下面的skip跳过这一步,就进入grafana的主界面:
至此,grafana安装启动成功。
修改文件/etc/clickhouse-server/config.xml:
[root@scentos szc]# vim /etc/clickhouse-server/config.xml
打开如下代码的配置:
<prometheus>
<endpoint>/metricsendpoint>
<port>9363port>
<metrics>truemetrics>
<events>trueevents>
<asynchronous_metrics>trueasynchronous_metrics>
<status_info>truestatus_info>
prometheus>
重启ClickHouse:
[root@scentos szc]# systemctl restart clickhouse-server
然后从浏览器访问ip:9363/metrics,会看到以下界面:
然后重启Prometheus,稍候片刻回到targets
下,看到clickhouse的状态是up
,说明ClickHouse和Prometheus连接成功:
点击配置->数据源:
然后点击添加数据源:
选择Prometheus:
输入Prometheus的ip:port:
点击下面的保存&测试:
然后点击返回即可,可以看到我们新加的数据源:
然后我们开始建立看板,不过我们不会从头建立,而是导入现有的看板模板,可从这里下载,然后在Grafana的界面中,点击加号->导入:
点击上传json文件:
选择好json文件之后,选择我们的Prometheus数据源,点击导入:
然后就可以看到丰富的指标数据了: