Adding upstream version 1.34.4.
Signed-off-by: Daniel Baumann <daniel@debian.org>
This commit is contained in:
parent
e393c3af3f
commit
4978089aab
4963 changed files with 677545 additions and 0 deletions
21
migrations/inputs_kafka_consumer_legacy/migration.go
Normal file
21
migrations/inputs_kafka_consumer_legacy/migration.go
Normal file
|
@ -0,0 +1,21 @@
|
|||
package inputs_kafka_consumer_legacy
|
||||
|
||||
import (
|
||||
"github.com/influxdata/toml/ast"
|
||||
|
||||
"github.com/influxdata/telegraf/migrations"
|
||||
)
|
||||
|
||||
const msg = `
|
||||
This plugin cannot be migrated automatically and requires manual intervention!
|
||||
`
|
||||
|
||||
// Migration function
|
||||
func migrate(_ *ast.Table) ([]byte, string, error) {
|
||||
return nil, msg, nil
|
||||
}
|
||||
|
||||
// Register the migration function for the plugin type
|
||||
func init() {
|
||||
migrations.AddPluginMigration("inputs.kafka_consumer_legacy", migrate)
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue