1
0
Fork 0

Instana tracer implementation

This commit is contained in:
Kevin Crawley 2019-02-18 09:52:04 -06:00 committed by Traefiker Bot
parent c2c6aee18a
commit aef24dd74b
43 changed files with 4502 additions and 2 deletions

12
vendor/github.com/instana/go-sensor/options.go generated vendored Normal file
View file

@ -0,0 +1,12 @@
package instana
// Options allows the user to configure the to-be-initialized
// sensor
type Options struct {
Service string
AgentHost string
AgentPort int
MaxBufferedSpans int
ForceTransmissionStartingAt int
LogLevel int
}