Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/writeData/components/telegrafPlugins/cassandra.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Cassandra Input Plugin

### **Deprecated in version 1.7**: Please use the [jolokia2](https://github.com/influxdata/telegraf/tree/master/plugins/inputs/jolokia2) plugin with the [cassandra.conf](/plugins/inputs/jolokia2/examples/cassandra.conf) example configuration.
### **Deprecated in version 1.7**: Please use the [jolokia2](https://github.com/influxdata/telegraf/tree/master/plugins/inputs/jolokia2) plugin with the [cassandra.conf](https://github.com/influxdata/telegraf/tree/master/plugins/inputs/jolokia2/examples/cassandra.conf) example configuration.

#### Plugin arguments:
- **context** string: Context root used for jolokia url
Expand Down
2 changes: 1 addition & 1 deletion src/writeData/components/telegrafPlugins/httpjson.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

The httpjson plugin collects data from HTTP URLs which respond with JSON. It flattens the JSON and finds all numeric values, treating them as floats.

Deprecated (1.6): use the [http](../http) input.
Deprecated (1.6): use the [http](https://github.com/influxdata/telegraf/tree/master/plugins/inputs/http) input.

### Configuration:

Expand Down
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
# InfluxDB Listener Input Plugin

InfluxDB Listener is a service input plugin that listens for requests sent
according to the [InfluxDB HTTP API][influxdb_http_api]. The intent of the
according to the [InfluxDB HTTP API](https://docs.influxdata.com/influxdb/v1.8/guides/write_data/). The intent of the
plugin is to allow Telegraf to serve as a proxy/router for the `/write`
endpoint of the InfluxDB HTTP API.

**Note:** This plugin was previously known as `http_listener`. If you wish to
send general metrics via HTTP it is recommended to use the
[`http_listener_v2`][http_listener_v2] instead.
[`http_listener_v2`](https://github.com/influxdata/telegraf/tree/master/plugins/inputs/http_listener_v2) instead.

The `/write` endpoint supports the `precision` query parameter and can be set
to one of `ns`, `u`, `ms`, `s`, `m`, `h`. All other parameters are ignored and
Expand Down Expand Up @@ -73,7 +73,4 @@ Metrics are created from InfluxDB Line Protocol in the request body.
**Example Query:**
```
curl -i -XPOST 'http://localhost:8186/write' --data-binary 'cpu_load_short,host=server01,region=us-west value=0.64 1434055562000000000'
```

[influxdb_http_api]: https://docs.influxdata.com/influxdb/latest/guides/writing_data/
[http_listener_v2]: /plugins/inputs/http_listener_v2/README.md
```
22 changes: 11 additions & 11 deletions src/writeData/components/telegrafPlugins/jolokia2.md
Original file line number Diff line number Diff line change
Expand Up @@ -172,16 +172,16 @@ Both `jolokia2_agent` and `jolokia2_proxy` plugins support default configuration

### Example Configurations:

- [ActiveMQ](/plugins/inputs/jolokia2/examples/activemq.conf)
- [BitBucket](/plugins/inputs/jolokia2/examples/bitbucket.conf)
- [Cassandra](/plugins/inputs/jolokia2/examples/cassandra.conf)
- [Hadoop-HDFS](/plugins/inputs/jolokia2/examples/hadoop-hdfs.conf)
- [Java JVM](/plugins/inputs/jolokia2/examples/java.conf)
- [JBoss](/plugins/inputs/jolokia2/examples/jboss.conf)
- [Kafka](/plugins/inputs/jolokia2/examples/kafka.conf)
- [Kafka Connect](/plugins/inputs/jolokia2/examples/kafka-connect.conf)
- [Tomcat](/plugins/inputs/jolokia2/examples/tomcat.conf)
- [Weblogic](/plugins/inputs/jolokia2/examples/weblogic.conf)
- [ZooKeeper](/plugins/inputs/jolokia2/examples/zookeeper.conf)
- [ActiveMQ](https://github.com/influxdata/telegraf/tree/master/plugins/inputs/jolokia2/examples/activemq.conf)
- [BitBucket](https://github.com/influxdata/telegraf/tree/master/plugins/inputs/jolokia2/examples/bitbucket.conf)
- [Cassandra](https://github.com/influxdata/telegraf/tree/master/plugins/inputs/jolokia2/examples/cassandra.conf)
- [Hadoop-HDFS](https://github.com/influxdata/telegraf/tree/master/plugins/inputs/jolokia2/examples/hadoop-hdfs.conf)
- [Java JVM](https://github.com/influxdata/telegraf/tree/master/plugins/inputs/jolokia2/examples/java.conf)
- [JBoss](https://github.com/influxdata/telegraf/tree/master/plugins/inputs/jolokia2/examples/jboss.conf)
- [Kafka](https://github.com/influxdata/telegraf/tree/master/plugins/inputs/jolokia2/examples/kafka.conf)
- [Kafka Connect](https://github.com/influxdata/telegraf/tree/master/plugins/inputs/jolokia2/examples/kafka-connect.conf)
- [Tomcat](https://github.com/influxdata/telegraf/tree/master/plugins/inputs/jolokia2/examples/tomcat.conf)
- [Weblogic](https://github.com/influxdata/telegraf/tree/master/plugins/inputs/jolokia2/examples/weblogic.conf)
- [ZooKeeper](https://github.com/influxdata/telegraf/tree/master/plugins/inputs/jolokia2/examples/zookeeper.conf)

Please help improve this list and contribute new configuration files by opening an issue or pull request.
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ The systemd_units plugin gathers systemd unit status on Linux. It relies on
The results are tagged with the unit name and provide enumerated fields for
loaded, active and running fields, indicating the unit health.

This plugin is related to the [win_services module](/plugins/inputs/win_services/), which
This plugin is related to the [win_services module](https://github.com/influxdata/telegraf/tree/master/plugins/inputs/win_services/), which
fulfills the same purpose on windows.

In addition to services, this plugin can gather other unit types as well,
Expand Down