func newTelemetryClient()

in docker_image/telemetry/main.go [33:38]


func newTelemetryClient() appinsights.TelemetryClient {
	c := appinsights.NewTelemetryConfiguration(os.Getenv("INSTRUMENTATION_KEY"))
	c.MaxBatchSize = 100
	c.MaxBatchInterval = time.Second
	return appinsights.NewTelemetryClientFromConfig(c)
}