-
Notifications
You must be signed in to change notification settings - Fork 487
/
install.go
46 lines (42 loc) · 3.18 KB
/
install.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
// Package install registers all in-source integrations for use.
package install
import (
//
// v1 integrations
//
_ "github.com/grafana/agent/pkg/integrations/agent" // register agent
_ "github.com/grafana/agent/pkg/integrations/apache_http" // register apache_exporter
_ "github.com/grafana/agent/pkg/integrations/azure_exporter" // register azure_exporter
_ "github.com/grafana/agent/pkg/integrations/blackbox_exporter" // register blackbox_exporter
_ "github.com/grafana/agent/pkg/integrations/cadvisor" // register cadvisor
_ "github.com/grafana/agent/pkg/integrations/cloudwatch_exporter" // register cloudwatch_exporter
_ "github.com/grafana/agent/pkg/integrations/consul_exporter" // register consul_exporter
_ "github.com/grafana/agent/pkg/integrations/dnsmasq_exporter" // register dnsmasq_exporter
_ "github.com/grafana/agent/pkg/integrations/elasticsearch_exporter" // register elasticsearch_exporter
_ "github.com/grafana/agent/pkg/integrations/gcp_exporter" // register gcp_exporter
_ "github.com/grafana/agent/pkg/integrations/github_exporter" // register github_exporter
_ "github.com/grafana/agent/pkg/integrations/kafka_exporter" // register kafka_exporter
_ "github.com/grafana/agent/pkg/integrations/memcached_exporter" // register memcached_exporter
_ "github.com/grafana/agent/pkg/integrations/mongodb_exporter" // register mongodb_exporter
_ "github.com/grafana/agent/pkg/integrations/mssql" // register mssql
_ "github.com/grafana/agent/pkg/integrations/mysqld_exporter" // register mysqld_exporter
_ "github.com/grafana/agent/pkg/integrations/node_exporter" // register node_exporter
_ "github.com/grafana/agent/pkg/integrations/oracledb_exporter" // register oracledb_exporter
_ "github.com/grafana/agent/pkg/integrations/postgres_exporter" // register postgres_exporter
_ "github.com/grafana/agent/pkg/integrations/process_exporter" // register process_exporter
_ "github.com/grafana/agent/pkg/integrations/redis_exporter" // register redis_exporter
_ "github.com/grafana/agent/pkg/integrations/snmp_exporter" // register snmp_exporter
_ "github.com/grafana/agent/pkg/integrations/snowflake_exporter" // register snowflake_exporter
_ "github.com/grafana/agent/pkg/integrations/statsd_exporter" // register statsd_exporter
_ "github.com/grafana/agent/pkg/integrations/windows_exporter" // register windows_exporter
//
// v2 integrations
//
_ "github.com/grafana/agent/pkg/integrations/v2/agent" // register agent
_ "github.com/grafana/agent/pkg/integrations/v2/apache_http" // register apache_exporter
_ "github.com/grafana/agent/pkg/integrations/v2/app_agent_receiver" // register app_agent_receiver
_ "github.com/grafana/agent/pkg/integrations/v2/blackbox_exporter" // register blackbox_exporter
_ "github.com/grafana/agent/pkg/integrations/v2/eventhandler" // register eventhandler
_ "github.com/grafana/agent/pkg/integrations/v2/snmp_exporter" // register snmp_exporter
_ "github.com/grafana/agent/pkg/integrations/v2/vmware_exporter" // register vmware_exporter
)