func NewDefaultPluginConfig()

in config/plugin_config.go [29:48]


func NewDefaultPluginConfig() *PluginConfig {
	return &PluginConfig{
		DiagnosticsProfilingEnabled: false,
		DiagnosticsListenAddress:    ":6060",
		KustoConfigPath:             "",
		LogLevel:                    "warn",
		LogJson:                     false,
		RemoteMode:                  false,
		RemoteListenAddress:         "tcp://:8989",
		TracingSamplerPercentage:    0.0,     // disabled by default
		TracingRPCMetrics:           false,   // disabled by default
		WriterBatchMaxBytes:         1048576, // 1 Mb by default
		WriterBatchTimeoutSeconds:   5,
		WriterSpanBufferSize:        100,
		WriterWorkersCount:          5,
		DisableJaegerUiTraces:       true, //disable UI logs of jaeger into OTELTraces. No traces from Jaeger UI will be sent
		ReadNoTruncation:            false,
		ReadNoTimeout:               false,
	}
}