12 lines
317 B
Go
12 lines
317 B
Go
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
|
|
}
|