feat(inputs.aerospike): Deprecate plugin (#14806)
This commit is contained in:
parent
ab2e69364e
commit
3d9b203662
|
|
@ -1,5 +1,9 @@
|
|||
# Aerospike Input Plugin
|
||||
|
||||
**DEPRECATED: As of version 1.30 the Aerospike plugin has been deprecated in
|
||||
favor of the [prometheus plugin](../prometheus/README.md) with the
|
||||
Aerospike Prometheus Exporter**
|
||||
|
||||
The aerospike plugin queries aerospike server(s) and get node statistics & stats
|
||||
for all the configured namespaces.
|
||||
|
||||
|
|
|
|||
|
|
@ -4,6 +4,10 @@ import "github.com/influxdata/telegraf"
|
|||
|
||||
// Deprecations lists the deprecated plugins
|
||||
var Deprecations = map[string]telegraf.DeprecationInfo{
|
||||
"aerospike": {
|
||||
Since: "1.30.0",
|
||||
Notice: "use 'inputs.prometheus' with the Aerospike Prometheus Exporter instead",
|
||||
},
|
||||
"cassandra": {
|
||||
Since: "1.7.0",
|
||||
RemovalIn: "1.30.0",
|
||||
|
|
|
|||
Loading…
Reference in New Issue