fluentd
This module will monitor one or more Fluentd servers depending on configuration.
The module gathers metrics from plugin endpoint provided by in_monitor plugin.
Requirements:
fluentd
with enabled monitoring agent
It produces the following charts:
-
Plugin Retry Count
-
Plugin Buffer Queue Length
-
Plugin Buffer Total Size
configuration
For all available options please see module configuration file.
Needs only url
.
Here is an example for 2 servers:
jobs:
- name: local
url: http://127.0.0.1:24220
- name: remote
url: http://10.0.0.1:24220
Without configuration, module attempts to connect to http://127.0.0.1:24220
.
Filter plugins: by default module collects statistics for all plugins.
To filter unwanted please configure permit_plugin_id
:
jobs:
- name: local
url: http://10.0.0.1:24220
permit_plugin_id: '!monitor_agent !dummy *'
Syntax: simple patterns.