예제 #1
0
파일: memory.go 프로젝트: d4devops/telegraf
func init() {
	inputs.Add("mem", func() inputs.Input {
		return &MemStats{ps: &systemPS{}}
	})

	inputs.Add("swap", func() inputs.Input {
		return &SwapStats{ps: &systemPS{}}
	})
}
예제 #2
0
파일: disk.go 프로젝트: d4devops/telegraf
func init() {
	inputs.Add("disk", func() inputs.Input {
		return &DiskStats{ps: &systemPS{}}
	})

	inputs.Add("diskio", func() inputs.Input {
		return &DiskIOStats{ps: &systemPS{}}
	})
}
예제 #3
0
func init() {
	inputs.Add("mongodb", func() inputs.Input {
		return &MongoDB{
			mongos: make(map[string]*Server),
		}
	})
}
예제 #4
0
func init() {
	inputs.Add("lustre2", func() inputs.Input {
		return &Lustre2{}
	})
}
예제 #5
0
파일: sensors.go 프로젝트: skwong2/telegraf
func init() {
	inputs.Add("sensors", func() inputs.Input {
		return &Sensors{}
	})
}
예제 #6
0
파일: redis.go 프로젝트: d4devops/telegraf
func init() {
	inputs.Add("redis", func() inputs.Input {
		return &Redis{}
	})
}
예제 #7
0
파일: statsd.go 프로젝트: d4devops/telegraf
func init() {
	inputs.Add("statsd", func() inputs.Input {
		return &Statsd{}
	})
}
예제 #8
0
func init() {
	inputs.Add("jolokia", func() inputs.Input {
		return &Jolokia{jClient: &JolokiaClientImpl{client: &http.Client{}}}
	})
}
예제 #9
0
파일: zfs.go 프로젝트: d4devops/telegraf
func init() {
	inputs.Add("zfs", func() inputs.Input {
		return &Zfs{}
	})
}
예제 #10
0
func init() {
	inputs.Add("puppetagent", func() inputs.Input {
		return &PuppetAgent{}
	})
}
예제 #11
0
파일: phpfpm.go 프로젝트: skwong2/telegraf
func init() {
	inputs.Add("phpfpm", func() inputs.Input {
		return &phpfpm{}
	})
}
예제 #12
0
func init() {
	inputs.Add("procstat", func() inputs.Input {
		return NewProcstat()
	})
}
예제 #13
0
파일: exec.go 프로젝트: d4devops/telegraf
func init() {
	inputs.Add("exec", func() inputs.Input {
		return NewExec()
	})
}
예제 #14
0
func init() {
	inputs.Add("influxdb", func() inputs.Input {
		return &InfluxDB{}
	})
}
예제 #15
0
func init() {
	inputs.Add("aerospike", func() inputs.Input {
		return &Aerospike{}
	})
}
예제 #16
0
파일: nsq.go 프로젝트: skwong2/telegraf
func init() {
	inputs.Add("nsq", func() inputs.Input {
		return &NSQ{}
	})
}
예제 #17
0
func init() {
	inputs.Add("httpjson", func() inputs.Input {
		return &HttpJson{client: RealHTTPClient{client: &http.Client{}}}
	})
}
예제 #18
0
파일: nginx.go 프로젝트: d4devops/telegraf
func init() {
	inputs.Add("nginx", func() inputs.Input {
		return &Nginx{}
	})
}
예제 #19
0
func init() {
	inputs.Add("netstat", func() inputs.Input {
		return &NetStats{ps: &systemPS{}}
	})
}
예제 #20
0
파일: apache.go 프로젝트: d4devops/telegraf
func init() {
	inputs.Add("apache", func() inputs.Input {
		return &Apache{}
	})
}
예제 #21
0
파일: bcache.go 프로젝트: d4devops/telegraf
func init() {
	inputs.Add("bcache", func() inputs.Input {
		return &Bcache{}
	})
}
예제 #22
0
파일: cpu.go 프로젝트: d4devops/telegraf
func init() {
	inputs.Add("cpu", func() inputs.Input {
		return &CPUStats{ps: &systemPS{}}
	})
}
예제 #23
0
func init() {
	inputs.Add("passenger", func() inputs.Input {
		return &passenger{}
	})
}
예제 #24
0
func init() {
	inputs.Add("memcached", func() inputs.Input {
		return &Memcached{}
	})
}
예제 #25
0
파일: disque.go 프로젝트: d4devops/telegraf
func init() {
	inputs.Add("disque", func() inputs.Input {
		return &Disque{}
	})
}
예제 #26
0
파일: leofs.go 프로젝트: d4devops/telegraf
func init() {
	inputs.Add("leofs", func() inputs.Input {
		return &LeoFS{}
	})
}
예제 #27
0
func init() {
	inputs.Add("rethinkdb", func() inputs.Input {
		return &RethinkDB{}
	})
}
예제 #28
0
func init() {
	inputs.Add("zookeeper", func() inputs.Input {
		return &Zookeeper{}
	})
}
예제 #29
0
파일: statsd.go 프로젝트: skwong2/telegraf
func init() {
	inputs.Add("statsd", func() inputs.Input {
		return &Statsd{ConvertNames: true}
	})
}
예제 #30
0
파일: mysql.go 프로젝트: d4devops/telegraf
func init() {
	inputs.Add("mysql", func() inputs.Input {
		return &Mysql{}
	})
}