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_snmp_legacy/migration.go
Normal file
21
migrations/inputs_snmp_legacy/migration.go
Normal file
|
@ -0,0 +1,21 @@
|
|||
package inputs_snmp_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.snmp_legacy", migrate)
|
||||
}
|
23
migrations/inputs_snmp_legacy/migration_test.go
Normal file
23
migrations/inputs_snmp_legacy/migration_test.go
Normal file
|
@ -0,0 +1,23 @@
|
|||
package inputs_snmp_legacy_test
|
||||
|
||||
import (
|
||||
"strings"
|
||||
"testing"
|
||||
|
||||
"github.com/stretchr/testify/require"
|
||||
|
||||
"github.com/influxdata/telegraf/config"
|
||||
_ "github.com/influxdata/telegraf/migrations/inputs_snmp_legacy" // register migration
|
||||
)
|
||||
|
||||
func TestNoMigration(t *testing.T) {
|
||||
input := []byte(`
|
||||
[[inputs.snmp_legacy]]
|
||||
address = "192.168.2.2:161"
|
||||
`)
|
||||
|
||||
output, n, err := config.ApplyMigrations(input)
|
||||
require.NoError(t, err)
|
||||
require.Empty(t, strings.TrimSpace(string(output)))
|
||||
require.Equal(t, uint64(1), n)
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue