141 lines
4.7 KiB
YAML
141 lines
4.7 KiB
YAML
|
|
category: db
|
|||
|
|
app: mariadb
|
|||
|
|
name:
|
|||
|
|
zh-CN: MariaDB数据库
|
|||
|
|
en-US: MariaDB
|
|||
|
|
# 参数映射map. type是参数类型: 0-number数字, 1-string明文字符串, 2-secret加密字符串
|
|||
|
|
# 强制固定必须参数 - host
|
|||
|
|
configmap:
|
|||
|
|
- key: host
|
|||
|
|
type: 1
|
|||
|
|
- key: port
|
|||
|
|
type: 0
|
|||
|
|
- key: username
|
|||
|
|
type: 1
|
|||
|
|
- key: password
|
|||
|
|
type: 2
|
|||
|
|
- key: database
|
|||
|
|
type: 1
|
|||
|
|
- key: url
|
|||
|
|
type: 1
|
|||
|
|
# 指标组列表
|
|||
|
|
metrics:
|
|||
|
|
- name: basic
|
|||
|
|
# 指标组调度优先级(0-127)越小优先级越高,优先级低的指标组会等优先级高的指标组采集完成后才会被调度,相同优先级的指标组会并行调度采集
|
|||
|
|
# 优先级为0的指标组为可用性指标组,即它会被首先调度,采集成功才会继续调度其它指标组,采集失败则中断调度
|
|||
|
|
priority: 0
|
|||
|
|
# 指标组中的具体监控指标
|
|||
|
|
fields:
|
|||
|
|
# 指标信息 包括 field名称 type字段类型:0-number数字,1-string字符串 instance是否为实例主键 unit:指标单位
|
|||
|
|
- field: version
|
|||
|
|
type: 1
|
|||
|
|
instance: true
|
|||
|
|
- field: port
|
|||
|
|
type: 1
|
|||
|
|
- field: datadir
|
|||
|
|
type: 1
|
|||
|
|
- field: max_connections
|
|||
|
|
type: 0
|
|||
|
|
# (非必须)监控指标别名,与上面的指标名映射。用于采集接口数据字段不直接是最终指标名称,需要此别名做映射转换
|
|||
|
|
aliasFields:
|
|||
|
|
- version
|
|||
|
|
- version_compile_os
|
|||
|
|
- version_compile_machine
|
|||
|
|
- port
|
|||
|
|
- datadir
|
|||
|
|
- max_connections
|
|||
|
|
# (非必须)指标计算表达式,与上面的别名一起作用,计算出最终需要的指标值
|
|||
|
|
# eg: cores=core1+core2, usage=usage, waitTime=allTime-runningTime
|
|||
|
|
calculates:
|
|||
|
|
- port=port
|
|||
|
|
- datadir=datadir
|
|||
|
|
- max_connections=max_connections
|
|||
|
|
- version=version+"_"+version_compile_os+"_"+version_compile_machine
|
|||
|
|
protocol: jdbc
|
|||
|
|
jdbc:
|
|||
|
|
# 主机host: ipv4 ipv6 域名
|
|||
|
|
host: ^_^host^_^
|
|||
|
|
# 端口
|
|||
|
|
port: ^_^port^_^
|
|||
|
|
platform: mariadb
|
|||
|
|
username: ^_^username^_^
|
|||
|
|
password: ^_^password^_^
|
|||
|
|
database: ^_^database^_^
|
|||
|
|
# SQL查询方式: oneRow, multiRow, columns
|
|||
|
|
queryType: columns
|
|||
|
|
# sql
|
|||
|
|
sql: show global variables where Variable_name like 'version%' or Variable_name = 'max_connections' or Variable_name = 'datadir' or Variable_name = 'port';
|
|||
|
|
url: ^_^url^_^
|
|||
|
|
|
|||
|
|
- name: status
|
|||
|
|
priority: 1
|
|||
|
|
fields:
|
|||
|
|
# 指标信息 包括 field名称 type字段类型:0-number数字,1-string字符串 instance是否为实例主键 unit:指标单位
|
|||
|
|
- field: threads_created
|
|||
|
|
type: 0
|
|||
|
|
- field: threads_connected
|
|||
|
|
type: 0
|
|||
|
|
- field: threads_cached
|
|||
|
|
type: 0
|
|||
|
|
- field: threads_running
|
|||
|
|
type: 0
|
|||
|
|
# (非必须)监控指标别名,与上面的指标名映射。用于采集接口数据字段不直接是最终指标名称,需要此别名做映射转换
|
|||
|
|
aliasFields:
|
|||
|
|
- threads_created
|
|||
|
|
- threads_connected
|
|||
|
|
- threads_cached
|
|||
|
|
- threads_running
|
|||
|
|
# (非必须)指标计算表达式,与上面的别名一起作用,计算出最终需要的指标值
|
|||
|
|
# eg: cores=core1+core2, usage=usage, waitTime=allTime-runningTime
|
|||
|
|
calculates:
|
|||
|
|
- threads_created=threads_created
|
|||
|
|
- threads_connected=threads_connected
|
|||
|
|
- threads_cached=threads_cached
|
|||
|
|
- threads_running=threads_running
|
|||
|
|
protocol: jdbc
|
|||
|
|
jdbc:
|
|||
|
|
# 主机host: ipv4 ipv6 域名
|
|||
|
|
host: ^_^host^_^
|
|||
|
|
# 端口
|
|||
|
|
port: ^_^port^_^
|
|||
|
|
platform: mariadb
|
|||
|
|
username: ^_^username^_^
|
|||
|
|
password: ^_^password^_^
|
|||
|
|
database: ^_^database^_^
|
|||
|
|
# SQL查询方式: oneRow, multiRow, columns
|
|||
|
|
queryType: columns
|
|||
|
|
# sql
|
|||
|
|
sql: show global status where Variable_name like 'thread%' or Variable_name = 'com_commit' or Variable_name = 'com_rollback' or Variable_name = 'questions' or Variable_name = 'uptime';
|
|||
|
|
url: ^_^url^_^
|
|||
|
|
|
|||
|
|
- name: innodb
|
|||
|
|
priority: 2
|
|||
|
|
fields:
|
|||
|
|
# 指标信息 包括 field名称 type字段类型:0-number数字,1-string字符串 instance是否为实例主键 unit:指标单位
|
|||
|
|
- field: innodb_data_reads
|
|||
|
|
type: 0
|
|||
|
|
unit: 次数
|
|||
|
|
- field: innodb_data_writes
|
|||
|
|
type: 0
|
|||
|
|
unit: 次数
|
|||
|
|
- field: innodb_data_read
|
|||
|
|
type: 0
|
|||
|
|
unit: kb
|
|||
|
|
- field: innodb_data_written
|
|||
|
|
type: 0
|
|||
|
|
unit: kb
|
|||
|
|
protocol: jdbc
|
|||
|
|
jdbc:
|
|||
|
|
# 主机host: ipv4 ipv6 域名
|
|||
|
|
host: ^_^host^_^
|
|||
|
|
# 端口
|
|||
|
|
port: ^_^port^_^
|
|||
|
|
platform: mariadb
|
|||
|
|
username: ^_^username^_^
|
|||
|
|
password: ^_^password^_^
|
|||
|
|
database: ^_^database^_^
|
|||
|
|
# SQL查询方式: oneRow, multiRow, columns
|
|||
|
|
queryType: columns
|
|||
|
|
# sql
|
|||
|
|
sql: show global status where Variable_name like 'innodb%';
|
|||
|
|
url: ^_^url^_^
|