Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -1220,6 +1220,11 @@ Some instrumentations (e.g. Spring Web MVC instrumentation) produce SpanKind.Int
Environment variable: OTEL_RESOURCE_PROVIDERS_GCP_ENABLED
Default: false
Description: Enables the GCP Resource Provider.

System property: otel.resource.providers.azure.enabled
Environment variable: OTEL_RESOURCE_PROVIDERS_AZURE_ENABLED
Default: false
Description: Enables the Azure Resource Provider.
*/

settings.add(
Expand All @@ -1236,6 +1241,13 @@ Some instrumentations (e.g. Spring Web MVC instrumentation) produce SpanKind.Int
"false",
SettingType.BOOLEAN,
SettingCategory.RESOURCE_PROVIDER));
settings.add(
setting(
"otel.resource.providers.azure.enabled",
"Enables the Azure Resource Provider.",
"false",
SettingType.BOOLEAN,
SettingCategory.RESOURCE_PROVIDER));

// https://github.com/signalfx/splunk-otel-java/blob/main/docs/advanced-config.md

Expand Down
Loading