Low commit activity in last 3 years
A long-lived project that still receives updates
Output data plugin to Zabbix
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Development

= 0.1.0
>= 0.9.2
>= 3.1.0

Runtime

 Project Readme

fluent-plugin-zabbix

Component

ZabbixOutput

Plugin to output values to Zabbix server.

Configuration

ZabbixOutput

Zabbix configuration of Item:

Key: metrics.field1
Type: Zabbix trapper

Key: metrics.field2
Type: Zabbix trapper

For messages such as: tag:metrics {"metrics.field1":300, "metrics.field2":20}

<match metrics>
  @type zabbix
  zabbix_server 192.168.0.1
  port          10051
  host          client-hostname
  name_keys     metrics.field1,metrics.field2
</match>

or, use add_key_prefix tag:metrics {"field1":300, "field2":20}

<match metrics>
  @type zabbix
  zabbix_server     192.168.0.1
  port              10051
  host              client-hostname
  add_key_prefix    metrics
  name_key_pattern  ^field
</match>

If prefix_key is specified, a value of record[prefix_key] will be used as key prefix.

If you want to specify the host(on zabbix) from record's value, use "host_key" directive.

tag:metrics {"zabbix_host":"myhostname", "metrics.field1":300, "metrics.field2":20}

<match metrics>
  @type zabbix
  zabbix_server 192.168.0.1
  host_key      zabbix_host
  name_keys     metrics.field1,metrics.field2
</match>

v0.0.7~ includes Fluent::Mixin::ConfigPlaceholders. Placeholders will be expanded in a configuration.

<match matrics.**>
  @type            zabbix
  zabbix_server    192.168.0.1
  host             ${hostname}
  add_key_prefix   ${tag}
  name_key_pattern .
</match>

host parameter is set by default to Ruby's Socket.gethostname if not specified.

TODO

  • patches welcome!

Copyright

  • Copyright: Copyright (c) 2012- FUJIWARA Shunichiro
  • License: Apache License, Version 2.0