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
1
migrations/all/all.go
Normal file
1
migrations/all/all.go
Normal file
|
@ -0,0 +1 @@
|
|||
package all
|
5
migrations/all/general_metricfilter.go
Normal file
5
migrations/all/general_metricfilter.go
Normal file
|
@ -0,0 +1,5 @@
|
|||
//go:build !custom || migrations
|
||||
|
||||
package all
|
||||
|
||||
import _ "github.com/influxdata/telegraf/migrations/general_metricfilter" // register migration
|
5
migrations/all/global_agent.go
Normal file
5
migrations/all/global_agent.go
Normal file
|
@ -0,0 +1,5 @@
|
|||
//go:build !custom || migrations
|
||||
|
||||
package all
|
||||
|
||||
import _ "github.com/influxdata/telegraf/migrations/global_agent" // register migration
|
5
migrations/all/inputs.nats_consumer.go
Normal file
5
migrations/all/inputs.nats_consumer.go
Normal file
|
@ -0,0 +1,5 @@
|
|||
//go:build !custom || (migrations && (inputs || inputs.nats_consumer))
|
||||
|
||||
package all
|
||||
|
||||
import _ "github.com/influxdata/telegraf/migrations/inputs_nats_consumer" // register migration
|
5
migrations/all/inputs_cassandra.go
Normal file
5
migrations/all/inputs_cassandra.go
Normal file
|
@ -0,0 +1,5 @@
|
|||
//go:build !custom || (migrations && (inputs || inputs.cassandra))
|
||||
|
||||
package all
|
||||
|
||||
import _ "github.com/influxdata/telegraf/migrations/inputs_cassandra" // register migration
|
5
migrations/all/inputs_disk.go
Normal file
5
migrations/all/inputs_disk.go
Normal file
|
@ -0,0 +1,5 @@
|
|||
//go:build !custom || (migrations && (inputs || inputs.disk))
|
||||
|
||||
package all
|
||||
|
||||
import _ "github.com/influxdata/telegraf/migrations/inputs_disk" // register migration
|
5
migrations/all/inputs_gnmi.go
Normal file
5
migrations/all/inputs_gnmi.go
Normal file
|
@ -0,0 +1,5 @@
|
|||
//go:build !custom || (migrations && (inputs || inputs.gnmi))
|
||||
|
||||
package all
|
||||
|
||||
import _ "github.com/influxdata/telegraf/migrations/inputs_gnmi" // register migration
|
5
migrations/all/inputs_httpjson.go
Normal file
5
migrations/all/inputs_httpjson.go
Normal file
|
@ -0,0 +1,5 @@
|
|||
//go:build !custom || (migrations && (inputs || inputs.httpjson))
|
||||
|
||||
package all
|
||||
|
||||
import _ "github.com/influxdata/telegraf/migrations/inputs_httpjson" // register migration
|
5
migrations/all/inputs_io.go
Normal file
5
migrations/all/inputs_io.go
Normal file
|
@ -0,0 +1,5 @@
|
|||
//go:build !custom || (migrations && (inputs || inputs.io || inputs.diskio))
|
||||
|
||||
package all
|
||||
|
||||
import _ "github.com/influxdata/telegraf/migrations/inputs_io" // register migration
|
5
migrations/all/inputs_jolokia.go
Normal file
5
migrations/all/inputs_jolokia.go
Normal file
|
@ -0,0 +1,5 @@
|
|||
//go:build !custom || (migrations && (inputs || inputs.jolokia))
|
||||
|
||||
package all
|
||||
|
||||
import _ "github.com/influxdata/telegraf/migrations/inputs_jolokia" // register migration
|
5
migrations/all/inputs_kafka_consumer_legacy.go
Normal file
5
migrations/all/inputs_kafka_consumer_legacy.go
Normal file
|
@ -0,0 +1,5 @@
|
|||
//go:build !custom || (migrations && (inputs || inputs.kafka_consumer_legacy))
|
||||
|
||||
package all
|
||||
|
||||
import _ "github.com/influxdata/telegraf/migrations/inputs_kafka_consumer_legacy" // register migration
|
5
migrations/all/inputs_mqtt_consumer.go
Normal file
5
migrations/all/inputs_mqtt_consumer.go
Normal file
|
@ -0,0 +1,5 @@
|
|||
//go:build !custom || (migrations && (inputs || inputs.mqtt_consumer))
|
||||
|
||||
package all
|
||||
|
||||
import _ "github.com/influxdata/telegraf/migrations/inputs_mqtt_consumer" // register migration
|
5
migrations/all/inputs_procstat.go
Normal file
5
migrations/all/inputs_procstat.go
Normal file
|
@ -0,0 +1,5 @@
|
|||
//go:build !custom || (migrations && (inputs || inputs.procstat))
|
||||
|
||||
package all
|
||||
|
||||
import _ "github.com/influxdata/telegraf/migrations/inputs_procstat" // register migration
|
5
migrations/all/inputs_sflow.go
Normal file
5
migrations/all/inputs_sflow.go
Normal file
|
@ -0,0 +1,5 @@
|
|||
//go:build !custom || (migrations && (inputs || inputs.sflow))
|
||||
|
||||
package all
|
||||
|
||||
import _ "github.com/influxdata/telegraf/migrations/inputs_sflow" // register migration
|
5
migrations/all/inputs_snmp_legacy.go
Normal file
5
migrations/all/inputs_snmp_legacy.go
Normal file
|
@ -0,0 +1,5 @@
|
|||
//go:build !custom || (migrations && (inputs || inputs.snmp_legacy))
|
||||
|
||||
package all
|
||||
|
||||
import _ "github.com/influxdata/telegraf/migrations/inputs_snmp_legacy" // register migration
|
5
migrations/all/inputs_tcp_listener.go
Normal file
5
migrations/all/inputs_tcp_listener.go
Normal file
|
@ -0,0 +1,5 @@
|
|||
//go:build !custom || (migrations && (inputs || inputs.tcp_listener))
|
||||
|
||||
package all
|
||||
|
||||
import _ "github.com/influxdata/telegraf/migrations/inputs_tcp_listener" // register migration
|
5
migrations/all/inputs_udp_listener.go
Normal file
5
migrations/all/inputs_udp_listener.go
Normal file
|
@ -0,0 +1,5 @@
|
|||
//go:build !custom || (migrations && (inputs || inputs.udp_listener))
|
||||
|
||||
package all
|
||||
|
||||
import _ "github.com/influxdata/telegraf/migrations/inputs_udp_listener" // register migration
|
5
migrations/all/outputs_influxdb.go
Normal file
5
migrations/all/outputs_influxdb.go
Normal file
|
@ -0,0 +1,5 @@
|
|||
//go:build !custom || (migrations && (outputs || outputs.influxdb))
|
||||
|
||||
package all
|
||||
|
||||
import _ "github.com/influxdata/telegraf/migrations/outputs_influxdb" // register migration
|
5
migrations/all/outputs_riemann_legacy.go
Normal file
5
migrations/all/outputs_riemann_legacy.go
Normal file
|
@ -0,0 +1,5 @@
|
|||
//go:build !custom || (migrations && (outputs || outputs.riemann_legacy))
|
||||
|
||||
package all
|
||||
|
||||
import _ "github.com/influxdata/telegraf/migrations/outputs_riemann_legacy" // register migration
|
Loading…
Add table
Add a link
Reference in a new issue