2021-08-04 05:03:33 +08:00
# Telegraf

[](https://circleci.com/gh/influxdata/telegraf) [](https://hub.docker.com/_/telegraf/) [](https://lgtm.com/projects/g/influxdata/telegraf/alerts/)
2020-09-16 04:58:04 +08:00
[](https://www.influxdata.com/slack)
2015-05-20 13:26:13 +08:00
2018-09-18 02:45:08 +08:00
Telegraf is an agent for collecting, processing, aggregating, and writing metrics.
2015-06-20 00:34:27 +08:00
2015-08-07 04:00:14 +08:00
Design goals are to have a minimal memory footprint with a plugin system so
2018-09-18 02:45:08 +08:00
that developers in the community can easily add support for collecting
metrics.
2015-06-20 00:34:27 +08:00
2018-09-18 02:45:08 +08:00
Telegraf is plugin-driven and has the concept of 4 distinct plugin types:
2016-11-04 22:12:22 +08:00
1. [Input Plugins ](#input-plugins ) collect metrics from the system, services, or 3rd party APIs
2. [Processor Plugins ](#processor-plugins ) transform, decorate, and/or filter metrics
3. [Aggregator Plugins ](#aggregator-plugins ) create aggregate metrics (e.g. mean, min, max, quantiles, etc.)
4. [Output Plugins ](#output-plugins ) write metrics to various destinations
2019-05-14 01:40:48 +08:00
New plugins are designed to be easy to contribute, pull requests are welcomed
and we work to incorporate as many pull requests as possible.
2021-07-07 05:20:53 +08:00
If none of the internal plugins fit your needs, you could have a look at the
[list of external plugins ](EXTERNAL_PLUGINS.md ).
2017-05-10 04:44:34 +08:00
2019-04-23 08:40:55 +08:00
## Try in Browser :rocket:
You can try Telegraf right in your browser in the [Telegraf playground ](https://rootnroll.com/d/telegraf/ ).
2017-05-10 04:44:34 +08:00
## Contributing
There are many ways to contribute:
- Fix and [report bugs ](https://github.com/influxdata/telegraf/issues/new )
- [Improve documentation ](https://github.com/influxdata/telegraf/issues?q=is%3Aopen+label%3Adocumentation )
- [Review code and feature proposals ](https://github.com/influxdata/telegraf/pulls )
2018-09-18 02:45:08 +08:00
- Answer questions and discuss here on github and on the [Community Site ](https://community.influxdata.com/ )
2017-05-10 04:44:34 +08:00
- [Contribute plugins ](CONTRIBUTING.md )
2021-07-07 05:20:53 +08:00
- [Contribute external plugins ](docs/EXTERNAL_PLUGINS.md )
2015-06-20 00:34:27 +08:00
2019-12-05 09:16:00 +08:00
## Minimum Requirements
Telegraf shares the same [minimum requirements][] as Go:
- Linux kernel version 2.6.23 or later
- Windows 7 or later
- FreeBSD 11.2 or later
- MacOS 10.11 El Capitan or later
[minimum requirements]: https://github.com/golang/go/wiki/MinimumRequirements#minimum-requirements
2015-09-10 01:00:19 +08:00
## Installation:
2015-05-20 13:26:13 +08:00
2017-07-19 04:51:44 +08:00
You can download the binaries directly from the [downloads ](https://www.influxdata.com/downloads ) page
or from the [releases ](https://github.com/influxdata/telegraf/releases ) section.
2016-03-17 23:53:55 +08:00
2016-01-31 02:53:17 +08:00
### Ansible Role:
Ansible role: https://github.com/rossmcdonald/telegraf
2015-08-19 00:16:59 +08:00
### From Source:
2021-02-13 02:09:17 +08:00
Telegraf requires Go version 1.14 or newer, the Makefile requires GNU make.
2017-07-22 02:15:00 +08:00
2021-02-13 02:09:17 +08:00
1. [Install Go ](https://golang.org/doc/install ) >=1.14 (1.15 recommended)
2020-01-17 06:38:06 +08:00
2. Clone the Telegraf repository:
2018-07-25 05:57:24 +08:00
```
2020-01-17 06:38:06 +08:00
cd ~/src
git clone https://github.com/influxdata/telegraf.git
2018-07-25 05:57:24 +08:00
```
2020-01-17 06:38:06 +08:00
3. Run `make` from the source directory
2018-07-25 05:57:24 +08:00
```
2020-01-17 06:38:06 +08:00
cd ~/src/telegraf
2018-07-25 05:57:24 +08:00
make
```
2015-08-19 00:16:59 +08:00
2018-11-06 05:52:14 +08:00
### Changelog
View the [changelog ](/CHANGELOG.md ) for the latest updates and changes by
version.
2017-08-24 06:42:25 +08:00
### Nightly Builds
2021-09-17 01:22:24 +08:00
[Nightly ](/docs/NIGHTLIES.md ) builds are available, generated from the master branch.
2021-05-13 09:20:04 +08:00
2021-09-17 02:14:41 +08:00
### 3rd Party Builds
Builds for other platforms or package formats are provided by members of the Telegraf community. These packages are not built, tested or supported by the Telegraf project or InfluxData, we make no guarantees that they will work. Please get in touch with the package author if you need support.
* Windows
* [Chocolatey ](https://chocolatey.org/packages/telegraf ) by [ripclawffb ](https://chocolatey.org/profiles/ripclawffb )
* [Scoop ](https://github.com/ScoopInstaller/Main/blob/master/bucket/telegraf.json )
* Linux
* [Snap ](https://snapcraft.io/telegraf ) by Laurent Sesquès (sajoupa)
2016-01-31 02:53:17 +08:00
## How to use it:
2015-06-20 09:53:35 +08:00
2016-10-25 20:47:38 +08:00
See usage with:
2016-01-08 06:21:10 +08:00
2016-10-25 20:47:38 +08:00
```
2018-09-18 02:45:08 +08:00
telegraf --help
2016-10-25 20:47:38 +08:00
```
2016-01-08 06:21:10 +08:00
2017-01-14 01:02:10 +08:00
#### Generate a telegraf config file:
2016-01-08 06:21:10 +08:00
2016-10-25 20:47:38 +08:00
```
2018-09-18 02:45:08 +08:00
telegraf config > telegraf.conf
2016-10-25 20:47:38 +08:00
```
2016-01-08 06:21:10 +08:00
2017-08-04 02:54:05 +08:00
#### Generate config with only cpu input & influxdb output plugins defined:
2016-10-05 20:53:43 +08:00
2016-10-25 20:47:38 +08:00
```
2020-02-05 05:54:11 +08:00
telegraf --section-filter agent:inputs:outputs --input-filter cpu --output-filter influxdb config
2016-10-25 20:47:38 +08:00
```
2016-01-08 06:21:10 +08:00
2020-05-14 15:41:58 +08:00
#### Run a single telegraf collection, outputting metrics to stdout:
2016-01-08 06:21:10 +08:00
2016-10-25 20:47:38 +08:00
```
2018-09-18 02:45:08 +08:00
telegraf --config telegraf.conf --test
2016-10-25 20:47:38 +08:00
```
2016-01-08 06:21:10 +08:00
2017-08-04 02:54:05 +08:00
#### Run telegraf with all plugins defined in config file:
2016-01-08 06:21:10 +08:00
2016-10-25 20:47:38 +08:00
```
2018-09-18 02:45:08 +08:00
telegraf --config telegraf.conf
2016-10-25 20:47:38 +08:00
```
2016-01-08 06:21:10 +08:00
2017-08-04 02:54:05 +08:00
#### Run telegraf, enabling the cpu & memory input, and influxdb output plugins:
2016-01-08 06:21:10 +08:00
```
2018-09-18 02:45:08 +08:00
telegraf --config telegraf.conf --input-filter cpu:mem --output-filter influxdb
2016-10-25 20:47:38 +08:00
```
2018-09-18 02:45:08 +08:00
## Documentation
[Latest Release Documentation][release docs].
2015-05-20 13:26:13 +08:00
2018-09-18 02:45:08 +08:00
For documentation on the latest development code see the [documentation index][devel docs].
2015-12-01 22:15:28 +08:00
2018-09-18 02:45:08 +08:00
[release docs]: https://docs.influxdata.com/telegraf
[devel docs]: docs
2015-11-25 05:22:11 +08:00
2016-11-04 22:12:22 +08:00
## Input Plugins
2018-08-14 07:34:59 +08:00
* [activemq ](./plugins/inputs/activemq )
2016-11-04 22:12:22 +08:00
* [aerospike ](./plugins/inputs/aerospike )
2017-03-04 02:24:50 +08:00
* [amqp_consumer ](./plugins/inputs/amqp_consumer ) (rabbitmq)
2016-11-04 22:12:22 +08:00
* [apache ](./plugins/inputs/apache )
2019-08-21 08:10:25 +08:00
* [apcupsd ](./plugins/inputs/apcupsd )
2019-08-30 07:32:43 +08:00
* [aurora ](./plugins/inputs/aurora )
2019-11-28 10:02:40 +08:00
* [aws cloudwatch ](./plugins/inputs/cloudwatch ) (Amazon Cloudwatch)
2019-08-30 07:32:43 +08:00
* [azure_storage_queue ](./plugins/inputs/azure_storage_queue )
2016-11-04 22:12:22 +08:00
* [bcache ](./plugins/inputs/bcache )
2018-09-11 03:34:05 +08:00
* [beanstalkd ](./plugins/inputs/beanstalkd )
2019-04-04 06:59:47 +08:00
* [bind ](./plugins/inputs/bind )
2017-11-29 07:19:30 +08:00
* [bond ](./plugins/inputs/bond )
2018-05-23 05:10:41 +08:00
* [burrow ](./plugins/inputs/burrow )
2018-07-13 03:26:46 +08:00
* [cassandra ](./plugins/inputs/cassandra ) (deprecated, use [jolokia2 ](./plugins/inputs/jolokia2 ))
2016-11-04 22:12:22 +08:00
* [ceph ](./plugins/inputs/ceph )
2017-02-24 17:43:22 +08:00
* [cgroup ](./plugins/inputs/cgroup )
2016-11-04 22:12:22 +08:00
* [chrony ](./plugins/inputs/chrony )
2020-07-01 14:22:40 +08:00
* [cisco_telemetry_gnmi ](./plugins/inputs/cisco_telemetry_gnmi ) (deprecated, renamed to [gnmi ](/plugins/inputs/gnmi ))
2019-06-05 05:39:46 +08:00
* [cisco_telemetry_mdt ](./plugins/inputs/cisco_telemetry_mdt )
2020-03-05 06:42:50 +08:00
* [clickhouse ](./plugins/inputs/clickhouse )
2019-01-04 08:28:15 +08:00
* [cloud_pubsub ](./plugins/inputs/cloud_pubsub ) Google Cloud Pub/Sub
2019-02-27 10:30:54 +08:00
* [cloud_pubsub_push ](./plugins/inputs/cloud_pubsub_push ) Google Cloud Pub/Sub push endpoint
2016-11-04 22:12:22 +08:00
* [conntrack ](./plugins/inputs/conntrack )
2018-07-13 03:26:46 +08:00
* [consul ](./plugins/inputs/consul )
2016-11-04 22:12:22 +08:00
* [couchbase ](./plugins/inputs/couchbase )
* [couchdb ](./plugins/inputs/couchdb )
2018-07-13 03:25:04 +08:00
* [cpu ](./plugins/inputs/cpu )
2017-11-30 03:54:33 +08:00
* [DC/OS ](./plugins/inputs/dcos )
2018-07-13 03:25:04 +08:00
* [diskio ](./plugins/inputs/diskio )
* [disk ](./plugins/inputs/disk )
2016-11-04 22:12:22 +08:00
* [disque ](./plugins/inputs/disque )
2017-05-10 04:45:27 +08:00
* [dmcache ](./plugins/inputs/dmcache )
2016-11-04 22:12:22 +08:00
* [dns query time ](./plugins/inputs/dns_query )
* [docker ](./plugins/inputs/docker )
2019-06-20 05:34:01 +08:00
* [docker_log ](./plugins/inputs/docker_log )
2016-11-04 22:12:22 +08:00
* [dovecot ](./plugins/inputs/dovecot )
2021-04-28 23:54:22 +08:00
* [dpdk ](./plugins/inputs/dpdk )
2019-11-28 10:02:40 +08:00
* [aws ecs ](./plugins/inputs/ecs ) (Amazon Elastic Container Service, Fargate)
2016-11-04 22:12:22 +08:00
* [elasticsearch ](./plugins/inputs/elasticsearch )
2019-11-09 04:02:17 +08:00
* [ethtool ](./plugins/inputs/ethtool )
2020-03-17 03:37:44 +08:00
* [eventhub_consumer ](./plugins/inputs/eventhub_consumer ) (Azure Event Hubs \& Azure IoT Hub)
2016-11-04 22:12:22 +08:00
* [exec ](./plugins/inputs/exec ) (generic executable plugin, support JSON, influx, graphite and nagios)
2020-07-02 23:59:29 +08:00
* [execd ](./plugins/inputs/execd ) (generic executable "daemon" processes)
2017-06-22 03:46:57 +08:00
* [fail2ban ](./plugins/inputs/fail2ban )
2018-04-11 09:04:59 +08:00
* [fibaro ](./plugins/inputs/fibaro )
2018-07-14 14:22:59 +08:00
* [file ](./plugins/inputs/file )
2016-11-04 22:12:22 +08:00
* [filestat ](./plugins/inputs/filestat )
2018-08-01 06:05:55 +08:00
* [filecount ](./plugins/inputs/filecount )
2019-07-23 06:37:52 +08:00
* [fireboard ](/plugins/inputs/fireboard )
2017-07-14 07:00:09 +08:00
* [fluentd ](./plugins/inputs/fluentd )
2019-04-03 07:27:45 +08:00
* [github ](./plugins/inputs/github )
2020-07-01 14:19:16 +08:00
* [gnmi ](./plugins/inputs/gnmi )
2017-07-11 02:22:37 +08:00
* [graylog ](./plugins/inputs/graylog )
2016-11-04 22:12:22 +08:00
* [haproxy ](./plugins/inputs/haproxy )
* [hddtemp ](./plugins/inputs/hddtemp )
2018-07-13 03:26:46 +08:00
* [httpjson ](./plugins/inputs/httpjson ) (generic JSON-emitting http service plugin)
2018-10-13 05:20:12 +08:00
* [http_listener ](./plugins/inputs/influxdb_listener ) (deprecated, renamed to [influxdb_listener ](/plugins/inputs/influxdb_listener ))
* [http_listener_v2 ](./plugins/inputs/http_listener_v2 )
2018-02-16 08:00:10 +08:00
* [http ](./plugins/inputs/http ) (generic HTTP plugin, supports using input data formats)
2016-11-04 22:12:22 +08:00
* [http_response ](./plugins/inputs/http_response )
2018-08-23 10:10:40 +08:00
* [icinga2 ](./plugins/inputs/icinga2 )
2020-01-17 05:56:23 +08:00
* [infiniband ](./plugins/inputs/infiniband )
2016-11-04 22:12:22 +08:00
* [influxdb ](./plugins/inputs/influxdb )
2018-10-13 05:20:12 +08:00
* [influxdb_listener ](./plugins/inputs/influxdb_listener )
2020-10-07 05:44:00 +08:00
* [influxdb_v2_listener ](./plugins/inputs/influxdb_v2_listener )
2020-12-11 04:23:27 +08:00
* [intel_powerstat ](plugins/inputs/intel_powerstat )
2020-10-02 04:49:09 +08:00
* [intel_rdt ](./plugins/inputs/intel_rdt )
2018-07-13 03:26:46 +08:00
* [internal ](./plugins/inputs/internal )
2017-04-14 06:53:02 +08:00
* [interrupts ](./plugins/inputs/interrupts )
2016-11-04 22:12:22 +08:00
* [ipmi_sensor ](./plugins/inputs/ipmi_sensor )
2018-02-01 04:30:03 +08:00
* [ipset ](./plugins/inputs/ipset )
2018-07-13 03:26:46 +08:00
* [iptables ](./plugins/inputs/iptables )
2018-10-26 03:42:19 +08:00
* [ipvs ](./plugins/inputs/ipvs )
2018-11-06 06:58:23 +08:00
* [jenkins ](./plugins/inputs/jenkins )
2018-04-24 06:06:26 +08:00
* [jolokia2 ](./plugins/inputs/jolokia2 ) (java, cassandra, kafka)
2018-07-13 03:26:46 +08:00
* [jolokia ](./plugins/inputs/jolokia ) (deprecated, use [jolokia2 ](./plugins/inputs/jolokia2 ))
2018-07-13 03:25:27 +08:00
* [jti_openconfig_telemetry ](./plugins/inputs/jti_openconfig_telemetry )
2018-07-13 03:26:46 +08:00
* [kafka_consumer ](./plugins/inputs/kafka_consumer )
2017-05-10 04:45:27 +08:00
* [kapacitor ](./plugins/inputs/kapacitor )
2019-11-28 10:02:40 +08:00
* [aws kinesis ](./plugins/inputs/kinesis_consumer ) (Amazon Kinesis)
2018-07-13 03:25:04 +08:00
* [kernel ](./plugins/inputs/kernel )
* [kernel_vmstat ](./plugins/inputs/kernel_vmstat )
2018-09-20 09:23:58 +08:00
* [kibana ](./plugins/inputs/kibana )
2021-03-18 22:39:44 +08:00
* [knx_listener ](./plugins/inputs/knx_listener )
2017-02-02 05:23:45 +08:00
* [kubernetes ](./plugins/inputs/kubernetes )
2019-02-05 04:38:45 +08:00
* [kube_inventory ](./plugins/inputs/kube_inventory )
2020-03-13 07:45:35 +08:00
* [lanz ](./plugins/inputs/lanz )
2016-11-04 22:12:22 +08:00
* [leofs ](./plugins/inputs/leofs )
2018-07-13 03:25:04 +08:00
* [linux_sysctl_fs ](./plugins/inputs/linux_sysctl_fs )
2020-04-17 04:07:03 +08:00
* [logparser ](./plugins/inputs/logparser ) (deprecated, use [tail ](/plugins/inputs/tail ))
2019-08-22 09:17:41 +08:00
* [logstash ](./plugins/inputs/logstash )
2016-11-04 22:12:22 +08:00
* [lustre2 ](./plugins/inputs/lustre2 )
* [mailchimp ](./plugins/inputs/mailchimp )
2019-08-22 09:26:44 +08:00
* [marklogic ](./plugins/inputs/marklogic )
2018-05-02 03:01:08 +08:00
* [mcrouter ](./plugins/inputs/mcrouter )
2021-09-01 06:04:32 +08:00
* [mdstat ](./plugins/inputs/mdstat )
2016-11-04 22:12:22 +08:00
* [memcached ](./plugins/inputs/memcached )
2018-07-13 03:25:04 +08:00
* [mem ](./plugins/inputs/mem )
2016-11-04 22:12:22 +08:00
* [mesos ](./plugins/inputs/mesos )
2017-08-03 09:02:41 +08:00
* [minecraft ](./plugins/inputs/minecraft )
2020-01-29 18:50:11 +08:00
* [modbus ](./plugins/inputs/modbus )
2016-11-04 22:12:22 +08:00
* [mongodb ](./plugins/inputs/mongodb )
2020-01-23 07:27:54 +08:00
* [monit ](./plugins/inputs/monit )
2018-07-13 03:26:46 +08:00
* [mqtt_consumer ](./plugins/inputs/mqtt_consumer )
2019-01-24 09:26:50 +08:00
* [multifile ](./plugins/inputs/multifile )
2016-11-04 22:12:22 +08:00
* [mysql ](./plugins/inputs/mysql )
2018-07-13 03:26:46 +08:00
* [nats_consumer ](./plugins/inputs/nats_consumer )
2018-01-27 07:18:15 +08:00
* [nats ](./plugins/inputs/nats )
2019-01-09 07:09:36 +08:00
* [neptune_apex ](./plugins/inputs/neptune_apex )
2018-07-13 03:25:04 +08:00
* [net ](./plugins/inputs/net )
2016-11-04 22:12:22 +08:00
* [net_response ](./plugins/inputs/net_response )
2018-08-02 06:37:52 +08:00
* [netstat ](./plugins/inputs/net )
2021-03-05 22:56:28 +08:00
* [nfsclient ](./plugins/inputs/nfsclient )
2016-11-04 22:12:22 +08:00
* [nginx ](./plugins/inputs/nginx )
2018-10-23 03:57:24 +08:00
* [nginx_plus_api ](./plugins/inputs/nginx_plus_api )
2019-01-16 04:59:14 +08:00
* [nginx_plus ](./plugins/inputs/nginx_plus )
2020-07-01 14:31:10 +08:00
* [nginx_sts ](./plugins/inputs/nginx_sts )
2019-01-16 04:59:14 +08:00
* [nginx_upstream_check ](./plugins/inputs/nginx_upstream_check )
2018-11-03 09:20:37 +08:00
* [nginx_vts ](./plugins/inputs/nginx_vts )
2020-10-07 05:44:00 +08:00
* [nsd ](./plugins/inputs/nsd )
2018-07-13 03:26:46 +08:00
* [nsq_consumer ](./plugins/inputs/nsq_consumer )
2016-11-04 22:12:22 +08:00
* [nsq ](./plugins/inputs/nsq )
* [nstat ](./plugins/inputs/nstat )
* [ntpq ](./plugins/inputs/ntpq )
2018-04-18 04:43:36 +08:00
* [nvidia_smi ](./plugins/inputs/nvidia_smi )
2020-10-07 05:44:00 +08:00
* [opcua ](./plugins/inputs/opcua )
2017-08-03 09:02:41 +08:00
* [openldap ](./plugins/inputs/openldap )
2019-08-21 06:14:11 +08:00
* [openntpd ](./plugins/inputs/openntpd )
2017-11-21 06:39:13 +08:00
* [opensmtpd ](./plugins/inputs/opensmtpd )
2021-07-01 22:59:44 +08:00
* [opentelemetry ](./plugins/inputs/opentelemetry )
2019-06-01 07:22:37 +08:00
* [openweathermap ](./plugins/inputs/openweathermap )
2017-11-30 08:36:00 +08:00
* [pf ](./plugins/inputs/pf )
2018-08-02 06:44:10 +08:00
* [pgbouncer ](./plugins/inputs/pgbouncer )
2016-11-04 22:12:22 +08:00
* [phpfpm ](./plugins/inputs/phpfpm )
* [phusion passenger ](./plugins/inputs/passenger )
* [ping ](./plugins/inputs/ping )
2017-11-29 02:08:41 +08:00
* [postfix ](./plugins/inputs/postfix )
2016-11-04 22:12:22 +08:00
* [postgresql_extensible ](./plugins/inputs/postgresql_extensible )
2017-11-30 08:36:00 +08:00
* [postgresql ](./plugins/inputs/postgresql )
2016-11-04 22:12:22 +08:00
* [powerdns ](./plugins/inputs/powerdns )
2019-04-24 07:34:52 +08:00
* [powerdns_recursor ](./plugins/inputs/powerdns_recursor )
2018-07-13 03:25:04 +08:00
* [processes ](./plugins/inputs/processes )
2016-11-04 22:12:22 +08:00
* [procstat ](./plugins/inputs/procstat )
2017-05-26 04:07:49 +08:00
* [prometheus ](./plugins/inputs/prometheus ) (can be used for [Caddy server ](./plugins/inputs/prometheus/README.md#usage-for-caddy-http-server ))
2020-10-07 05:44:00 +08:00
* [proxmox ](./plugins/inputs/proxmox )
2016-11-04 22:12:22 +08:00
* [puppetagent ](./plugins/inputs/puppetagent )
* [rabbitmq ](./plugins/inputs/rabbitmq )
* [raindrops ](./plugins/inputs/raindrops )
2020-10-02 04:54:51 +08:00
* [ras ](./plugins/inputs/ras )
2021-03-04 03:37:06 +08:00
* [ravendb ](./plugins/inputs/ravendb )
2020-06-19 10:00:22 +08:00
* [redfish ](./plugins/inputs/redfish )
2016-11-04 22:12:22 +08:00
* [redis ](./plugins/inputs/redis )
* [rethinkdb ](./plugins/inputs/rethinkdb )
* [riak ](./plugins/inputs/riak )
2017-08-09 02:50:16 +08:00
* [salesforce ](./plugins/inputs/salesforce )
2016-11-04 22:12:22 +08:00
* [sensors ](./plugins/inputs/sensors )
2020-03-19 03:16:05 +08:00
* [sflow ](./plugins/inputs/sflow )
2017-10-05 06:18:15 +08:00
* [smart ](./plugins/inputs/smart )
2016-11-04 22:12:22 +08:00
* [snmp_legacy ](./plugins/inputs/snmp_legacy )
2018-07-13 03:26:46 +08:00
* [snmp ](./plugins/inputs/snmp )
2019-11-26 03:58:19 +08:00
* [snmp_trap ](./plugins/inputs/snmp_trap )
2018-07-13 03:26:46 +08:00
* [socket_listener ](./plugins/inputs/socket_listener )
2017-11-08 08:44:09 +08:00
* [solr ](./plugins/inputs/solr )
2021-06-16 03:10:52 +08:00
* [sql ](./plugins/inputs/sql ) (generic SQL query plugin)
2016-11-04 22:12:22 +08:00
* [sql server ](./plugins/inputs/sqlserver ) (microsoft)
2020-03-06 02:36:36 +08:00
* [stackdriver ](./plugins/inputs/stackdriver ) (Google Cloud Monitoring)
2021-06-04 12:49:55 +08:00
* [sql ](./plugins/outputs/sql ) (SQL generic output)
2018-07-13 03:26:46 +08:00
* [statsd ](./plugins/inputs/statsd )
2019-09-21 06:38:21 +08:00
* [suricata ](./plugins/inputs/suricata )
2018-07-13 03:25:04 +08:00
* [swap ](./plugins/inputs/swap )
2019-11-22 03:33:47 +08:00
* [synproxy ](./plugins/inputs/synproxy )
2018-05-26 05:33:57 +08:00
* [syslog ](./plugins/inputs/syslog )
2018-07-13 03:26:46 +08:00
* [sysstat ](./plugins/inputs/sysstat )
2019-12-03 08:18:56 +08:00
* [systemd_units ](./plugins/inputs/systemd_units )
2018-07-13 03:25:04 +08:00
* [system ](./plugins/inputs/system )
2018-07-13 03:26:46 +08:00
* [tail ](./plugins/inputs/tail )
2018-09-11 03:34:05 +08:00
* [temp ](./plugins/inputs/temp )
2018-07-13 03:26:46 +08:00
* [tcp_listener ](./plugins/inputs/socket_listener )
2017-11-02 04:30:43 +08:00
* [teamspeak ](./plugins/inputs/teamspeak )
2018-05-24 02:57:47 +08:00
* [tengine ](./plugins/inputs/tengine )
2017-08-17 06:36:56 +08:00
* [tomcat ](./plugins/inputs/tomcat )
2016-11-04 22:12:22 +08:00
* [twemproxy ](./plugins/inputs/twemproxy )
2018-07-13 03:26:46 +08:00
* [udp_listener ](./plugins/inputs/socket_listener )
2018-02-21 08:06:13 +08:00
* [unbound ](./plugins/inputs/unbound )
2020-01-04 02:58:15 +08:00
* [uwsgi ](./plugins/inputs/uwsgi )
2016-11-04 22:12:22 +08:00
* [varnish ](./plugins/inputs/varnish )
2018-09-12 05:55:18 +08:00
* [vsphere ](./plugins/inputs/vsphere ) VMware vSphere
2016-11-04 22:12:22 +08:00
* [webhooks ](./plugins/inputs/webhooks )
* [filestack ](./plugins/inputs/webhooks/filestack )
* [github ](./plugins/inputs/webhooks/github )
* [mandrill ](./plugins/inputs/webhooks/mandrill )
2017-05-10 04:45:27 +08:00
* [papertrail ](./plugins/inputs/webhooks/papertrail )
2017-11-17 08:11:20 +08:00
* [particle ](./plugins/inputs/webhooks/particle )
* [rollbar ](./plugins/inputs/webhooks/rollbar )
2020-10-07 05:44:00 +08:00
* [win_eventlog ](./plugins/inputs/win_eventlog )
2018-07-13 03:26:46 +08:00
* [win_perf_counters ](./plugins/inputs/win_perf_counters ) (windows performance counters)
* [win_services ](./plugins/inputs/win_services )
2020-03-10 06:34:43 +08:00
* [wireguard ](./plugins/inputs/wireguard )
2018-10-30 06:59:37 +08:00
* [wireless ](./plugins/inputs/wireless )
2019-03-05 05:00:22 +08:00
* [x509_cert ](./plugins/inputs/x509_cert )
2018-07-13 03:26:46 +08:00
* [zfs ](./plugins/inputs/zfs )
2017-08-03 09:02:41 +08:00
* [zipkin ](./plugins/inputs/zipkin )
2018-07-13 03:26:46 +08:00
* [zookeeper ](./plugins/inputs/zookeeper )
2016-11-04 22:12:22 +08:00
2018-10-02 02:00:57 +08:00
## Parsers
- [InfluxDB Line Protocol ](/plugins/parsers/influx )
- [Collectd ](/plugins/parsers/collectd )
- [CSV ](/plugins/parsers/csv )
- [Dropwizard ](/plugins/parsers/dropwizard )
2019-06-18 05:46:49 +08:00
- [FormUrlencoded ](/plugins/parser/form_urlencoded )
2018-10-02 02:00:57 +08:00
- [Graphite ](/plugins/parsers/graphite )
- [Grok ](/plugins/parsers/grok )
- [JSON ](/plugins/parsers/json )
2021-08-25 04:18:08 +08:00
- [JSON v2 ](/plugins/parsers/json_v2 )
2018-10-02 02:00:57 +08:00
- [Logfmt ](/plugins/parsers/logfmt )
- [Nagios ](/plugins/parsers/nagios )
2021-08-25 04:18:08 +08:00
- [Prometheus ](/plugins/parsers/prometheus )
- [Prometheus Remote Write ](/plugins/parsers/prometheusremotewrite )
2018-10-02 02:00:57 +08:00
- [Value ](/plugins/parsers/value ), ie: 45 or "booyah"
- [Wavefront ](/plugins/parsers/wavefront )
2021-08-25 04:18:08 +08:00
- [XPath ](/plugins/parsers/xpath ) (supports XML, JSON, MessagePack, Protocol Buffers)
2018-10-02 02:00:57 +08:00
## Serializers
- [InfluxDB Line Protocol ](/plugins/serializers/influx )
2021-03-03 03:48:58 +08:00
- [Carbon2 ](/plugins/serializers/carbon2 )
2018-10-02 02:00:57 +08:00
- [Graphite ](/plugins/serializers/graphite )
2021-03-03 03:48:58 +08:00
- [JSON ](/plugins/serializers/json )
- [MessagePack ](/plugins/serializers/msgpack )
2021-08-25 04:18:08 +08:00
- [Prometheus ](/plugins/serializers/prometheus )
- [Prometheus Remote Write ](/plugins/serializers/prometheusremotewrite )
2019-01-09 07:32:49 +08:00
- [ServiceNow ](/plugins/serializers/nowmetric )
2018-10-02 02:00:57 +08:00
- [SplunkMetric ](/plugins/serializers/splunkmetric )
2019-04-06 05:48:24 +08:00
- [Wavefront ](/plugins/serializers/wavefront )
2017-04-13 01:41:26 +08:00
2016-11-04 22:12:22 +08:00
## Processor Plugins
2020-02-07 05:34:36 +08:00
* [clone ](/plugins/processors/clone )
* [converter ](/plugins/processors/converter )
* [date ](/plugins/processors/date )
2020-03-18 09:39:08 +08:00
* [dedup ](/plugins/processors/dedup )
2020-05-23 02:48:49 +08:00
* [defaults ](/plugins/processors/defaults )
2020-02-07 05:34:36 +08:00
* [enum ](/plugins/processors/enum )
2020-07-02 23:59:29 +08:00
* [execd ](/plugins/processors/execd )
2020-07-08 05:44:38 +08:00
* [ifname ](/plugins/processors/ifname )
2020-05-02 02:21:41 +08:00
* [filepath ](/plugins/processors/filepath )
2020-02-07 05:34:36 +08:00
* [override ](/plugins/processors/override )
* [parser ](/plugins/processors/parser )
* [pivot ](/plugins/processors/pivot )
2020-07-08 05:44:38 +08:00
* [port_name ](/plugins/processors/port_name )
2020-02-07 05:34:36 +08:00
* [printer ](/plugins/processors/printer )
* [regex ](/plugins/processors/regex )
* [rename ](/plugins/processors/rename )
2020-07-03 00:00:32 +08:00
* [reverse_dns ](/plugins/processors/reverse_dns )
2020-03-19 03:28:02 +08:00
* [s2geo ](/plugins/processors/s2geo )
2020-06-24 05:19:00 +08:00
* [starlark ](/plugins/processors/starlark )
2020-02-07 05:34:36 +08:00
* [strings ](/plugins/processors/strings )
* [tag_limit ](/plugins/processors/tag_limit )
* [template ](/plugins/processors/template )
* [topk ](/plugins/processors/topk )
* [unpivot ](/plugins/processors/unpivot )
2016-11-04 22:12:22 +08:00
## Aggregator Plugins
2017-10-11 03:04:41 +08:00
* [basicstats ](./plugins/aggregators/basicstats )
2021-08-25 04:18:08 +08:00
* [derivative ](./plugins/aggregators/derivative )
2019-05-16 05:50:25 +08:00
* [final ](./plugins/aggregators/final )
2017-08-03 09:02:41 +08:00
* [histogram ](./plugins/aggregators/histogram )
2019-09-27 08:10:50 +08:00
* [merge ](./plugins/aggregators/merge )
2019-05-16 05:50:25 +08:00
* [minmax ](./plugins/aggregators/minmax )
2021-08-25 04:18:08 +08:00
* [quantile ](./plugins/aggregators/quantile )
2018-06-19 09:06:11 +08:00
* [valuecounter ](./plugins/aggregators/valuecounter )
2016-11-04 22:12:22 +08:00
## Output Plugins
2018-11-29 04:10:51 +08:00
* [influxdb ](./plugins/outputs/influxdb ) (InfluxDB 1.x)
2019-05-09 02:39:30 +08:00
* [influxdb_v2 ](./plugins/outputs/influxdb_v2 ) ([InfluxDB 2.x](https://github.com/influxdata/influxdb))
2016-11-04 22:12:22 +08:00
* [amon ](./plugins/outputs/amon )
2017-01-14 01:02:10 +08:00
* [amqp ](./plugins/outputs/amqp ) (rabbitmq)
2018-05-16 07:42:56 +08:00
* [application_insights ](./plugins/outputs/application_insights )
2016-11-04 22:12:22 +08:00
* [aws kinesis ](./plugins/outputs/kinesis )
* [aws cloudwatch ](./plugins/outputs/cloudwatch )
2018-09-06 05:58:13 +08:00
* [azure_monitor ](./plugins/outputs/azure_monitor )
2021-03-13 01:16:45 +08:00
* [bigquery ](./plugins/outputs/bigquery )
2019-01-09 07:56:10 +08:00
* [cloud_pubsub ](./plugins/outputs/cloud_pubsub ) Google Cloud Pub/Sub
2017-11-10 06:03:16 +08:00
* [cratedb ](./plugins/outputs/cratedb )
2016-11-04 22:12:22 +08:00
* [datadog ](./plugins/outputs/datadog )
2016-11-23 20:21:17 +08:00
* [discard ](./plugins/outputs/discard )
2020-08-18 06:37:13 +08:00
* [dynatrace ](./plugins/outputs/dynatrace )
2017-03-21 08:47:57 +08:00
* [elasticsearch ](./plugins/outputs/elasticsearch )
2019-09-10 01:23:44 +08:00
* [exec ](./plugins/outputs/exec )
2020-07-02 23:59:29 +08:00
* [execd ](./plugins/outputs/execd )
2016-11-04 22:12:22 +08:00
* [file ](./plugins/outputs/file )
* [graphite ](./plugins/outputs/graphite )
* [graylog ](./plugins/outputs/graylog )
2019-05-30 09:36:18 +08:00
* [health ](./plugins/outputs/health )
2018-05-15 08:19:49 +08:00
* [http ](./plugins/outputs/http )
2016-11-04 22:12:22 +08:00
* [instrumental ](./plugins/outputs/instrumental )
* [kafka ](./plugins/outputs/kafka )
* [librato ](./plugins/outputs/librato )
2020-10-22 23:53:08 +08:00
* [logz.io ](./plugins/outputs/logzio )
2016-11-04 22:12:22 +08:00
* [mqtt ](./plugins/outputs/mqtt )
* [nats ](./plugins/outputs/nats )
2020-05-28 02:24:49 +08:00
* [newrelic ](./plugins/outputs/newrelic )
2016-11-04 22:12:22 +08:00
* [nsq ](./plugins/outputs/nsq )
2021-08-05 04:11:55 +08:00
* [opentelemetry ](./plugins/outputs/opentelemetry )
2016-11-04 22:12:22 +08:00
* [opentsdb ](./plugins/outputs/opentsdb )
* [prometheus ](./plugins/outputs/prometheus_client )
* [riemann ](./plugins/outputs/riemann )
2017-01-28 06:54:59 +08:00
* [riemann_legacy ](./plugins/outputs/riemann_legacy )
2021-03-10 06:39:57 +08:00
* [sensu ](./plugins/outputs/sensu )
2021-02-26 04:30:01 +08:00
* [signalfx ](./plugins/outputs/signalfx )
2017-02-03 01:06:41 +08:00
* [socket_writer ](./plugins/outputs/socket_writer )
2020-03-06 02:36:36 +08:00
* [stackdriver ](./plugins/outputs/stackdriver ) (Google Cloud Monitoring)
2019-05-09 02:39:30 +08:00
* [syslog ](./plugins/outputs/syslog )
2017-02-03 01:06:41 +08:00
* [tcp ](./plugins/outputs/socket_writer )
* [udp ](./plugins/outputs/socket_writer )
2020-01-10 03:29:16 +08:00
* [warp10 ](./plugins/outputs/warp10 )
2017-09-30 07:15:48 +08:00
* [wavefront ](./plugins/outputs/wavefront )
2021-06-04 12:53:38 +08:00
* [websocket ](./plugins/outputs/websocket )
2020-09-10 22:56:35 +08:00
* [sumologic ](./plugins/outputs/sumologic )
2020-11-03 00:11:47 +08:00
* [yandex_cloud_monitoring ](./plugins/outputs/yandex_cloud_monitoring )