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