需求背景:
因为一些网络策略问题,现需要通过telegraf采集数据库某两张表的数据,用于大屏的业务展示
-
选择inputs中的postgresql_extensible节点
-
添加inputs采集postgresql_extensible配置
[[inputs.postgresql_extensible]]
# 采集策略设置为10分钟,注意interval的类型是string
interval = "10m"
# 参数具体含义: 数据库host127.0.0.1 端口号5444 用户名test 密码123456 数据库名test sslmode设置为禁用,不校验安全
address = "host=127.0.0.1:5444 user=test password=123456 sslmode=disable dbname=test"