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
0
migrations/outputs_riemann_legacy/README.md
Normal file
0
migrations/outputs_riemann_legacy/README.md
Normal file
106
migrations/outputs_riemann_legacy/migration.go
Normal file
106
migrations/outputs_riemann_legacy/migration.go
Normal file
|
@ -0,0 +1,106 @@
|
|||
package outputs_riemann_legacy
|
||||
|
||||
import (
|
||||
"github.com/influxdata/toml"
|
||||
"github.com/influxdata/toml/ast"
|
||||
|
||||
"github.com/influxdata/telegraf/migrations"
|
||||
"github.com/influxdata/telegraf/migrations/common"
|
||||
)
|
||||
|
||||
// Define "old" data structure
|
||||
type riemannLegacy struct {
|
||||
URL string `toml:"url"`
|
||||
Transport string `toml:"transport"`
|
||||
Separator string `toml:"separator"`
|
||||
common.OutputOptions
|
||||
}
|
||||
|
||||
// Define "new" data structure(s)
|
||||
type riemann struct {
|
||||
URL string `toml:"url"`
|
||||
Separator string `toml:"separator"`
|
||||
|
||||
// Common options for outputs
|
||||
Alias string `toml:"alias,omitempty"`
|
||||
NamePass []string `toml:"namepass,omitempty"`
|
||||
NameDrop []string `toml:"namedrop,omitempty"`
|
||||
FieldInclude []string `toml:"fieldinclude,omitempty"`
|
||||
FieldExclude []string `toml:"fieldexclude,omitempty"`
|
||||
TagPassFilters map[string][]string `toml:"tagpass,omitempty"`
|
||||
TagDropFilters map[string][]string `toml:"tagdrop,omitempty"`
|
||||
TagExclude []string `toml:"tagexclude,omitempty"`
|
||||
TagInclude []string `toml:"taginclude,omitempty"`
|
||||
MetricPass string `toml:"metricpass,omitempty"`
|
||||
}
|
||||
|
||||
// Migration function
|
||||
func migrate(tbl *ast.Table) ([]byte, string, error) {
|
||||
// Decode the old data structure
|
||||
var old riemannLegacy
|
||||
if err := toml.UnmarshalTable(tbl, &old); err != nil {
|
||||
return nil, "", err
|
||||
}
|
||||
|
||||
// Create new plugin configurations
|
||||
cfg := migrations.CreateTOMLStruct("outputs", "riemann")
|
||||
plugin := riemann{
|
||||
URL: old.Transport + "://" + old.URL,
|
||||
Separator: old.Separator,
|
||||
}
|
||||
plugin.fillCommon(old.OutputOptions)
|
||||
cfg.Add("outputs", "riemann", plugin)
|
||||
|
||||
// Marshal the new configuration
|
||||
buf, err := toml.Marshal(cfg)
|
||||
if err != nil {
|
||||
return nil, "", err
|
||||
}
|
||||
buf = append(buf, []byte("\n")...)
|
||||
|
||||
// Create the new content to output
|
||||
return buf, "", nil
|
||||
}
|
||||
|
||||
func (j *riemann) fillCommon(o common.OutputOptions) {
|
||||
o.Migrate()
|
||||
|
||||
j.Alias = o.Alias
|
||||
|
||||
if len(o.NamePass) > 0 {
|
||||
j.NamePass = append(j.NamePass, o.NamePass...)
|
||||
}
|
||||
if len(o.NameDrop) > 0 {
|
||||
j.NameDrop = append(j.NameDrop, o.NameDrop...)
|
||||
}
|
||||
if len(o.FieldInclude) > 0 {
|
||||
j.FieldInclude = append(j.FieldInclude, o.FieldInclude...)
|
||||
}
|
||||
if len(o.FieldExclude) > 0 {
|
||||
j.FieldExclude = append(j.FieldExclude, o.FieldExclude...)
|
||||
}
|
||||
if len(o.TagPassFilters) > 0 {
|
||||
j.TagPassFilters = make(map[string][]string, len(o.TagPassFilters))
|
||||
for k, v := range o.TagPassFilters {
|
||||
j.TagPassFilters[k] = v
|
||||
}
|
||||
}
|
||||
if len(o.TagDropFilters) > 0 {
|
||||
j.TagDropFilters = make(map[string][]string, len(o.TagDropFilters))
|
||||
for k, v := range o.TagDropFilters {
|
||||
j.TagDropFilters[k] = v
|
||||
}
|
||||
}
|
||||
if len(o.TagExclude) > 0 {
|
||||
j.TagExclude = append(j.TagExclude, o.TagExclude...)
|
||||
}
|
||||
if len(o.TagInclude) > 0 {
|
||||
j.TagInclude = append(j.TagInclude, o.TagInclude...)
|
||||
}
|
||||
j.MetricPass = o.MetricPass
|
||||
}
|
||||
|
||||
// Register the migration function for the plugin type
|
||||
func init() {
|
||||
migrations.AddPluginMigration("outputs.riemann_legacy", migrate)
|
||||
}
|
61
migrations/outputs_riemann_legacy/migration_test.go
Normal file
61
migrations/outputs_riemann_legacy/migration_test.go
Normal file
|
@ -0,0 +1,61 @@
|
|||
package outputs_riemann_legacy_test
|
||||
|
||||
import (
|
||||
"os"
|
||||
"path/filepath"
|
||||
"testing"
|
||||
|
||||
"github.com/stretchr/testify/require"
|
||||
|
||||
"github.com/influxdata/telegraf/config"
|
||||
_ "github.com/influxdata/telegraf/migrations/outputs_riemann_legacy" // register migration
|
||||
_ "github.com/influxdata/telegraf/plugins/outputs/riemann" // register plugin
|
||||
)
|
||||
|
||||
func TestCases(t *testing.T) {
|
||||
// Get all directories in testdata
|
||||
folders, err := os.ReadDir("testcases")
|
||||
require.NoError(t, err)
|
||||
|
||||
for _, f := range folders {
|
||||
// Only handle folders
|
||||
if !f.IsDir() {
|
||||
continue
|
||||
}
|
||||
|
||||
t.Run(f.Name(), func(t *testing.T) {
|
||||
testcasePath := filepath.Join("testcases", f.Name())
|
||||
inputFile := filepath.Join(testcasePath, "telegraf.conf")
|
||||
expectedFile := filepath.Join(testcasePath, "expected.conf")
|
||||
|
||||
// Read the expected output
|
||||
expected := config.NewConfig()
|
||||
require.NoError(t, expected.LoadConfig(expectedFile))
|
||||
require.NotEmpty(t, expected.Outputs)
|
||||
|
||||
// Read the input data
|
||||
input, remote, err := config.LoadConfigFile(inputFile)
|
||||
require.NoError(t, err)
|
||||
require.False(t, remote)
|
||||
require.NotEmpty(t, input)
|
||||
|
||||
// Migrate
|
||||
output, n, err := config.ApplyMigrations(input)
|
||||
require.NoError(t, err)
|
||||
require.NotEmpty(t, output)
|
||||
require.GreaterOrEqual(t, n, uint64(1))
|
||||
actual := config.NewConfig()
|
||||
require.NoError(t, actual.LoadConfigData(output, config.EmptySourcePath))
|
||||
|
||||
// Test the output
|
||||
require.Len(t, actual.Outputs, len(expected.Outputs))
|
||||
actualIDs := make([]string, 0, len(expected.Outputs))
|
||||
expectedIDs := make([]string, 0, len(expected.Outputs))
|
||||
for i := range actual.Outputs {
|
||||
actualIDs = append(actualIDs, actual.Outputs[i].ID())
|
||||
expectedIDs = append(expectedIDs, expected.Outputs[i].ID())
|
||||
}
|
||||
require.ElementsMatch(t, expectedIDs, actualIDs)
|
||||
})
|
||||
}
|
||||
}
|
|
@ -0,0 +1,5 @@
|
|||
[[outputs.riemann]]
|
||||
url = "udp://localhost:5555"
|
||||
separator = "."
|
||||
namepass = ["foo"]
|
||||
fieldinclude = ["motor_*"]
|
|
@ -0,0 +1,9 @@
|
|||
# Configuration for the Riemann server to send metrics to
|
||||
[[outputs.riemann_legacy]]
|
||||
url = "localhost:5555"
|
||||
transport = "udp"
|
||||
separator = "."
|
||||
|
||||
## Metric filtering
|
||||
namepass = ["foo"]
|
||||
fieldpass = ["motor_*"]
|
|
@ -0,0 +1,3 @@
|
|||
[[outputs.riemann]]
|
||||
url = "tcp://localhost:5555"
|
||||
separator = " "
|
|
@ -0,0 +1,8 @@
|
|||
# Configuration for the Riemann server to send metrics to
|
||||
[[outputs.riemann_legacy]]
|
||||
## URL of server
|
||||
url = "localhost:5555"
|
||||
## transport protocol to use either tcp or udp
|
||||
transport = "tcp"
|
||||
## separator to use between input name and field name in Riemann service name
|
||||
separator = " "
|
Loading…
Add table
Add a link
Reference in a new issue