配置独立 Elastic Agent 的监控编辑

Elastic Agent 默认情况下会监控 Beats。要关闭或更改监控设置,请在 elastic-agent.yml 文件中的 agent.monitoring 下设置选项。

此示例配置 Elastic Agent 监控

agent.monitoring:
  # enabled turns on monitoring of running processes
  enabled: true
  # enables log monitoring
  logs: true
  # enables metrics monitoring
  metrics: true
  # exposes /debug/pprof/ endpoints for Elastic Agent and Beats
  # enable these endpoints if the monitoring endpoint is set to localhost
  pprof.enabled: false
  # specifies output to be used
  use_output: monitoring
  http:
    # exposes a /buffer endpoint that holds a history of recent metrics
    buffer.enabled: false

要关闭监控,请将 agent.monitoring.enabled 设置为 false。设置为 false 时,Beats 监控将关闭,本节中的所有其他选项将被忽略。

要启用监控,请将 agent.monitoring.enabled 设置为 true。还可以设置 logsmetrics 设置来控制是否收集日志、指标或两者。如果未指定任何设置,则监控将关闭。设置 use_output 以指定发送监控事件的输出。

agent.monitoring.pprof.enabled 选项控制 Elastic Agent 和 Beats 是否公开具有监控端点的 /debug/pprof/ 端点。默认情况下设置为 false。这些端点生成的数据可能对调试有用,但存在安全风险。如果监控端点可通过网络访问,建议此选项保持 false

agent.monitoring.http.buffer.enabled 选项控制 Elastic Agent 和 Beats 是否将指标收集到内存缓冲区中,并通过 /buffer 端点公开这些指标。默认情况下设置为 false。此数据可能对调试有用,或者如果 Elastic Agent 在与 Elasticsearch 通信时遇到问题。启用此选项可能会略微增加进程内存使用量。