zoukankan      html  css  js  c++  java
  • telegraf

    1. telegraf的配置

    [root@agent-pg135 log]# cat  /etc/telegraf/telegraf.conf
    [global_tags]
    [agent]
      interval = "10s"
      round_interval = true
      metric_batch_size = 1000
      metric_buffer_limit = 10000
      collection_jitter = "0s"
      flush_interval = "10s"
      flush_jitter = "0s"
      precision = ""
      debug = true
      quiet = false
      logfile = "/tmp/telegraf.log"
      hostname = ""
      omit_hostname = false
    
    [[outputs.influxdb]]
     # urls = ["http://192.168.1.129:8086"]
      urls = ["http://192.168.162.137:8086"]
      database = "telegraf"
      username = "fxkj"
      password = "123456"
    
    [[inputs.cpu]]
      percpu = true
      totalcpu = true
      collect_cpu_time = false
      report_active = false 
      fieldpass = ["usage_idle", "usage_iowait", "usage_system", "usage_user"]
    
    [[inputs.system]]
    fieldpass = ["load1", "load5", "load15"]
    
    [[inputs.mem]]
    #fieldpass = ["available"]
    
    [[inputs.disk]]
    fieldpass = ["free", "inodes_free", "used_percent"]
    ignore_fs = ["tmpfs", "devtmpfs", "devfs", "overlay", "aufs", "squashfs"]
    
    [[inputs.diskio]]
    fieldpass = ["read_bytes", "write_bytes", "reads","writes"]
    
    [[inputs.net]]
      interfaces = ["ens33"]
      fieldpass = ["bytes_recv", "bytes_sent"]
    
    [[inputs.netstat]]
    
    [[inputs.processes]]
    #  fielddrop = [“wait”,”idle”,”unknown”]
    
    [[inputs.redis]]
      ## specify servers via a url matching:
      ##  [protocol://][:password]@address[:port]
      ##  e.g.
      servers = ['tcp://192.168.1.45:6379']
    
    
    [[inputs.postgresql]]
    #address = "host=127.0.0.1"
    address = "postgres://postgres@127.0.0.1:5432/postgres"
    #ignored_databases = ["template0", "template1"]
    [root@agent-pg135 log]# 

    日志:logfile = "/tmp/telegraf.log"

    2.grafana的名字

    Main Databases - PostgreSQL

     3. 参考:https://github.com/influxdata/telegraf/tree/master/plugins/inputs/postgresql

    用一个例子来演示会更加清晰
  • 相关阅读:
    Leveldb Advanced
    loadrunner生成随机数
    用strtok函数分割字符串
    loadrunner关联及web_reg_save_param方法浅析
    Linux中find用法
    在LoadRunner中从数组类型的参数随机取值的方法
    LoadRunner可以把关联取值当作检查点来使用
    Oracle特殊字符转义:&和'
    LoadRunner 11 error:Cannot initialize driver dll
    用SecureCRT在windows和CentOS间上传下载文件
  • 原文地址:https://www.cnblogs.com/hixiaowei/p/14799271.html
Copyright © 2011-2022 走看看