-
Notifications
You must be signed in to change notification settings - Fork 3.6k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
feat: updating telegraf plugins for latest release #20861
Conversation
5617975
to
b82a8ff
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@russorat we need to remove the references to old settings. I tried removing the references from telegraf's code in influxdata/telegraf#8754 after your last PR, but the change wasn't accepted since the advice is still relevant for older InfluxDBs
@@ -13,6 +13,9 @@ your database. | |||
options to exclude unneeded tags. | |||
- Write to a database with an appropriate | |||
[retention policy](https://docs.influxdata.com/influxdb/latest/guides/downsampling_and_retention/). | |||
- Limit series cardinality in your database using the | |||
[`max-series-per-database`](https://docs.influxdata.com/influxdb/latest/administration/config/#max-series-per-database-1000000) and | |||
[`max-values-per-tag`](https://docs.influxdata.com/influxdb/latest/administration/config/#max-values-per-tag-100000) settings. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Needs reverted since these are gone in 2.0.4+
@@ -27,6 +27,8 @@ avoid cardinality issues: | |||
|
|||
- Use [metric filtering][] options to exclude unneeded measurements and tags. | |||
- Write to a database with an appropriate [retention policy][]. | |||
- Limit series cardinality in your database using the | |||
[max-series-per-database][] and [max-values-per-tag][] settings. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Needs reverted
@@ -307,6 +309,8 @@ kubernetes_statefulset,namespace=default,selector_select1=s1,statefulset_name=et | |||
|
|||
[metric filtering]: https://github.com/influxdata/telegraf/blob/master/docs/CONFIGURATION.md#metric-filtering | |||
[retention policy]: https://docs.influxdata.com/influxdb/latest/guides/downsampling_and_retention/ | |||
[max-series-per-database]: https://docs.influxdata.com/influxdb/latest/administration/config/#max-series-per-database-1000000 | |||
[max-values-per-tag]: https://docs.influxdata.com/influxdb/latest/administration/config/#max-values-per-tag-100000 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Needs reverted
@@ -28,6 +28,8 @@ avoid cardinality issues: | |||
|
|||
- Use [metric filtering][] options to exclude unneeded measurements and tags. | |||
- Write to a database with an appropriate [retention policy][]. | |||
- Limit series cardinality in your database using the | |||
[max-series-per-database][] and [max-values-per-tag][] settings. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Needs reverted
@@ -152,6 +154,8 @@ kubernetes_system_container | |||
|
|||
[metric filtering]: https://github.com/influxdata/telegraf/blob/master/docs/CONFIGURATION.md#metric-filtering | |||
[retention policy]: https://docs.influxdata.com/influxdb/latest/guides/downsampling_and_retention/ | |||
[max-series-per-database]: https://docs.influxdata.com/influxdb/latest/administration/config/#max-series-per-database-1000000 | |||
[max-values-per-tag]: https://docs.influxdata.com/influxdb/latest/administration/config/#max-values-per-tag-100000 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Needs reverted
@@ -15,6 +15,9 @@ manage your series cardinality: | |||
`tagexclude` to remove the `pid` and `process_group_id` tags. | |||
- Write to a database with an appropriate | |||
[retention policy](https://docs.influxdata.com/influxdb/latest/guides/downsampling_and_retention/). | |||
- Limit series cardinality in your database using the | |||
[`max-series-per-database`](https://docs.influxdata.com/influxdb/latest/administration/config/#max-series-per-database-1000000) and | |||
[`max-values-per-tag`](https://docs.influxdata.com/influxdb/latest/administration/config/#max-values-per-tag-100000) settings. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Needs reverted
@@ -14,6 +14,8 @@ avoid cardinality issues: | |||
|
|||
- Use [metric filtering][] options to exclude unneeded measurements and tags. | |||
- Write to a database with an appropriate [retention policy][]. | |||
- Limit series cardinality in your database using the | |||
[max-series-per-database][] and [max-values-per-tag][] settings. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Needs reverted
@@ -111,6 +113,8 @@ This sflow implementation was built from the reference document | |||
|
|||
[metric filtering]: https://github.com/influxdata/telegraf/blob/master/docs/CONFIGURATION.md#metric-filtering | |||
[retention policy]: https://docs.influxdata.com/influxdb/latest/guides/downsampling_and_retention/ | |||
[max-series-per-database]: https://docs.influxdata.com/influxdb/latest/administration/config/#max-series-per-database-1000000 | |||
[max-values-per-tag]: https://docs.influxdata.com/influxdb/latest/administration/config/#max-values-per-tag-100000 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Needs reverted
@danxmoran i'd like to keep the readme content the same if possible between the telegraf repo and the product, otherwise it will become even more unmaintainable going forward. I've commented on the other PR to see if we can change those links to go to the docs pages instead. |
Closes #
Describe your proposed changes here.