OpenTelemetry SDK
    Preparing search index...

    Interface ResourceConfigModel

    Configure resource for all signals. If omitted, the default resource is used.

    interface ResourceConfigModel {
        attributes?: AttributeNameValue[];
        attributes_list?: string | null;
        "detection/development"?: ExperimentalResourceDetection;
        schema_url?: string | null;
    }
    Index
    attributes?: AttributeNameValue[]

    Configure resource attributes. Entries have higher priority than entries from .resource.attributes_list. If omitted, no resource attributes are added.

    1

    attributes_list?: string | null

    Configure resource attributes. Entries have lower priority than entries from .resource.attributes. The value is a list of comma separated key-value pairs matching the format of OTEL_RESOURCE_ATTRIBUTES. See https://github.com/open-telemetry/opentelemetry-specification/blob/main/specification/configuration/sdk-environment-variables.md#general-sdk-configuration for details. If omitted or null, no resource attributes are added.

    "detection/development"?: ExperimentalResourceDetection
    schema_url?: string | null

    Configure resource schema URL. If omitted or null, no schema URL is used.