func Enabled()

in enrichments/trace/config/config.go [106:157]


func Enabled() Config {
	return Config{
		Resource: ResourceConfig{
			AgentName:             AttributeConfig{Enabled: true},
			AgentVersion:          AttributeConfig{Enabled: true},
			OverrideHostName:      AttributeConfig{Enabled: true},
			DeploymentEnvironment: AttributeConfig{Enabled: true},
		},
		Scope: ScopeConfig{
			ServiceFrameworkName:    AttributeConfig{Enabled: true},
			ServiceFrameworkVersion: AttributeConfig{Enabled: true},
		},
		Transaction: ElasticTransactionConfig{
			TimestampUs:         AttributeConfig{Enabled: true},
			Sampled:             AttributeConfig{Enabled: true},
			ID:                  AttributeConfig{Enabled: true},
			Root:                AttributeConfig{Enabled: true},
			Name:                AttributeConfig{Enabled: true},
			ProcessorEvent:      AttributeConfig{Enabled: true},
			DurationUs:          AttributeConfig{Enabled: true},
			Type:                AttributeConfig{Enabled: true},
			Result:              AttributeConfig{Enabled: true},
			EventOutcome:        AttributeConfig{Enabled: true},
			RepresentativeCount: AttributeConfig{Enabled: true},
			InferredSpans:       AttributeConfig{Enabled: true},
			UserAgent:           AttributeConfig{Enabled: true},
		},
		Span: ElasticSpanConfig{
			TimestampUs:         AttributeConfig{Enabled: true},
			Name:                AttributeConfig{Enabled: true},
			ProcessorEvent:      AttributeConfig{Enabled: true},
			TypeSubtype:         AttributeConfig{Enabled: true},
			DurationUs:          AttributeConfig{Enabled: true},
			EventOutcome:        AttributeConfig{Enabled: true},
			ServiceTarget:       AttributeConfig{Enabled: true},
			DestinationService:  AttributeConfig{Enabled: true},
			RepresentativeCount: AttributeConfig{Enabled: true},
			InferredSpans:       AttributeConfig{Enabled: true},
			UserAgent:           AttributeConfig{Enabled: true},
		},
		SpanEvent: SpanEventConfig{
			TimestampUs:           AttributeConfig{Enabled: true},
			TransactionSampled:    AttributeConfig{Enabled: true},
			TransactionType:       AttributeConfig{Enabled: true},
			ProcessorEvent:        AttributeConfig{Enabled: true},
			ErrorID:               AttributeConfig{Enabled: true},
			ErrorExceptionHandled: AttributeConfig{Enabled: true},
			ErrorGroupingKey:      AttributeConfig{Enabled: true},
			ErrorGroupingName:     AttributeConfig{Enabled: true},
		},
	}
}