## mysqld_exporter 改造为探针型
> 使用方法
1. 下载二进制或自行编译
```shell script
# 下载二进制
wget https://github.com/ning1875/mysqld_exporter/releases/download/v0.12.1/mysqld_exporter-0.12.1.linux-amd64.tar.gz
# 源码编译
git clone https://github.com/ning1875/mysqld_exporter.git && build
```
2. 解压tar包,使用和原版一样的命令行参数启动mysqld_exporter进程
3. 浏览器访问或者curl测试如下
```shell script
curl 'http://localhost:9104/probe?dsn=root:123123@tcp(localhost:3306)/'
```
- dsn还是常规的dsn : user=root ,pass=123123 ,host=localhost ,port=3306
- 如果能显示metrics接口证明ok
4. prometheus配置文件传参
```yaml
- job_name: mysql_exporter
honor_timestamps: true
scrape_interval: 15s
scrape_timeout: 15s
metrics_path: /probe
scheme: http
relabel_configs:
- source_labels: [__address__]
separator: ;
regex: (.*)
target_label: __param_dsn
replacement: $1
action: replace
- source_labels: [__param_dsn]
separator: ;
regex: .*tcp\((.*?)\).*
target_label: instance
replacement: $1
action: replace
- separator: ;
regex: (.*)
target_label: __address__
replacement: localhost:9105
action: replace
static_configs:
- targets:
- user:pass@tcp(mysql_ip1:3306)/
- user:pass@tcp(mysql_ip2:3306)/
```
东方-phantom
- 粉丝: 236
- 资源: 5
最新资源
- 大数据技术综述:Hadoop生态体系,Hive,QSL,MR,Flume等详解
- 系统学习直播运营:掌握起号方法、主播能力、小店随心推,打造爆款直播.mp4
- 万相台无界版2024全面更新,详解关键词、测款测图与精准人群布局.mp4
- Pantum DS-2XX系列诊断手册.pdf
- Pantum DS-2XX系列拆装手册.pdf
- 奔图A3装订机.pdf
- 大数据技术原理详解及其核心框架应用的多项选择题汇总
- labview液压泵试验台程序:功能包括,同PLC通讯程序,液压动画,手动控制及调试,传感器标定,报警设置及报警记录,自动实验,数据处理曲线处理,数据库存储及查询,报表自动生成及打印,扫码枪扫码及信号
- M7300系列.pdf
- M6700 6800 7100 7200.pdf
- M7600 7650系列.pdf
- BM5100 5200.pdf
- BM4000、BM4100系列.pdf
- 大数据复习PPT.zip
- 毕业设计-基于python大学生就业信息管理系统(django)毕业设计与实现(源码+数据库)
- M5000-6000、M5100-5200系列.pdf
资源上传下载、课程学习等过程中有任何疑问或建议,欢迎提出宝贵意见哦~我们会及时处理!
点击此处反馈