我如何调试Telegraf?

问题描述 投票:0回答:1

我正在尝试让telegraf与influxdb一起工作,而我刚刚碰壁。我在telegraf配置文件中添加了以下代码块:

[[inputs.win_perf_counters.object]]
# Process metrics, in this case for IIS only
ObjectName = "Process"
Instances = ["W3SVC"]
Counters = ["% Processor Time","Handle Count","Private Bytes","Thread Count","Virtual Bytes","Working Set"]
Measurement = "win_proc"

但是,当我搜索数据库时,我从未看到过该度量。我知道该进程正在运行,因此应该输出一些东西。问题是,即使我已打开日志记录,也没有日志文件。事件查看器中也没有任何内容。没有下载源代码并在本地调试器中运行程序,我不知道如何进行。有人有什么想法吗?

influxdb telegraf
1个回答
0
投票
[agent]
  ## Default data collection interval for all inputs
  interval = "10s"
  ## Log at debug level.
  debug = true
  ## Log only error level messages.
  quiet = false

  ## Log target controls the destination for logs and can be one of "file",
  ## "stderr" or, on Windows, "eventlog".  When set to "file", the output file
  ## is determined by the "logfile" setting.
  # logtarget = "file"

  ## Name of the file to be logged to when using the "file" logtarget.  If set to
  ## the empty string then logs are written to stderr.
  # logfile = ""

You can specify debug = true in the agent config to print the debug logs. If you don't specify any log file, the logs will be printed on terminal.
© www.soinside.com 2019 - 2024. All rights reserved.