├── .circleci └── config.yml ├── .github └── workflows │ └── build.yml ├── .gitignore ├── .markdownlint.yaml ├── .vscode └── settings.json ├── 0000-template.md ├── CODEOWNERS ├── LICENSE ├── Makefile ├── README.md ├── go.mod ├── go.sum ├── internal └── tools.go └── text ├── 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 ├── 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 /.circleci/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/oteps/HEAD/.circleci/config.yml -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/oteps/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/oteps/HEAD/.gitignore -------------------------------------------------------------------------------- /.markdownlint.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/oteps/HEAD/.markdownlint.yaml -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/oteps/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /0000-template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/oteps/HEAD/0000-template.md -------------------------------------------------------------------------------- /CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/oteps/HEAD/CODEOWNERS -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/oteps/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/oteps/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/oteps/HEAD/README.md -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/oteps/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/oteps/HEAD/go.sum -------------------------------------------------------------------------------- /internal/tools.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/oteps/HEAD/internal/tools.go -------------------------------------------------------------------------------- /text/0001-telemetry-without-manual-instrumentation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/oteps/HEAD/text/0001-telemetry-without-manual-instrumentation.md -------------------------------------------------------------------------------- /text/0005-global-init.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/oteps/HEAD/text/0005-global-init.md -------------------------------------------------------------------------------- /text/0007-no-out-of-band-reporting.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/oteps/HEAD/text/0007-no-out-of-band-reporting.md -------------------------------------------------------------------------------- /text/0016-named-tracers.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/oteps/HEAD/text/0016-named-tracers.md -------------------------------------------------------------------------------- /text/0035-opentelemetry-protocol.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/oteps/HEAD/text/0035-opentelemetry-protocol.md -------------------------------------------------------------------------------- /text/0038-version-semantic-attribute.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/oteps/HEAD/text/0038-version-semantic-attribute.md -------------------------------------------------------------------------------- /text/0066-separate-context-propagation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/oteps/HEAD/text/0066-separate-context-propagation.md -------------------------------------------------------------------------------- /text/0083-component.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/oteps/HEAD/text/0083-component.md -------------------------------------------------------------------------------- /text/0099-otlp-http.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/oteps/HEAD/text/0099-otlp-http.md -------------------------------------------------------------------------------- /text/0110-z-pages.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/oteps/HEAD/text/0110-z-pages.md -------------------------------------------------------------------------------- /text/0111-auto-resource-detection.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/oteps/HEAD/text/0111-auto-resource-detection.md -------------------------------------------------------------------------------- /text/0119-standard-system-metrics.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/oteps/HEAD/text/0119-standard-system-metrics.md -------------------------------------------------------------------------------- /text/0122-otlp-http-json.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/oteps/HEAD/text/0122-otlp-http-json.md -------------------------------------------------------------------------------- /text/0143-versioning-and-stability.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/oteps/HEAD/text/0143-versioning-and-stability.md -------------------------------------------------------------------------------- /text/0147-upgrade-procedures.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/oteps/HEAD/text/0147-upgrade-procedures.md -------------------------------------------------------------------------------- /text/0149-exponential-histogram.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/oteps/HEAD/text/0149-exponential-histogram.md -------------------------------------------------------------------------------- /text/0152-telemetry-schemas.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/oteps/HEAD/text/0152-telemetry-schemas.md -------------------------------------------------------------------------------- /text/0155-external-modules.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/oteps/HEAD/text/0155-external-modules.md -------------------------------------------------------------------------------- /text/0156-columnar-encoding.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/oteps/HEAD/text/0156-columnar-encoding.md -------------------------------------------------------------------------------- /text/0178-mapping-to-otlp-anyvalue.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/oteps/HEAD/text/0178-mapping-to-otlp-anyvalue.md -------------------------------------------------------------------------------- /text/0182-otlp-remote-parent.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/oteps/HEAD/text/0182-otlp-remote-parent.md -------------------------------------------------------------------------------- /text/0199-support-elastic-common-schema-in-opentelemetry.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/oteps/HEAD/text/0199-support-elastic-common-schema-in-opentelemetry.md -------------------------------------------------------------------------------- /text/0201-scope-attributes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/oteps/HEAD/text/0201-scope-attributes.md -------------------------------------------------------------------------------- /text/0202-events-and-logs-api.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/oteps/HEAD/text/0202-events-and-logs-api.md -------------------------------------------------------------------------------- /text/0225-configuration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/oteps/HEAD/text/0225-configuration.md -------------------------------------------------------------------------------- /text/0227-separate-semantic-conventions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/oteps/HEAD/text/0227-separate-semantic-conventions.md -------------------------------------------------------------------------------- /text/0232-maturity-of-otel.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/oteps/HEAD/text/0232-maturity-of-otel.md -------------------------------------------------------------------------------- /text/0243-app-telemetry-schema-vision-roadmap.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/oteps/HEAD/text/0243-app-telemetry-schema-vision-roadmap.md -------------------------------------------------------------------------------- /text/0258-env-context-baggage-carriers.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/oteps/HEAD/text/0258-env-context-baggage-carriers.md -------------------------------------------------------------------------------- /text/0265-event-vision.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/oteps/HEAD/text/0265-event-vision.md -------------------------------------------------------------------------------- /text/0266-move-oteps-to-spec.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/oteps/HEAD/text/0266-move-oteps-to-spec.md -------------------------------------------------------------------------------- /text/assets/0225-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/oteps/HEAD/text/assets/0225-config.yaml -------------------------------------------------------------------------------- /text/assets/0225-schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/oteps/HEAD/text/assets/0225-schema.json -------------------------------------------------------------------------------- /text/entities/0256-entities-data-model.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/oteps/HEAD/text/entities/0256-entities-data-model.md -------------------------------------------------------------------------------- /text/entities/0264-resource-and-entities.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/oteps/HEAD/text/entities/0264-resource-and-entities.md -------------------------------------------------------------------------------- /text/experimental/0121-config-service.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/oteps/HEAD/text/experimental/0121-config-service.md -------------------------------------------------------------------------------- /text/images/otlp-client-server.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/oteps/HEAD/text/images/otlp-client-server.png -------------------------------------------------------------------------------- /text/images/otlp-concurrent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/oteps/HEAD/text/images/otlp-concurrent.png -------------------------------------------------------------------------------- /text/images/otlp-multi-destination.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/oteps/HEAD/text/images/otlp-multi-destination.png -------------------------------------------------------------------------------- /text/images/otlp-request-response.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/oteps/HEAD/text/images/otlp-request-response.png -------------------------------------------------------------------------------- /text/images/otlp-sequential.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/oteps/HEAD/text/images/otlp-sequential.png -------------------------------------------------------------------------------- /text/img/0066_context_propagation_details.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/oteps/HEAD/text/img/0066_context_propagation_details.png -------------------------------------------------------------------------------- /text/img/0066_context_propagation_overview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/oteps/HEAD/text/img/0066_context_propagation_overview.png -------------------------------------------------------------------------------- /text/img/0143_api_lifecycle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/oteps/HEAD/text/img/0143_api_lifecycle.png -------------------------------------------------------------------------------- /text/img/0143_cross_cutting.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/oteps/HEAD/text/img/0143_cross_cutting.png -------------------------------------------------------------------------------- /text/img/0143_long_term.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/oteps/HEAD/text/img/0143_long_term.png -------------------------------------------------------------------------------- /text/img/0152-collector.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/oteps/HEAD/text/img/0152-collector.png -------------------------------------------------------------------------------- /text/img/0152-otel-schema.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/oteps/HEAD/text/img/0152-otel-schema.png -------------------------------------------------------------------------------- /text/img/0152-query-translate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/oteps/HEAD/text/img/0152-query-translate.png -------------------------------------------------------------------------------- /text/img/0152-source-and-backend.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/oteps/HEAD/text/img/0152-source-and-backend.png -------------------------------------------------------------------------------- /text/img/0156-arrow-ecosystem.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/oteps/HEAD/text/img/0156-arrow-ecosystem.svg -------------------------------------------------------------------------------- /text/img/0156-resource-events.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/oteps/HEAD/text/img/0156-resource-events.svg -------------------------------------------------------------------------------- /text/img/0156_All trials.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/oteps/HEAD/text/img/0156_All trials.png -------------------------------------------------------------------------------- /text/img/0156_Best trials.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/oteps/HEAD/text/img/0156_Best trials.png -------------------------------------------------------------------------------- /text/img/0156_OTEL - Arrow IPC.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/oteps/HEAD/text/img/0156_OTEL - Arrow IPC.png -------------------------------------------------------------------------------- /text/img/0156_OTEL - HowToUseArrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/oteps/HEAD/text/img/0156_OTEL - HowToUseArrow.png -------------------------------------------------------------------------------- /text/img/0156_OTEL - ProtocolSeqDiagram.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/oteps/HEAD/text/img/0156_OTEL - ProtocolSeqDiagram.png -------------------------------------------------------------------------------- /text/img/0156_OTEL - Row vs Column.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/oteps/HEAD/text/img/0156_OTEL - Row vs Column.png -------------------------------------------------------------------------------- /text/img/0156_OTEL-Metric-Model.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/oteps/HEAD/text/img/0156_OTEL-Metric-Model.png -------------------------------------------------------------------------------- /text/img/0156_RecordBatch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/oteps/HEAD/text/img/0156_RecordBatch.png -------------------------------------------------------------------------------- /text/img/0156_collector_internal_overview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/oteps/HEAD/text/img/0156_collector_internal_overview.png -------------------------------------------------------------------------------- /text/img/0156_collector_phase_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/oteps/HEAD/text/img/0156_collector_phase_2.png -------------------------------------------------------------------------------- /text/img/0156_compression_ratio_summary_multivariate_metrics.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/oteps/HEAD/text/img/0156_compression_ratio_summary_multivariate_metrics.png -------------------------------------------------------------------------------- /text/img/0156_compression_ratio_summary_std_metrics.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/oteps/HEAD/text/img/0156_compression_ratio_summary_std_metrics.png -------------------------------------------------------------------------------- /text/img/0156_logs_bytes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/oteps/HEAD/text/img/0156_logs_bytes.png -------------------------------------------------------------------------------- /text/img/0156_logs_schema.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/oteps/HEAD/text/img/0156_logs_schema.png -------------------------------------------------------------------------------- /text/img/0156_logs_step_times.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/oteps/HEAD/text/img/0156_logs_step_times.png -------------------------------------------------------------------------------- /text/img/0156_logs_step_times_phase1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/oteps/HEAD/text/img/0156_logs_step_times_phase1.png -------------------------------------------------------------------------------- /text/img/0156_metrics_schema.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/oteps/HEAD/text/img/0156_metrics_schema.png -------------------------------------------------------------------------------- /text/img/0156_metrics_small_batches.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/oteps/HEAD/text/img/0156_metrics_small_batches.png -------------------------------------------------------------------------------- /text/img/0156_metrics_step_times.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/oteps/HEAD/text/img/0156_metrics_step_times.png -------------------------------------------------------------------------------- /text/img/0156_metrics_step_times_phase1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/oteps/HEAD/text/img/0156_metrics_step_times_phase1.png -------------------------------------------------------------------------------- /text/img/0156_multivariate_metrics_bytes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/oteps/HEAD/text/img/0156_multivariate_metrics_bytes.png -------------------------------------------------------------------------------- /text/img/0156_summary.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/oteps/HEAD/text/img/0156_summary.png -------------------------------------------------------------------------------- /text/img/0156_summary_time_spent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/oteps/HEAD/text/img/0156_summary_time_spent.png -------------------------------------------------------------------------------- /text/img/0156_traces_schema.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/oteps/HEAD/text/img/0156_traces_schema.png -------------------------------------------------------------------------------- /text/img/0156_traces_step_times_phase1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/oteps/HEAD/text/img/0156_traces_step_times_phase1.png -------------------------------------------------------------------------------- /text/img/0156_traffic_reduction_use_case.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/oteps/HEAD/text/img/0156_traffic_reduction_use_case.png -------------------------------------------------------------------------------- /text/img/0156_univariate_metrics_bytes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/oteps/HEAD/text/img/0156_univariate_metrics_bytes.png -------------------------------------------------------------------------------- /text/img/0201-scope-multiplexing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/oteps/HEAD/text/img/0201-scope-multiplexing.png -------------------------------------------------------------------------------- /text/img/0235-sampling-threshold-calculation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/oteps/HEAD/text/img/0235-sampling-threshold-calculation.png -------------------------------------------------------------------------------- /text/img/0243-otel-weaver-component-schema.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/oteps/HEAD/text/img/0243-otel-weaver-component-schema.svg -------------------------------------------------------------------------------- /text/img/0243-otel-weaver-concepts.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/oteps/HEAD/text/img/0243-otel-weaver-concepts.svg -------------------------------------------------------------------------------- /text/img/0243-otel-weaver-dev-strategies.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/oteps/HEAD/text/img/0243-otel-weaver-dev-strategies.svg -------------------------------------------------------------------------------- /text/img/0243-otel-weaver-hierarchy.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/oteps/HEAD/text/img/0243-otel-weaver-hierarchy.svg -------------------------------------------------------------------------------- /text/img/0243-otel-weaver-overview.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/oteps/HEAD/text/img/0243-otel-weaver-overview.svg -------------------------------------------------------------------------------- /text/img/0243-otel-weaver-resolved-schema.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/oteps/HEAD/text/img/0243-otel-weaver-resolved-schema.svg -------------------------------------------------------------------------------- /text/img/0243-otel-weaver-responsibilities-properties.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/oteps/HEAD/text/img/0243-otel-weaver-responsibilities-properties.svg -------------------------------------------------------------------------------- /text/img/0243-otel-weaver-use-cases.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/oteps/HEAD/text/img/0243-otel-weaver-use-cases.svg -------------------------------------------------------------------------------- /text/img/0258-env-context-opentofu-trace.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/oteps/HEAD/text/img/0258-env-context-opentofu-trace.png -------------------------------------------------------------------------------- /text/img/0258-env-context-opentofu-tracing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/oteps/HEAD/text/img/0258-env-context-opentofu-tracing.png -------------------------------------------------------------------------------- /text/img/0258-env-context-parent-child-process.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/oteps/HEAD/text/img/0258-env-context-parent-child-process.png -------------------------------------------------------------------------------- /text/logs/0091-logs-vocabulary.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/oteps/HEAD/text/logs/0091-logs-vocabulary.md -------------------------------------------------------------------------------- /text/logs/0092-logs-vision.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/oteps/HEAD/text/logs/0092-logs-vision.md -------------------------------------------------------------------------------- /text/logs/0097-log-data-model.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/oteps/HEAD/text/logs/0097-log-data-model.md -------------------------------------------------------------------------------- /text/logs/0130-logs-1.0ga-definition.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/oteps/HEAD/text/logs/0130-logs-1.0ga-definition.md -------------------------------------------------------------------------------- /text/logs/0150-logging-library-sdk.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/oteps/HEAD/text/logs/0150-logging-library-sdk.md -------------------------------------------------------------------------------- /text/logs/images/otep0150/appender.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/oteps/HEAD/text/logs/images/otep0150/appender.png -------------------------------------------------------------------------------- /text/logs/images/otep0150/custom-exporter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/oteps/HEAD/text/logs/images/otep0150/custom-exporter.png -------------------------------------------------------------------------------- /text/logs/images/otep0150/custom-processor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/oteps/HEAD/text/logs/images/otep0150/custom-processor.png -------------------------------------------------------------------------------- /text/logs/images/otep0150/otlp-file.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/oteps/HEAD/text/logs/images/otep0150/otlp-file.png -------------------------------------------------------------------------------- /text/metrics/0003-measure-metric-type.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/oteps/HEAD/text/metrics/0003-measure-metric-type.md -------------------------------------------------------------------------------- /text/metrics/0008-metric-observer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/oteps/HEAD/text/metrics/0008-metric-observer.md -------------------------------------------------------------------------------- /text/metrics/0009-metric-handles.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/oteps/HEAD/text/metrics/0009-metric-handles.md -------------------------------------------------------------------------------- /text/metrics/0010-cumulative-to-counter.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/oteps/HEAD/text/metrics/0010-cumulative-to-counter.md -------------------------------------------------------------------------------- /text/metrics/0049-metric-label-set.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/oteps/HEAD/text/metrics/0049-metric-label-set.md -------------------------------------------------------------------------------- /text/metrics/0070-metric-bound-instrument.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/oteps/HEAD/text/metrics/0070-metric-bound-instrument.md -------------------------------------------------------------------------------- /text/metrics/0072-metric-observer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/oteps/HEAD/text/metrics/0072-metric-observer.md -------------------------------------------------------------------------------- /text/metrics/0080-remove-metric-gauge.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/oteps/HEAD/text/metrics/0080-remove-metric-gauge.md -------------------------------------------------------------------------------- /text/metrics/0088-metric-instrument-optional-refinements.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/oteps/HEAD/text/metrics/0088-metric-instrument-optional-refinements.md -------------------------------------------------------------------------------- /text/metrics/0090-remove-labelset-from-metrics-api.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/oteps/HEAD/text/metrics/0090-remove-labelset-from-metrics-api.md -------------------------------------------------------------------------------- /text/metrics/0098-metric-instruments-explained.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/oteps/HEAD/text/metrics/0098-metric-instruments-explained.md -------------------------------------------------------------------------------- /text/metrics/0108-naming-guidelines.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/oteps/HEAD/text/metrics/0108-naming-guidelines.md -------------------------------------------------------------------------------- /text/metrics/0113-exemplars.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/oteps/HEAD/text/metrics/0113-exemplars.md -------------------------------------------------------------------------------- /text/metrics/0126-Configurable-Metric-Aggregations.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/oteps/HEAD/text/metrics/0126-Configurable-Metric-Aggregations.md -------------------------------------------------------------------------------- /text/metrics/0131-otlp-export-behavior.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/oteps/HEAD/text/metrics/0131-otlp-export-behavior.md -------------------------------------------------------------------------------- /text/metrics/0146-metrics-prototype-scenarios.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/oteps/HEAD/text/metrics/0146-metrics-prototype-scenarios.md -------------------------------------------------------------------------------- /text/profiles/0212-profiling-vision.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/oteps/HEAD/text/profiles/0212-profiling-vision.md -------------------------------------------------------------------------------- /text/profiles/0239-profiles-data-model.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/oteps/HEAD/text/profiles/0239-profiles-data-model.md -------------------------------------------------------------------------------- /text/profiles/images/otep0239/profiles-data-model.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/oteps/HEAD/text/profiles/images/otep0239/profiles-data-model.png -------------------------------------------------------------------------------- /text/trace/0002-remove-spandata.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/oteps/HEAD/text/trace/0002-remove-spandata.md -------------------------------------------------------------------------------- /text/trace/0006-sampling.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/oteps/HEAD/text/trace/0006-sampling.md -------------------------------------------------------------------------------- /text/trace/0059-otlp-trace-data-format.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/oteps/HEAD/text/trace/0059-otlp-trace-data-format.md -------------------------------------------------------------------------------- /text/trace/0136-error_flagging.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/oteps/HEAD/text/trace/0136-error_flagging.md -------------------------------------------------------------------------------- /text/trace/0168-sampling-propagation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/oteps/HEAD/text/trace/0168-sampling-propagation.md -------------------------------------------------------------------------------- /text/trace/0170-sampling-probability.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/oteps/HEAD/text/trace/0170-sampling-probability.md -------------------------------------------------------------------------------- /text/trace/0173-messaging-semantic-conventions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/oteps/HEAD/text/trace/0173-messaging-semantic-conventions.md -------------------------------------------------------------------------------- /text/trace/0174-http-semantic-conventions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/oteps/HEAD/text/trace/0174-http-semantic-conventions.md -------------------------------------------------------------------------------- /text/trace/0205-messaging-semantic-conventions-context-propagation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/oteps/HEAD/text/trace/0205-messaging-semantic-conventions-context-propagation.md -------------------------------------------------------------------------------- /text/trace/0220-messaging-semantic-conventions-span-structure.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/oteps/HEAD/text/trace/0220-messaging-semantic-conventions-span-structure.md -------------------------------------------------------------------------------- /text/trace/0235-sampling-threshold-in-trace-state.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/oteps/HEAD/text/trace/0235-sampling-threshold-in-trace-state.md --------------------------------------------------------------------------------