├── .gitattributes ├── .github ├── CODEOWNERS ├── ISSUE_TEMPLATE │ ├── baggage.md │ ├── context.md │ ├── logs.md │ ├── metrics.md │ ├── miscellaneous.md │ ├── profiling.md │ ├── protocol.md │ ├── resource.md │ └── trace.md ├── PULL_REQUEST_TEMPLATE.md ├── renovate.json5 ├── scripts │ ├── compliance_matrix.py │ └── triage-helper │ │ ├── Pipfile │ │ ├── Pipfile.lock │ │ └── app.py └── workflows │ ├── checks.yaml │ ├── fossa.yml │ ├── ossf-scorecard.yml │ ├── stale-pr.yaml │ └── triage-followup.yml ├── .gitignore ├── .lychee.toml ├── .markdownlint.yaml ├── .nvmrc ├── .vscode └── settings.json ├── .yamllint ├── CHANGELOG.md ├── CONTRIBUTING.md ├── LICENSE ├── Makefile ├── README.md ├── development ├── README.md ├── metrics │ └── config-service.md └── trace │ └── zpages.md ├── internal ├── img │ ├── api-lifecycle.png │ ├── architecture.png │ ├── dynamic-config-service.png │ ├── issue-triage-workflow.png │ ├── library-design.png │ ├── library-full.png │ ├── library-minimal.png │ └── long-term-support.png └── tools │ ├── go.mod │ ├── go.sum │ └── tools.go ├── issue-management.md ├── oteps ├── 0000-template.md ├── 0001-telemetry-without-manual-instrumentation.md ├── 0005-global-init.md ├── 0007-no-out-of-band-reporting.md ├── 0016-named-tracers.md ├── 0035-opentelemetry-protocol.md ├── 0038-version-semantic-attribute.md ├── 0066-separate-context-propagation.md ├── 0083-component.md ├── 0099-otlp-http.md ├── 0110-z-pages.md ├── 0111-auto-resource-detection.md ├── 0119-standard-system-metrics.md ├── 0122-otlp-http-json.md ├── 0143-versioning-and-stability.md ├── 0147-upgrade-procedures.md ├── 0149-exponential-histogram.md ├── 0152-telemetry-schemas.md ├── 0155-external-modules.md ├── 0156-columnar-encoding.md ├── 0178-mapping-to-otlp-anyvalue.md ├── 0182-otlp-remote-parent.md ├── 0199-support-elastic-common-schema-in-opentelemetry.md ├── 0201-scope-attributes.md ├── 0202-events-and-logs-api.md ├── 0225-configuration.md ├── 0227-separate-semantic-conventions.md ├── 0232-maturity-of-otel.md ├── 0243-app-telemetry-schema-vision-roadmap.md ├── 0258-env-context-baggage-carriers.md ├── 0265-event-vision.md ├── 0266-move-oteps-to-spec.md ├── 4430-span-event-api-deprecation-plan.md ├── 4485-extending-attributes-to-support-complex-values.md ├── README.md ├── assets │ ├── 0225-config.yaml │ └── 0225-schema.json ├── entities │ ├── 0256-entities-data-model.md │ └── 0264-resource-and-entities.md ├── experimental │ └── 0121-config-service.md ├── images │ ├── otlp-client-server.png │ ├── otlp-concurrent.png │ ├── otlp-multi-destination.png │ ├── otlp-request-response.png │ └── otlp-sequential.png ├── img │ ├── 0066_context_propagation_details.png │ ├── 0066_context_propagation_overview.png │ ├── 0143_api_lifecycle.png │ ├── 0143_cross_cutting.png │ ├── 0143_long_term.png │ ├── 0152-collector.png │ ├── 0152-otel-schema.png │ ├── 0152-query-translate.png │ ├── 0152-source-and-backend.png │ ├── 0156-arrow-ecosystem.svg │ ├── 0156-resource-events.svg │ ├── 0156_All trials.png │ ├── 0156_Best trials.png │ ├── 0156_OTEL - Arrow IPC.png │ ├── 0156_OTEL - HowToUseArrow.png │ ├── 0156_OTEL - ProtocolSeqDiagram.png │ ├── 0156_OTEL - Row vs Column.png │ ├── 0156_OTEL-Metric-Model.png │ ├── 0156_RecordBatch.png │ ├── 0156_collector_internal_overview.png │ ├── 0156_collector_phase_2.png │ ├── 0156_compression_ratio_summary_multivariate_metrics.png │ ├── 0156_compression_ratio_summary_std_metrics.png │ ├── 0156_logs_bytes.png │ ├── 0156_logs_schema.png │ ├── 0156_logs_step_times.png │ ├── 0156_logs_step_times_phase1.png │ ├── 0156_metrics_schema.png │ ├── 0156_metrics_small_batches.png │ ├── 0156_metrics_step_times.png │ ├── 0156_metrics_step_times_phase1.png │ ├── 0156_multivariate_metrics_bytes.png │ ├── 0156_summary.png │ ├── 0156_summary_time_spent.png │ ├── 0156_traces_schema.png │ ├── 0156_traces_step_times_phase1.png │ ├── 0156_traffic_reduction_use_case.png │ ├── 0156_univariate_metrics_bytes.png │ ├── 0201-scope-multiplexing.png │ ├── 0235-sampling-threshold-calculation.png │ ├── 0243-otel-weaver-component-schema.svg │ ├── 0243-otel-weaver-concepts.svg │ ├── 0243-otel-weaver-dev-strategies.svg │ ├── 0243-otel-weaver-hierarchy.svg │ ├── 0243-otel-weaver-overview.svg │ ├── 0243-otel-weaver-resolved-schema.svg │ ├── 0243-otel-weaver-responsibilities-properties.svg │ ├── 0243-otel-weaver-use-cases.svg │ ├── 0258-env-context-opentofu-trace.png │ ├── 0258-env-context-opentofu-tracing.png │ └── 0258-env-context-parent-child-process.png ├── logs │ ├── 0091-logs-vocabulary.md │ ├── 0092-logs-vision.md │ ├── 0097-log-data-model.md │ ├── 0130-logs-1.0ga-definition.md │ ├── 0150-logging-library-sdk.md │ └── images │ │ └── otep0150 │ │ ├── appender.png │ │ ├── custom-exporter.png │ │ ├── custom-processor.png │ │ └── otlp-file.png ├── metrics │ ├── 0003-measure-metric-type.md │ ├── 0008-metric-observer.md │ ├── 0009-metric-handles.md │ ├── 0010-cumulative-to-counter.md │ ├── 0049-metric-label-set.md │ ├── 0070-metric-bound-instrument.md │ ├── 0072-metric-observer.md │ ├── 0080-remove-metric-gauge.md │ ├── 0088-metric-instrument-optional-refinements.md │ ├── 0090-remove-labelset-from-metrics-api.md │ ├── 0098-metric-instruments-explained.md │ ├── 0108-naming-guidelines.md │ ├── 0113-exemplars.md │ ├── 0126-Configurable-Metric-Aggregations.md │ ├── 0131-otlp-export-behavior.md │ └── 0146-metrics-prototype-scenarios.md ├── profiles │ ├── 0212-profiling-vision.md │ ├── 0239-profiles-data-model.md │ └── images │ │ └── otep0239 │ │ └── profiles-data-model.png └── trace │ ├── 0002-remove-spandata.md │ ├── 0006-sampling.md │ ├── 0059-otlp-trace-data-format.md │ ├── 0136-error_flagging.md │ ├── 0168-sampling-propagation.md │ ├── 0170-sampling-probability.md │ ├── 0173-messaging-semantic-conventions.md │ ├── 0174-http-semantic-conventions.md │ ├── 0205-messaging-semantic-conventions-context-propagation.md │ ├── 0220-messaging-semantic-conventions-span-structure.md │ ├── 0235-sampling-threshold-in-trace-state.md │ ├── 0250-Composite_Samplers.md │ └── 4673-experimental-probability-sampling.md ├── package.json ├── schemas ├── 1.10.0 ├── 1.11.0 ├── 1.12.0 ├── 1.13.0 ├── 1.14.0 ├── 1.15.0 ├── 1.16.0 ├── 1.17.0 ├── 1.18.0 ├── 1.19.0 ├── 1.20.0 ├── 1.21.0 ├── 1.4.0 ├── 1.5.0 ├── 1.6.1 ├── 1.7.0 ├── 1.8.0 └── 1.9.0 ├── spec-compliance-matrix.md ├── spec-compliance-matrix ├── cpp.yaml ├── dotnet.yaml ├── erlang.yaml ├── go.yaml ├── java.yaml ├── js.yaml ├── php.yaml ├── python.yaml ├── ruby.yaml ├── rust.yaml ├── swift.yaml └── template.yaml ├── specification ├── README.md ├── baggage │ ├── README.md │ └── api.md ├── common │ ├── README.md │ ├── attribute-naming.md │ ├── attribute-requirement-level.md │ ├── attribute-type-mapping.md │ ├── instrumentation-scope.md │ └── mapping-to-non-otlp.md ├── compatibility │ ├── README.md │ ├── logging_trace_context.md │ ├── opencensus.md │ ├── opentracing.md │ └── prometheus_and_openmetrics.md ├── configuration │ ├── README.md │ ├── api.md │ ├── data-model.md │ ├── sdk-environment-variables.md │ └── sdk.md ├── context │ ├── README.md │ ├── api-propagators.md │ └── env-carriers.md ├── document-status.md ├── entities │ ├── README.md │ ├── data-model.md │ └── entity-propagation.md ├── error-handling.md ├── glossary.md ├── library-guidelines.md ├── library-layout.md ├── logs │ ├── README.md │ ├── api.md │ ├── data-model-appendix.md │ ├── data-model.md │ ├── img │ │ ├── app-to-file-logs-fb.png │ │ ├── app-to-file-logs-otelcol.png │ │ ├── app-to-otelcol.png │ │ ├── appender.png │ │ ├── application-api-sdk.png │ │ ├── separate-collection.png │ │ └── unified-collection.png │ ├── noop.md │ ├── sdk.md │ ├── sdk_exporters │ │ ├── README.md │ │ └── stdout.md │ └── supplementary-guidelines.md ├── metrics │ ├── README.md │ ├── api.md │ ├── data-model.md │ ├── img │ │ ├── accumulator-detail.png │ │ ├── metrics-sdk.png │ │ ├── model-cumulative-sum.png │ │ ├── model-delta-histogram.png │ │ ├── model-delta-sum.png │ │ ├── model-event-layer.png │ │ ├── model-gauge.png │ │ ├── model-layers-stream.png │ │ └── model-layers.png │ ├── metric-requirement-level.md │ ├── noop.md │ ├── sdk.md │ ├── sdk_exporters │ │ ├── README.md │ │ ├── in-memory.md │ │ ├── otlp.md │ │ ├── prometheus.md │ │ └── stdout.md │ └── supplementary-guidelines.md ├── overview.md ├── performance-benchmark.md ├── performance.md ├── profiles │ ├── README.md │ ├── mappings.md │ └── pprof.md ├── protocol │ ├── README.md │ ├── design-goals.md │ ├── exporter.md │ ├── file-exporter.md │ ├── img │ │ ├── otlp-client-server.png │ │ ├── otlp-concurrent.png │ │ ├── otlp-multi-destination.png │ │ ├── otlp-request-response.png │ │ └── otlp-sequential.png │ ├── otlp.md │ └── requirements.md ├── resource │ ├── README.md │ ├── data-model.md │ └── sdk.md ├── schemas │ ├── README.md │ ├── file_format_v1.0.0.md │ ├── file_format_v1.1.0.md │ └── img │ │ ├── 0152-collector.png │ │ ├── 0152-otel-schema.png │ │ ├── 0152-query-translate.png │ │ └── 0152-source-and-backend.png ├── semantic-conventions.md ├── specification-principles.md ├── telemetry-stability.md ├── trace │ ├── README.md │ ├── api.md │ ├── exceptions.md │ ├── sdk.md │ ├── sdk_exporters │ │ ├── README.md │ │ ├── stdout.md │ │ └── zipkin.md │ ├── tracestate-handling.md │ └── tracestate-probability-sampling.md ├── upgrading.md ├── vendors.md └── versioning-and-stability.md └── supplementary-guidelines └── compatibility └── aws.md /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/opentelemetry-specification/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/opentelemetry-specification/HEAD/.github/CODEOWNERS -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/baggage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/opentelemetry-specification/HEAD/.github/ISSUE_TEMPLATE/baggage.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/context.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/opentelemetry-specification/HEAD/.github/ISSUE_TEMPLATE/context.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/logs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/opentelemetry-specification/HEAD/.github/ISSUE_TEMPLATE/logs.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/metrics.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/opentelemetry-specification/HEAD/.github/ISSUE_TEMPLATE/metrics.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/miscellaneous.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/opentelemetry-specification/HEAD/.github/ISSUE_TEMPLATE/miscellaneous.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/profiling.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/opentelemetry-specification/HEAD/.github/ISSUE_TEMPLATE/profiling.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/protocol.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/opentelemetry-specification/HEAD/.github/ISSUE_TEMPLATE/protocol.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/resource.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/opentelemetry-specification/HEAD/.github/ISSUE_TEMPLATE/resource.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/trace.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/opentelemetry-specification/HEAD/.github/ISSUE_TEMPLATE/trace.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/opentelemetry-specification/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/renovate.json5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/opentelemetry-specification/HEAD/.github/renovate.json5 -------------------------------------------------------------------------------- /.github/scripts/compliance_matrix.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/opentelemetry-specification/HEAD/.github/scripts/compliance_matrix.py -------------------------------------------------------------------------------- /.github/scripts/triage-helper/Pipfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/opentelemetry-specification/HEAD/.github/scripts/triage-helper/Pipfile -------------------------------------------------------------------------------- /.github/scripts/triage-helper/Pipfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/opentelemetry-specification/HEAD/.github/scripts/triage-helper/Pipfile.lock -------------------------------------------------------------------------------- /.github/scripts/triage-helper/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/opentelemetry-specification/HEAD/.github/scripts/triage-helper/app.py -------------------------------------------------------------------------------- /.github/workflows/checks.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/opentelemetry-specification/HEAD/.github/workflows/checks.yaml -------------------------------------------------------------------------------- /.github/workflows/fossa.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/opentelemetry-specification/HEAD/.github/workflows/fossa.yml -------------------------------------------------------------------------------- /.github/workflows/ossf-scorecard.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/opentelemetry-specification/HEAD/.github/workflows/ossf-scorecard.yml -------------------------------------------------------------------------------- /.github/workflows/stale-pr.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/opentelemetry-specification/HEAD/.github/workflows/stale-pr.yaml -------------------------------------------------------------------------------- /.github/workflows/triage-followup.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/opentelemetry-specification/HEAD/.github/workflows/triage-followup.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/opentelemetry-specification/HEAD/.gitignore -------------------------------------------------------------------------------- /.lychee.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/opentelemetry-specification/HEAD/.lychee.toml -------------------------------------------------------------------------------- /.markdownlint.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/opentelemetry-specification/HEAD/.markdownlint.yaml -------------------------------------------------------------------------------- /.nvmrc: -------------------------------------------------------------------------------- 1 | lts/* 2 | -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/opentelemetry-specification/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /.yamllint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/opentelemetry-specification/HEAD/.yamllint -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/opentelemetry-specification/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/opentelemetry-specification/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/opentelemetry-specification/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/opentelemetry-specification/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/opentelemetry-specification/HEAD/README.md -------------------------------------------------------------------------------- /development/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/opentelemetry-specification/HEAD/development/README.md -------------------------------------------------------------------------------- /development/metrics/config-service.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/opentelemetry-specification/HEAD/development/metrics/config-service.md -------------------------------------------------------------------------------- /development/trace/zpages.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/opentelemetry-specification/HEAD/development/trace/zpages.md -------------------------------------------------------------------------------- /internal/img/api-lifecycle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/opentelemetry-specification/HEAD/internal/img/api-lifecycle.png -------------------------------------------------------------------------------- /internal/img/architecture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/opentelemetry-specification/HEAD/internal/img/architecture.png -------------------------------------------------------------------------------- /internal/img/dynamic-config-service.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/opentelemetry-specification/HEAD/internal/img/dynamic-config-service.png -------------------------------------------------------------------------------- /internal/img/issue-triage-workflow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/opentelemetry-specification/HEAD/internal/img/issue-triage-workflow.png -------------------------------------------------------------------------------- /internal/img/library-design.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/opentelemetry-specification/HEAD/internal/img/library-design.png -------------------------------------------------------------------------------- /internal/img/library-full.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/opentelemetry-specification/HEAD/internal/img/library-full.png -------------------------------------------------------------------------------- /internal/img/library-minimal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/opentelemetry-specification/HEAD/internal/img/library-minimal.png -------------------------------------------------------------------------------- /internal/img/long-term-support.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/opentelemetry-specification/HEAD/internal/img/long-term-support.png -------------------------------------------------------------------------------- /internal/tools/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/opentelemetry-specification/HEAD/internal/tools/go.mod -------------------------------------------------------------------------------- /internal/tools/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/opentelemetry-specification/HEAD/internal/tools/go.sum -------------------------------------------------------------------------------- /internal/tools/tools.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/opentelemetry-specification/HEAD/internal/tools/tools.go -------------------------------------------------------------------------------- /issue-management.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/opentelemetry-specification/HEAD/issue-management.md -------------------------------------------------------------------------------- /oteps/0000-template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/opentelemetry-specification/HEAD/oteps/0000-template.md -------------------------------------------------------------------------------- /oteps/0001-telemetry-without-manual-instrumentation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/opentelemetry-specification/HEAD/oteps/0001-telemetry-without-manual-instrumentation.md -------------------------------------------------------------------------------- /oteps/0005-global-init.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/opentelemetry-specification/HEAD/oteps/0005-global-init.md -------------------------------------------------------------------------------- /oteps/0007-no-out-of-band-reporting.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/opentelemetry-specification/HEAD/oteps/0007-no-out-of-band-reporting.md -------------------------------------------------------------------------------- /oteps/0016-named-tracers.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/opentelemetry-specification/HEAD/oteps/0016-named-tracers.md -------------------------------------------------------------------------------- /oteps/0035-opentelemetry-protocol.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/opentelemetry-specification/HEAD/oteps/0035-opentelemetry-protocol.md -------------------------------------------------------------------------------- /oteps/0038-version-semantic-attribute.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/opentelemetry-specification/HEAD/oteps/0038-version-semantic-attribute.md -------------------------------------------------------------------------------- /oteps/0066-separate-context-propagation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/opentelemetry-specification/HEAD/oteps/0066-separate-context-propagation.md -------------------------------------------------------------------------------- /oteps/0083-component.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/opentelemetry-specification/HEAD/oteps/0083-component.md -------------------------------------------------------------------------------- /oteps/0099-otlp-http.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/opentelemetry-specification/HEAD/oteps/0099-otlp-http.md -------------------------------------------------------------------------------- /oteps/0110-z-pages.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/opentelemetry-specification/HEAD/oteps/0110-z-pages.md -------------------------------------------------------------------------------- /oteps/0111-auto-resource-detection.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/opentelemetry-specification/HEAD/oteps/0111-auto-resource-detection.md -------------------------------------------------------------------------------- /oteps/0119-standard-system-metrics.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/opentelemetry-specification/HEAD/oteps/0119-standard-system-metrics.md -------------------------------------------------------------------------------- /oteps/0122-otlp-http-json.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/opentelemetry-specification/HEAD/oteps/0122-otlp-http-json.md -------------------------------------------------------------------------------- /oteps/0143-versioning-and-stability.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/opentelemetry-specification/HEAD/oteps/0143-versioning-and-stability.md -------------------------------------------------------------------------------- /oteps/0147-upgrade-procedures.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/opentelemetry-specification/HEAD/oteps/0147-upgrade-procedures.md -------------------------------------------------------------------------------- /oteps/0149-exponential-histogram.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/opentelemetry-specification/HEAD/oteps/0149-exponential-histogram.md -------------------------------------------------------------------------------- /oteps/0152-telemetry-schemas.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/opentelemetry-specification/HEAD/oteps/0152-telemetry-schemas.md -------------------------------------------------------------------------------- /oteps/0155-external-modules.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/opentelemetry-specification/HEAD/oteps/0155-external-modules.md -------------------------------------------------------------------------------- /oteps/0156-columnar-encoding.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/opentelemetry-specification/HEAD/oteps/0156-columnar-encoding.md -------------------------------------------------------------------------------- /oteps/0178-mapping-to-otlp-anyvalue.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/opentelemetry-specification/HEAD/oteps/0178-mapping-to-otlp-anyvalue.md -------------------------------------------------------------------------------- /oteps/0182-otlp-remote-parent.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/opentelemetry-specification/HEAD/oteps/0182-otlp-remote-parent.md -------------------------------------------------------------------------------- /oteps/0199-support-elastic-common-schema-in-opentelemetry.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/opentelemetry-specification/HEAD/oteps/0199-support-elastic-common-schema-in-opentelemetry.md -------------------------------------------------------------------------------- /oteps/0201-scope-attributes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/opentelemetry-specification/HEAD/oteps/0201-scope-attributes.md -------------------------------------------------------------------------------- /oteps/0202-events-and-logs-api.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/opentelemetry-specification/HEAD/oteps/0202-events-and-logs-api.md -------------------------------------------------------------------------------- /oteps/0225-configuration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/opentelemetry-specification/HEAD/oteps/0225-configuration.md -------------------------------------------------------------------------------- /oteps/0227-separate-semantic-conventions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/opentelemetry-specification/HEAD/oteps/0227-separate-semantic-conventions.md -------------------------------------------------------------------------------- /oteps/0232-maturity-of-otel.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/opentelemetry-specification/HEAD/oteps/0232-maturity-of-otel.md -------------------------------------------------------------------------------- /oteps/0243-app-telemetry-schema-vision-roadmap.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/opentelemetry-specification/HEAD/oteps/0243-app-telemetry-schema-vision-roadmap.md -------------------------------------------------------------------------------- /oteps/0258-env-context-baggage-carriers.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/opentelemetry-specification/HEAD/oteps/0258-env-context-baggage-carriers.md -------------------------------------------------------------------------------- /oteps/0265-event-vision.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/opentelemetry-specification/HEAD/oteps/0265-event-vision.md -------------------------------------------------------------------------------- /oteps/0266-move-oteps-to-spec.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/opentelemetry-specification/HEAD/oteps/0266-move-oteps-to-spec.md -------------------------------------------------------------------------------- /oteps/4430-span-event-api-deprecation-plan.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/opentelemetry-specification/HEAD/oteps/4430-span-event-api-deprecation-plan.md -------------------------------------------------------------------------------- /oteps/4485-extending-attributes-to-support-complex-values.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/opentelemetry-specification/HEAD/oteps/4485-extending-attributes-to-support-complex-values.md -------------------------------------------------------------------------------- /oteps/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/opentelemetry-specification/HEAD/oteps/README.md -------------------------------------------------------------------------------- /oteps/assets/0225-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/opentelemetry-specification/HEAD/oteps/assets/0225-config.yaml -------------------------------------------------------------------------------- /oteps/assets/0225-schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/opentelemetry-specification/HEAD/oteps/assets/0225-schema.json -------------------------------------------------------------------------------- /oteps/entities/0256-entities-data-model.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/opentelemetry-specification/HEAD/oteps/entities/0256-entities-data-model.md -------------------------------------------------------------------------------- /oteps/entities/0264-resource-and-entities.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/opentelemetry-specification/HEAD/oteps/entities/0264-resource-and-entities.md -------------------------------------------------------------------------------- /oteps/experimental/0121-config-service.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/opentelemetry-specification/HEAD/oteps/experimental/0121-config-service.md -------------------------------------------------------------------------------- /oteps/images/otlp-client-server.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/opentelemetry-specification/HEAD/oteps/images/otlp-client-server.png -------------------------------------------------------------------------------- /oteps/images/otlp-concurrent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/opentelemetry-specification/HEAD/oteps/images/otlp-concurrent.png -------------------------------------------------------------------------------- /oteps/images/otlp-multi-destination.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/opentelemetry-specification/HEAD/oteps/images/otlp-multi-destination.png -------------------------------------------------------------------------------- /oteps/images/otlp-request-response.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/opentelemetry-specification/HEAD/oteps/images/otlp-request-response.png -------------------------------------------------------------------------------- /oteps/images/otlp-sequential.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/opentelemetry-specification/HEAD/oteps/images/otlp-sequential.png -------------------------------------------------------------------------------- /oteps/img/0066_context_propagation_details.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/opentelemetry-specification/HEAD/oteps/img/0066_context_propagation_details.png -------------------------------------------------------------------------------- /oteps/img/0066_context_propagation_overview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/opentelemetry-specification/HEAD/oteps/img/0066_context_propagation_overview.png -------------------------------------------------------------------------------- /oteps/img/0143_api_lifecycle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/opentelemetry-specification/HEAD/oteps/img/0143_api_lifecycle.png -------------------------------------------------------------------------------- /oteps/img/0143_cross_cutting.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/opentelemetry-specification/HEAD/oteps/img/0143_cross_cutting.png -------------------------------------------------------------------------------- /oteps/img/0143_long_term.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/opentelemetry-specification/HEAD/oteps/img/0143_long_term.png -------------------------------------------------------------------------------- /oteps/img/0152-collector.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/opentelemetry-specification/HEAD/oteps/img/0152-collector.png -------------------------------------------------------------------------------- /oteps/img/0152-otel-schema.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/opentelemetry-specification/HEAD/oteps/img/0152-otel-schema.png -------------------------------------------------------------------------------- /oteps/img/0152-query-translate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/opentelemetry-specification/HEAD/oteps/img/0152-query-translate.png -------------------------------------------------------------------------------- /oteps/img/0152-source-and-backend.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/opentelemetry-specification/HEAD/oteps/img/0152-source-and-backend.png -------------------------------------------------------------------------------- /oteps/img/0156-arrow-ecosystem.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/opentelemetry-specification/HEAD/oteps/img/0156-arrow-ecosystem.svg -------------------------------------------------------------------------------- /oteps/img/0156-resource-events.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/opentelemetry-specification/HEAD/oteps/img/0156-resource-events.svg -------------------------------------------------------------------------------- /oteps/img/0156_All trials.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/opentelemetry-specification/HEAD/oteps/img/0156_All trials.png -------------------------------------------------------------------------------- /oteps/img/0156_Best trials.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/opentelemetry-specification/HEAD/oteps/img/0156_Best trials.png -------------------------------------------------------------------------------- /oteps/img/0156_OTEL - Arrow IPC.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/opentelemetry-specification/HEAD/oteps/img/0156_OTEL - Arrow IPC.png -------------------------------------------------------------------------------- /oteps/img/0156_OTEL - HowToUseArrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/opentelemetry-specification/HEAD/oteps/img/0156_OTEL - HowToUseArrow.png -------------------------------------------------------------------------------- /oteps/img/0156_OTEL - ProtocolSeqDiagram.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/opentelemetry-specification/HEAD/oteps/img/0156_OTEL - ProtocolSeqDiagram.png -------------------------------------------------------------------------------- /oteps/img/0156_OTEL - Row vs Column.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/opentelemetry-specification/HEAD/oteps/img/0156_OTEL - Row vs Column.png -------------------------------------------------------------------------------- /oteps/img/0156_OTEL-Metric-Model.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/opentelemetry-specification/HEAD/oteps/img/0156_OTEL-Metric-Model.png -------------------------------------------------------------------------------- /oteps/img/0156_RecordBatch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/opentelemetry-specification/HEAD/oteps/img/0156_RecordBatch.png -------------------------------------------------------------------------------- /oteps/img/0156_collector_internal_overview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/opentelemetry-specification/HEAD/oteps/img/0156_collector_internal_overview.png -------------------------------------------------------------------------------- /oteps/img/0156_collector_phase_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/opentelemetry-specification/HEAD/oteps/img/0156_collector_phase_2.png -------------------------------------------------------------------------------- /oteps/img/0156_compression_ratio_summary_multivariate_metrics.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/opentelemetry-specification/HEAD/oteps/img/0156_compression_ratio_summary_multivariate_metrics.png -------------------------------------------------------------------------------- /oteps/img/0156_compression_ratio_summary_std_metrics.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/opentelemetry-specification/HEAD/oteps/img/0156_compression_ratio_summary_std_metrics.png -------------------------------------------------------------------------------- /oteps/img/0156_logs_bytes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/opentelemetry-specification/HEAD/oteps/img/0156_logs_bytes.png -------------------------------------------------------------------------------- /oteps/img/0156_logs_schema.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/opentelemetry-specification/HEAD/oteps/img/0156_logs_schema.png -------------------------------------------------------------------------------- /oteps/img/0156_logs_step_times.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/opentelemetry-specification/HEAD/oteps/img/0156_logs_step_times.png -------------------------------------------------------------------------------- /oteps/img/0156_logs_step_times_phase1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/opentelemetry-specification/HEAD/oteps/img/0156_logs_step_times_phase1.png -------------------------------------------------------------------------------- /oteps/img/0156_metrics_schema.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/opentelemetry-specification/HEAD/oteps/img/0156_metrics_schema.png -------------------------------------------------------------------------------- /oteps/img/0156_metrics_small_batches.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/opentelemetry-specification/HEAD/oteps/img/0156_metrics_small_batches.png -------------------------------------------------------------------------------- /oteps/img/0156_metrics_step_times.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/opentelemetry-specification/HEAD/oteps/img/0156_metrics_step_times.png -------------------------------------------------------------------------------- /oteps/img/0156_metrics_step_times_phase1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/opentelemetry-specification/HEAD/oteps/img/0156_metrics_step_times_phase1.png -------------------------------------------------------------------------------- /oteps/img/0156_multivariate_metrics_bytes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/opentelemetry-specification/HEAD/oteps/img/0156_multivariate_metrics_bytes.png -------------------------------------------------------------------------------- /oteps/img/0156_summary.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/opentelemetry-specification/HEAD/oteps/img/0156_summary.png -------------------------------------------------------------------------------- /oteps/img/0156_summary_time_spent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/opentelemetry-specification/HEAD/oteps/img/0156_summary_time_spent.png -------------------------------------------------------------------------------- /oteps/img/0156_traces_schema.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/opentelemetry-specification/HEAD/oteps/img/0156_traces_schema.png -------------------------------------------------------------------------------- /oteps/img/0156_traces_step_times_phase1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/opentelemetry-specification/HEAD/oteps/img/0156_traces_step_times_phase1.png -------------------------------------------------------------------------------- /oteps/img/0156_traffic_reduction_use_case.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/opentelemetry-specification/HEAD/oteps/img/0156_traffic_reduction_use_case.png -------------------------------------------------------------------------------- /oteps/img/0156_univariate_metrics_bytes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/opentelemetry-specification/HEAD/oteps/img/0156_univariate_metrics_bytes.png -------------------------------------------------------------------------------- /oteps/img/0201-scope-multiplexing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/opentelemetry-specification/HEAD/oteps/img/0201-scope-multiplexing.png -------------------------------------------------------------------------------- /oteps/img/0235-sampling-threshold-calculation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/opentelemetry-specification/HEAD/oteps/img/0235-sampling-threshold-calculation.png -------------------------------------------------------------------------------- /oteps/img/0243-otel-weaver-component-schema.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/opentelemetry-specification/HEAD/oteps/img/0243-otel-weaver-component-schema.svg -------------------------------------------------------------------------------- /oteps/img/0243-otel-weaver-concepts.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/opentelemetry-specification/HEAD/oteps/img/0243-otel-weaver-concepts.svg -------------------------------------------------------------------------------- /oteps/img/0243-otel-weaver-dev-strategies.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/opentelemetry-specification/HEAD/oteps/img/0243-otel-weaver-dev-strategies.svg -------------------------------------------------------------------------------- /oteps/img/0243-otel-weaver-hierarchy.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/opentelemetry-specification/HEAD/oteps/img/0243-otel-weaver-hierarchy.svg -------------------------------------------------------------------------------- /oteps/img/0243-otel-weaver-overview.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/opentelemetry-specification/HEAD/oteps/img/0243-otel-weaver-overview.svg -------------------------------------------------------------------------------- /oteps/img/0243-otel-weaver-resolved-schema.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/opentelemetry-specification/HEAD/oteps/img/0243-otel-weaver-resolved-schema.svg -------------------------------------------------------------------------------- /oteps/img/0243-otel-weaver-responsibilities-properties.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/opentelemetry-specification/HEAD/oteps/img/0243-otel-weaver-responsibilities-properties.svg -------------------------------------------------------------------------------- /oteps/img/0243-otel-weaver-use-cases.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/opentelemetry-specification/HEAD/oteps/img/0243-otel-weaver-use-cases.svg -------------------------------------------------------------------------------- /oteps/img/0258-env-context-opentofu-trace.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/opentelemetry-specification/HEAD/oteps/img/0258-env-context-opentofu-trace.png -------------------------------------------------------------------------------- /oteps/img/0258-env-context-opentofu-tracing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/opentelemetry-specification/HEAD/oteps/img/0258-env-context-opentofu-tracing.png -------------------------------------------------------------------------------- /oteps/img/0258-env-context-parent-child-process.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/opentelemetry-specification/HEAD/oteps/img/0258-env-context-parent-child-process.png -------------------------------------------------------------------------------- /oteps/logs/0091-logs-vocabulary.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/opentelemetry-specification/HEAD/oteps/logs/0091-logs-vocabulary.md -------------------------------------------------------------------------------- /oteps/logs/0092-logs-vision.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/opentelemetry-specification/HEAD/oteps/logs/0092-logs-vision.md -------------------------------------------------------------------------------- /oteps/logs/0097-log-data-model.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/opentelemetry-specification/HEAD/oteps/logs/0097-log-data-model.md -------------------------------------------------------------------------------- /oteps/logs/0130-logs-1.0ga-definition.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/opentelemetry-specification/HEAD/oteps/logs/0130-logs-1.0ga-definition.md -------------------------------------------------------------------------------- /oteps/logs/0150-logging-library-sdk.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/opentelemetry-specification/HEAD/oteps/logs/0150-logging-library-sdk.md -------------------------------------------------------------------------------- /oteps/logs/images/otep0150/appender.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/opentelemetry-specification/HEAD/oteps/logs/images/otep0150/appender.png -------------------------------------------------------------------------------- /oteps/logs/images/otep0150/custom-exporter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/opentelemetry-specification/HEAD/oteps/logs/images/otep0150/custom-exporter.png -------------------------------------------------------------------------------- /oteps/logs/images/otep0150/custom-processor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/opentelemetry-specification/HEAD/oteps/logs/images/otep0150/custom-processor.png -------------------------------------------------------------------------------- /oteps/logs/images/otep0150/otlp-file.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/opentelemetry-specification/HEAD/oteps/logs/images/otep0150/otlp-file.png -------------------------------------------------------------------------------- /oteps/metrics/0003-measure-metric-type.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/opentelemetry-specification/HEAD/oteps/metrics/0003-measure-metric-type.md -------------------------------------------------------------------------------- /oteps/metrics/0008-metric-observer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/opentelemetry-specification/HEAD/oteps/metrics/0008-metric-observer.md -------------------------------------------------------------------------------- /oteps/metrics/0009-metric-handles.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/opentelemetry-specification/HEAD/oteps/metrics/0009-metric-handles.md -------------------------------------------------------------------------------- /oteps/metrics/0010-cumulative-to-counter.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/opentelemetry-specification/HEAD/oteps/metrics/0010-cumulative-to-counter.md -------------------------------------------------------------------------------- /oteps/metrics/0049-metric-label-set.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/opentelemetry-specification/HEAD/oteps/metrics/0049-metric-label-set.md -------------------------------------------------------------------------------- /oteps/metrics/0070-metric-bound-instrument.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/opentelemetry-specification/HEAD/oteps/metrics/0070-metric-bound-instrument.md -------------------------------------------------------------------------------- /oteps/metrics/0072-metric-observer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/opentelemetry-specification/HEAD/oteps/metrics/0072-metric-observer.md -------------------------------------------------------------------------------- /oteps/metrics/0080-remove-metric-gauge.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/opentelemetry-specification/HEAD/oteps/metrics/0080-remove-metric-gauge.md -------------------------------------------------------------------------------- /oteps/metrics/0088-metric-instrument-optional-refinements.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/opentelemetry-specification/HEAD/oteps/metrics/0088-metric-instrument-optional-refinements.md -------------------------------------------------------------------------------- /oteps/metrics/0090-remove-labelset-from-metrics-api.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/opentelemetry-specification/HEAD/oteps/metrics/0090-remove-labelset-from-metrics-api.md -------------------------------------------------------------------------------- /oteps/metrics/0098-metric-instruments-explained.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/opentelemetry-specification/HEAD/oteps/metrics/0098-metric-instruments-explained.md -------------------------------------------------------------------------------- /oteps/metrics/0108-naming-guidelines.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/opentelemetry-specification/HEAD/oteps/metrics/0108-naming-guidelines.md -------------------------------------------------------------------------------- /oteps/metrics/0113-exemplars.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/opentelemetry-specification/HEAD/oteps/metrics/0113-exemplars.md -------------------------------------------------------------------------------- /oteps/metrics/0126-Configurable-Metric-Aggregations.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/opentelemetry-specification/HEAD/oteps/metrics/0126-Configurable-Metric-Aggregations.md -------------------------------------------------------------------------------- /oteps/metrics/0131-otlp-export-behavior.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/opentelemetry-specification/HEAD/oteps/metrics/0131-otlp-export-behavior.md -------------------------------------------------------------------------------- /oteps/metrics/0146-metrics-prototype-scenarios.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/opentelemetry-specification/HEAD/oteps/metrics/0146-metrics-prototype-scenarios.md -------------------------------------------------------------------------------- /oteps/profiles/0212-profiling-vision.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/opentelemetry-specification/HEAD/oteps/profiles/0212-profiling-vision.md -------------------------------------------------------------------------------- /oteps/profiles/0239-profiles-data-model.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/opentelemetry-specification/HEAD/oteps/profiles/0239-profiles-data-model.md -------------------------------------------------------------------------------- /oteps/profiles/images/otep0239/profiles-data-model.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/opentelemetry-specification/HEAD/oteps/profiles/images/otep0239/profiles-data-model.png -------------------------------------------------------------------------------- /oteps/trace/0002-remove-spandata.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/opentelemetry-specification/HEAD/oteps/trace/0002-remove-spandata.md -------------------------------------------------------------------------------- /oteps/trace/0006-sampling.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/opentelemetry-specification/HEAD/oteps/trace/0006-sampling.md -------------------------------------------------------------------------------- /oteps/trace/0059-otlp-trace-data-format.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/opentelemetry-specification/HEAD/oteps/trace/0059-otlp-trace-data-format.md -------------------------------------------------------------------------------- /oteps/trace/0136-error_flagging.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/opentelemetry-specification/HEAD/oteps/trace/0136-error_flagging.md -------------------------------------------------------------------------------- /oteps/trace/0168-sampling-propagation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/opentelemetry-specification/HEAD/oteps/trace/0168-sampling-propagation.md -------------------------------------------------------------------------------- /oteps/trace/0170-sampling-probability.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/opentelemetry-specification/HEAD/oteps/trace/0170-sampling-probability.md -------------------------------------------------------------------------------- /oteps/trace/0173-messaging-semantic-conventions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/opentelemetry-specification/HEAD/oteps/trace/0173-messaging-semantic-conventions.md -------------------------------------------------------------------------------- /oteps/trace/0174-http-semantic-conventions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/opentelemetry-specification/HEAD/oteps/trace/0174-http-semantic-conventions.md -------------------------------------------------------------------------------- /oteps/trace/0205-messaging-semantic-conventions-context-propagation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/opentelemetry-specification/HEAD/oteps/trace/0205-messaging-semantic-conventions-context-propagation.md -------------------------------------------------------------------------------- /oteps/trace/0220-messaging-semantic-conventions-span-structure.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/opentelemetry-specification/HEAD/oteps/trace/0220-messaging-semantic-conventions-span-structure.md -------------------------------------------------------------------------------- /oteps/trace/0235-sampling-threshold-in-trace-state.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/opentelemetry-specification/HEAD/oteps/trace/0235-sampling-threshold-in-trace-state.md -------------------------------------------------------------------------------- /oteps/trace/0250-Composite_Samplers.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/opentelemetry-specification/HEAD/oteps/trace/0250-Composite_Samplers.md -------------------------------------------------------------------------------- /oteps/trace/4673-experimental-probability-sampling.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/opentelemetry-specification/HEAD/oteps/trace/4673-experimental-probability-sampling.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/opentelemetry-specification/HEAD/package.json -------------------------------------------------------------------------------- /schemas/1.10.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/opentelemetry-specification/HEAD/schemas/1.10.0 -------------------------------------------------------------------------------- /schemas/1.11.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/opentelemetry-specification/HEAD/schemas/1.11.0 -------------------------------------------------------------------------------- /schemas/1.12.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/opentelemetry-specification/HEAD/schemas/1.12.0 -------------------------------------------------------------------------------- /schemas/1.13.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/opentelemetry-specification/HEAD/schemas/1.13.0 -------------------------------------------------------------------------------- /schemas/1.14.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/opentelemetry-specification/HEAD/schemas/1.14.0 -------------------------------------------------------------------------------- /schemas/1.15.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/opentelemetry-specification/HEAD/schemas/1.15.0 -------------------------------------------------------------------------------- /schemas/1.16.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/opentelemetry-specification/HEAD/schemas/1.16.0 -------------------------------------------------------------------------------- /schemas/1.17.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/opentelemetry-specification/HEAD/schemas/1.17.0 -------------------------------------------------------------------------------- /schemas/1.18.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/opentelemetry-specification/HEAD/schemas/1.18.0 -------------------------------------------------------------------------------- /schemas/1.19.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/opentelemetry-specification/HEAD/schemas/1.19.0 -------------------------------------------------------------------------------- /schemas/1.20.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/opentelemetry-specification/HEAD/schemas/1.20.0 -------------------------------------------------------------------------------- /schemas/1.21.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/opentelemetry-specification/HEAD/schemas/1.21.0 -------------------------------------------------------------------------------- /schemas/1.4.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/opentelemetry-specification/HEAD/schemas/1.4.0 -------------------------------------------------------------------------------- /schemas/1.5.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/opentelemetry-specification/HEAD/schemas/1.5.0 -------------------------------------------------------------------------------- /schemas/1.6.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/opentelemetry-specification/HEAD/schemas/1.6.1 -------------------------------------------------------------------------------- /schemas/1.7.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/opentelemetry-specification/HEAD/schemas/1.7.0 -------------------------------------------------------------------------------- /schemas/1.8.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/opentelemetry-specification/HEAD/schemas/1.8.0 -------------------------------------------------------------------------------- /schemas/1.9.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/opentelemetry-specification/HEAD/schemas/1.9.0 -------------------------------------------------------------------------------- /spec-compliance-matrix.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/opentelemetry-specification/HEAD/spec-compliance-matrix.md -------------------------------------------------------------------------------- /spec-compliance-matrix/cpp.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/opentelemetry-specification/HEAD/spec-compliance-matrix/cpp.yaml -------------------------------------------------------------------------------- /spec-compliance-matrix/dotnet.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/opentelemetry-specification/HEAD/spec-compliance-matrix/dotnet.yaml -------------------------------------------------------------------------------- /spec-compliance-matrix/erlang.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/opentelemetry-specification/HEAD/spec-compliance-matrix/erlang.yaml -------------------------------------------------------------------------------- /spec-compliance-matrix/go.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/opentelemetry-specification/HEAD/spec-compliance-matrix/go.yaml -------------------------------------------------------------------------------- /spec-compliance-matrix/java.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/opentelemetry-specification/HEAD/spec-compliance-matrix/java.yaml -------------------------------------------------------------------------------- /spec-compliance-matrix/js.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/opentelemetry-specification/HEAD/spec-compliance-matrix/js.yaml -------------------------------------------------------------------------------- /spec-compliance-matrix/php.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/opentelemetry-specification/HEAD/spec-compliance-matrix/php.yaml -------------------------------------------------------------------------------- /spec-compliance-matrix/python.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/opentelemetry-specification/HEAD/spec-compliance-matrix/python.yaml -------------------------------------------------------------------------------- /spec-compliance-matrix/ruby.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/opentelemetry-specification/HEAD/spec-compliance-matrix/ruby.yaml -------------------------------------------------------------------------------- /spec-compliance-matrix/rust.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/opentelemetry-specification/HEAD/spec-compliance-matrix/rust.yaml -------------------------------------------------------------------------------- /spec-compliance-matrix/swift.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/opentelemetry-specification/HEAD/spec-compliance-matrix/swift.yaml -------------------------------------------------------------------------------- /spec-compliance-matrix/template.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/opentelemetry-specification/HEAD/spec-compliance-matrix/template.yaml -------------------------------------------------------------------------------- /specification/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/opentelemetry-specification/HEAD/specification/README.md -------------------------------------------------------------------------------- /specification/baggage/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/opentelemetry-specification/HEAD/specification/baggage/README.md -------------------------------------------------------------------------------- /specification/baggage/api.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/opentelemetry-specification/HEAD/specification/baggage/api.md -------------------------------------------------------------------------------- /specification/common/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/opentelemetry-specification/HEAD/specification/common/README.md -------------------------------------------------------------------------------- /specification/common/attribute-naming.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/opentelemetry-specification/HEAD/specification/common/attribute-naming.md -------------------------------------------------------------------------------- /specification/common/attribute-requirement-level.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/opentelemetry-specification/HEAD/specification/common/attribute-requirement-level.md -------------------------------------------------------------------------------- /specification/common/attribute-type-mapping.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/opentelemetry-specification/HEAD/specification/common/attribute-type-mapping.md -------------------------------------------------------------------------------- /specification/common/instrumentation-scope.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/opentelemetry-specification/HEAD/specification/common/instrumentation-scope.md -------------------------------------------------------------------------------- /specification/common/mapping-to-non-otlp.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/opentelemetry-specification/HEAD/specification/common/mapping-to-non-otlp.md -------------------------------------------------------------------------------- /specification/compatibility/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/opentelemetry-specification/HEAD/specification/compatibility/README.md -------------------------------------------------------------------------------- /specification/compatibility/logging_trace_context.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/opentelemetry-specification/HEAD/specification/compatibility/logging_trace_context.md -------------------------------------------------------------------------------- /specification/compatibility/opencensus.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/opentelemetry-specification/HEAD/specification/compatibility/opencensus.md -------------------------------------------------------------------------------- /specification/compatibility/opentracing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/opentelemetry-specification/HEAD/specification/compatibility/opentracing.md -------------------------------------------------------------------------------- /specification/compatibility/prometheus_and_openmetrics.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/opentelemetry-specification/HEAD/specification/compatibility/prometheus_and_openmetrics.md -------------------------------------------------------------------------------- /specification/configuration/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/opentelemetry-specification/HEAD/specification/configuration/README.md -------------------------------------------------------------------------------- /specification/configuration/api.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/opentelemetry-specification/HEAD/specification/configuration/api.md -------------------------------------------------------------------------------- /specification/configuration/data-model.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/opentelemetry-specification/HEAD/specification/configuration/data-model.md -------------------------------------------------------------------------------- /specification/configuration/sdk-environment-variables.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/opentelemetry-specification/HEAD/specification/configuration/sdk-environment-variables.md -------------------------------------------------------------------------------- /specification/configuration/sdk.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/opentelemetry-specification/HEAD/specification/configuration/sdk.md -------------------------------------------------------------------------------- /specification/context/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/opentelemetry-specification/HEAD/specification/context/README.md -------------------------------------------------------------------------------- /specification/context/api-propagators.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/opentelemetry-specification/HEAD/specification/context/api-propagators.md -------------------------------------------------------------------------------- /specification/context/env-carriers.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/opentelemetry-specification/HEAD/specification/context/env-carriers.md -------------------------------------------------------------------------------- /specification/document-status.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/opentelemetry-specification/HEAD/specification/document-status.md -------------------------------------------------------------------------------- /specification/entities/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/opentelemetry-specification/HEAD/specification/entities/README.md -------------------------------------------------------------------------------- /specification/entities/data-model.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/opentelemetry-specification/HEAD/specification/entities/data-model.md -------------------------------------------------------------------------------- /specification/entities/entity-propagation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/opentelemetry-specification/HEAD/specification/entities/entity-propagation.md -------------------------------------------------------------------------------- /specification/error-handling.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/opentelemetry-specification/HEAD/specification/error-handling.md -------------------------------------------------------------------------------- /specification/glossary.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/opentelemetry-specification/HEAD/specification/glossary.md -------------------------------------------------------------------------------- /specification/library-guidelines.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/opentelemetry-specification/HEAD/specification/library-guidelines.md -------------------------------------------------------------------------------- /specification/library-layout.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/opentelemetry-specification/HEAD/specification/library-layout.md -------------------------------------------------------------------------------- /specification/logs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/opentelemetry-specification/HEAD/specification/logs/README.md -------------------------------------------------------------------------------- /specification/logs/api.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/opentelemetry-specification/HEAD/specification/logs/api.md -------------------------------------------------------------------------------- /specification/logs/data-model-appendix.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/opentelemetry-specification/HEAD/specification/logs/data-model-appendix.md -------------------------------------------------------------------------------- /specification/logs/data-model.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/opentelemetry-specification/HEAD/specification/logs/data-model.md -------------------------------------------------------------------------------- /specification/logs/img/app-to-file-logs-fb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/opentelemetry-specification/HEAD/specification/logs/img/app-to-file-logs-fb.png -------------------------------------------------------------------------------- /specification/logs/img/app-to-file-logs-otelcol.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/opentelemetry-specification/HEAD/specification/logs/img/app-to-file-logs-otelcol.png -------------------------------------------------------------------------------- /specification/logs/img/app-to-otelcol.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/opentelemetry-specification/HEAD/specification/logs/img/app-to-otelcol.png -------------------------------------------------------------------------------- /specification/logs/img/appender.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/opentelemetry-specification/HEAD/specification/logs/img/appender.png -------------------------------------------------------------------------------- /specification/logs/img/application-api-sdk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/opentelemetry-specification/HEAD/specification/logs/img/application-api-sdk.png -------------------------------------------------------------------------------- /specification/logs/img/separate-collection.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/opentelemetry-specification/HEAD/specification/logs/img/separate-collection.png -------------------------------------------------------------------------------- /specification/logs/img/unified-collection.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/opentelemetry-specification/HEAD/specification/logs/img/unified-collection.png -------------------------------------------------------------------------------- /specification/logs/noop.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/opentelemetry-specification/HEAD/specification/logs/noop.md -------------------------------------------------------------------------------- /specification/logs/sdk.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/opentelemetry-specification/HEAD/specification/logs/sdk.md -------------------------------------------------------------------------------- /specification/logs/sdk_exporters/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/opentelemetry-specification/HEAD/specification/logs/sdk_exporters/README.md -------------------------------------------------------------------------------- /specification/logs/sdk_exporters/stdout.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/opentelemetry-specification/HEAD/specification/logs/sdk_exporters/stdout.md -------------------------------------------------------------------------------- /specification/logs/supplementary-guidelines.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/opentelemetry-specification/HEAD/specification/logs/supplementary-guidelines.md -------------------------------------------------------------------------------- /specification/metrics/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/opentelemetry-specification/HEAD/specification/metrics/README.md -------------------------------------------------------------------------------- /specification/metrics/api.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/opentelemetry-specification/HEAD/specification/metrics/api.md -------------------------------------------------------------------------------- /specification/metrics/data-model.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/opentelemetry-specification/HEAD/specification/metrics/data-model.md -------------------------------------------------------------------------------- /specification/metrics/img/accumulator-detail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/opentelemetry-specification/HEAD/specification/metrics/img/accumulator-detail.png -------------------------------------------------------------------------------- /specification/metrics/img/metrics-sdk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/opentelemetry-specification/HEAD/specification/metrics/img/metrics-sdk.png -------------------------------------------------------------------------------- /specification/metrics/img/model-cumulative-sum.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/opentelemetry-specification/HEAD/specification/metrics/img/model-cumulative-sum.png -------------------------------------------------------------------------------- /specification/metrics/img/model-delta-histogram.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/opentelemetry-specification/HEAD/specification/metrics/img/model-delta-histogram.png -------------------------------------------------------------------------------- /specification/metrics/img/model-delta-sum.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/opentelemetry-specification/HEAD/specification/metrics/img/model-delta-sum.png -------------------------------------------------------------------------------- /specification/metrics/img/model-event-layer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/opentelemetry-specification/HEAD/specification/metrics/img/model-event-layer.png -------------------------------------------------------------------------------- /specification/metrics/img/model-gauge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/opentelemetry-specification/HEAD/specification/metrics/img/model-gauge.png -------------------------------------------------------------------------------- /specification/metrics/img/model-layers-stream.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/opentelemetry-specification/HEAD/specification/metrics/img/model-layers-stream.png -------------------------------------------------------------------------------- /specification/metrics/img/model-layers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/opentelemetry-specification/HEAD/specification/metrics/img/model-layers.png -------------------------------------------------------------------------------- /specification/metrics/metric-requirement-level.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/opentelemetry-specification/HEAD/specification/metrics/metric-requirement-level.md -------------------------------------------------------------------------------- /specification/metrics/noop.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/opentelemetry-specification/HEAD/specification/metrics/noop.md -------------------------------------------------------------------------------- /specification/metrics/sdk.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/opentelemetry-specification/HEAD/specification/metrics/sdk.md -------------------------------------------------------------------------------- /specification/metrics/sdk_exporters/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/opentelemetry-specification/HEAD/specification/metrics/sdk_exporters/README.md -------------------------------------------------------------------------------- /specification/metrics/sdk_exporters/in-memory.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/opentelemetry-specification/HEAD/specification/metrics/sdk_exporters/in-memory.md -------------------------------------------------------------------------------- /specification/metrics/sdk_exporters/otlp.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/opentelemetry-specification/HEAD/specification/metrics/sdk_exporters/otlp.md -------------------------------------------------------------------------------- /specification/metrics/sdk_exporters/prometheus.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/opentelemetry-specification/HEAD/specification/metrics/sdk_exporters/prometheus.md -------------------------------------------------------------------------------- /specification/metrics/sdk_exporters/stdout.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/opentelemetry-specification/HEAD/specification/metrics/sdk_exporters/stdout.md -------------------------------------------------------------------------------- /specification/metrics/supplementary-guidelines.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/opentelemetry-specification/HEAD/specification/metrics/supplementary-guidelines.md -------------------------------------------------------------------------------- /specification/overview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/opentelemetry-specification/HEAD/specification/overview.md -------------------------------------------------------------------------------- /specification/performance-benchmark.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/opentelemetry-specification/HEAD/specification/performance-benchmark.md -------------------------------------------------------------------------------- /specification/performance.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/opentelemetry-specification/HEAD/specification/performance.md -------------------------------------------------------------------------------- /specification/profiles/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/opentelemetry-specification/HEAD/specification/profiles/README.md -------------------------------------------------------------------------------- /specification/profiles/mappings.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/opentelemetry-specification/HEAD/specification/profiles/mappings.md -------------------------------------------------------------------------------- /specification/profiles/pprof.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/opentelemetry-specification/HEAD/specification/profiles/pprof.md -------------------------------------------------------------------------------- /specification/protocol/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/opentelemetry-specification/HEAD/specification/protocol/README.md -------------------------------------------------------------------------------- /specification/protocol/design-goals.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/opentelemetry-specification/HEAD/specification/protocol/design-goals.md -------------------------------------------------------------------------------- /specification/protocol/exporter.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/opentelemetry-specification/HEAD/specification/protocol/exporter.md -------------------------------------------------------------------------------- /specification/protocol/file-exporter.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/opentelemetry-specification/HEAD/specification/protocol/file-exporter.md -------------------------------------------------------------------------------- /specification/protocol/img/otlp-client-server.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/opentelemetry-specification/HEAD/specification/protocol/img/otlp-client-server.png -------------------------------------------------------------------------------- /specification/protocol/img/otlp-concurrent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/opentelemetry-specification/HEAD/specification/protocol/img/otlp-concurrent.png -------------------------------------------------------------------------------- /specification/protocol/img/otlp-multi-destination.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/opentelemetry-specification/HEAD/specification/protocol/img/otlp-multi-destination.png -------------------------------------------------------------------------------- /specification/protocol/img/otlp-request-response.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/opentelemetry-specification/HEAD/specification/protocol/img/otlp-request-response.png -------------------------------------------------------------------------------- /specification/protocol/img/otlp-sequential.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/opentelemetry-specification/HEAD/specification/protocol/img/otlp-sequential.png -------------------------------------------------------------------------------- /specification/protocol/otlp.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/opentelemetry-specification/HEAD/specification/protocol/otlp.md -------------------------------------------------------------------------------- /specification/protocol/requirements.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/opentelemetry-specification/HEAD/specification/protocol/requirements.md -------------------------------------------------------------------------------- /specification/resource/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/opentelemetry-specification/HEAD/specification/resource/README.md -------------------------------------------------------------------------------- /specification/resource/data-model.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/opentelemetry-specification/HEAD/specification/resource/data-model.md -------------------------------------------------------------------------------- /specification/resource/sdk.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/opentelemetry-specification/HEAD/specification/resource/sdk.md -------------------------------------------------------------------------------- /specification/schemas/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/opentelemetry-specification/HEAD/specification/schemas/README.md -------------------------------------------------------------------------------- /specification/schemas/file_format_v1.0.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/opentelemetry-specification/HEAD/specification/schemas/file_format_v1.0.0.md -------------------------------------------------------------------------------- /specification/schemas/file_format_v1.1.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/opentelemetry-specification/HEAD/specification/schemas/file_format_v1.1.0.md -------------------------------------------------------------------------------- /specification/schemas/img/0152-collector.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/opentelemetry-specification/HEAD/specification/schemas/img/0152-collector.png -------------------------------------------------------------------------------- /specification/schemas/img/0152-otel-schema.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/opentelemetry-specification/HEAD/specification/schemas/img/0152-otel-schema.png -------------------------------------------------------------------------------- /specification/schemas/img/0152-query-translate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/opentelemetry-specification/HEAD/specification/schemas/img/0152-query-translate.png -------------------------------------------------------------------------------- /specification/schemas/img/0152-source-and-backend.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/opentelemetry-specification/HEAD/specification/schemas/img/0152-source-and-backend.png -------------------------------------------------------------------------------- /specification/semantic-conventions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/opentelemetry-specification/HEAD/specification/semantic-conventions.md -------------------------------------------------------------------------------- /specification/specification-principles.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/opentelemetry-specification/HEAD/specification/specification-principles.md -------------------------------------------------------------------------------- /specification/telemetry-stability.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/opentelemetry-specification/HEAD/specification/telemetry-stability.md -------------------------------------------------------------------------------- /specification/trace/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/opentelemetry-specification/HEAD/specification/trace/README.md -------------------------------------------------------------------------------- /specification/trace/api.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/opentelemetry-specification/HEAD/specification/trace/api.md -------------------------------------------------------------------------------- /specification/trace/exceptions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/opentelemetry-specification/HEAD/specification/trace/exceptions.md -------------------------------------------------------------------------------- /specification/trace/sdk.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/opentelemetry-specification/HEAD/specification/trace/sdk.md -------------------------------------------------------------------------------- /specification/trace/sdk_exporters/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/opentelemetry-specification/HEAD/specification/trace/sdk_exporters/README.md -------------------------------------------------------------------------------- /specification/trace/sdk_exporters/stdout.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/opentelemetry-specification/HEAD/specification/trace/sdk_exporters/stdout.md -------------------------------------------------------------------------------- /specification/trace/sdk_exporters/zipkin.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/opentelemetry-specification/HEAD/specification/trace/sdk_exporters/zipkin.md -------------------------------------------------------------------------------- /specification/trace/tracestate-handling.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/opentelemetry-specification/HEAD/specification/trace/tracestate-handling.md -------------------------------------------------------------------------------- /specification/trace/tracestate-probability-sampling.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/opentelemetry-specification/HEAD/specification/trace/tracestate-probability-sampling.md -------------------------------------------------------------------------------- /specification/upgrading.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/opentelemetry-specification/HEAD/specification/upgrading.md -------------------------------------------------------------------------------- /specification/vendors.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/opentelemetry-specification/HEAD/specification/vendors.md -------------------------------------------------------------------------------- /specification/versioning-and-stability.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/opentelemetry-specification/HEAD/specification/versioning-and-stability.md -------------------------------------------------------------------------------- /supplementary-guidelines/compatibility/aws.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/opentelemetry-specification/HEAD/supplementary-guidelines/compatibility/aws.md --------------------------------------------------------------------------------