├── .chloggen ├── 2913.yaml ├── 2957_gcp_agent_engine.yaml ├── CHANGELOG.tmpl ├── TEMPLATE.yaml ├── add_missing_k8s_attributes.yaml ├── config.yaml ├── feat_hetzner_entity.yaml ├── feat_linode_entity.yaml ├── feat_vultr_entity.yaml ├── fix-2880-2.yaml ├── k8s_pod_entity.yaml ├── process_fd.yaml ├── rename_system_linux.yaml ├── rpc-consistent-attributes-metrics-spans.yaml ├── rpc-duration-seconds.yaml ├── rpc-metadata.yaml ├── rpc-status-code.yaml └── rpc-system-name.yaml ├── .editorconfig ├── .gitattributes ├── .github ├── CODEOWNERS ├── ISSUE_TEMPLATE │ ├── bug_report.yaml │ ├── change_proposal.yaml │ └── new-conventions.yaml ├── PULL_REQUEST_TEMPLATE.md ├── copilot-instructions.md ├── renovate.json5 ├── scripts │ ├── link-check.sh │ ├── lychee-config.toml │ ├── prepare-new-issue.sh │ ├── prepare-new-pr.sh │ ├── triage │ │ ├── check-changes-ownership.ts │ │ ├── package-lock.json │ │ ├── package.json │ │ └── utils.ts │ ├── update-spec-repo-links.sh │ └── use-cla-approved-github-bot.sh ├── security-insights.yml └── workflows │ ├── auto-update-spec-repo-links.yml │ ├── build-system-check.yml │ ├── changelog.yml │ ├── check-changes-ownership.yml │ ├── checks.yml │ ├── daily-link-check.yml │ ├── fossa.yml │ ├── generate-registry-area-labels.yml │ ├── ossf-scorecard.yml │ ├── prepare-new-issue.yml │ ├── prepare-new-pr.yml │ ├── prepare-release.yml │ ├── reusable-link-check.yml │ ├── reusable-workflow-notification.yml │ └── stale-pr.yml ├── .gitignore ├── .markdownlint.yaml ├── .markdownlintignore ├── .nvmrc ├── .prettierignore ├── .vscode └── settings.json ├── .yamllint ├── .yamllint-ignore ├── AREAS.md ├── Brewfile ├── CHANGELOG.md ├── CONTRIBUTING.md ├── LICENSE ├── Makefile ├── README.md ├── RELEASING.md ├── areas.yaml ├── dependencies.Dockerfile ├── docs ├── README.md ├── app │ ├── README.md │ └── app-events.md ├── azure │ ├── README.md │ └── azure-events.md ├── browser │ ├── README.md │ └── browser-events.md ├── cicd │ ├── README.md │ ├── cicd-logs.md │ ├── cicd-metrics.md │ └── cicd-spans.md ├── cli │ ├── README.md │ └── cli-spans.md ├── cloud-providers │ ├── README.md │ └── aws-sdk.md ├── cloudevents │ ├── README.md │ └── cloudevents-spans.md ├── db │ ├── README.md │ ├── cassandra.md │ ├── cosmosdb.md │ ├── couchdb.md │ ├── database-metrics.md │ ├── database-spans.md │ ├── dynamodb.md │ ├── elasticsearch.md │ ├── hbase.md │ ├── mariadb.md │ ├── mongodb.md │ ├── mysql.md │ ├── oracledb.md │ ├── postgresql.md │ ├── redis.md │ ├── sql-server.md │ └── sql.md ├── dns │ ├── README.md │ └── dns-metrics.md ├── dotnet │ ├── README.md │ ├── dotnet-aspnetcore-metrics.md │ ├── dotnet-dns-metrics.md │ ├── dotnet-http-metrics.md │ ├── dotnet-kestrel-metrics.md │ ├── dotnet-network-traces.md │ └── dotnet-signalr-metrics.md ├── exceptions │ ├── README.md │ ├── exceptions-logs.md │ └── exceptions-spans.md ├── faas │ ├── README.md │ ├── aws-lambda.md │ ├── faas-metrics.md │ └── faas-spans.md ├── feature-flags │ ├── README.md │ └── feature-flags-events.md ├── gen-ai │ ├── README.md │ ├── aws-bedrock.md │ ├── azure-ai-inference.md │ ├── gen-ai-agent-spans.md │ ├── gen-ai-events.md │ ├── gen-ai-input-messages.json │ ├── gen-ai-metrics.md │ ├── gen-ai-output-messages.json │ ├── gen-ai-spans.md │ ├── gen-ai-system-instructions.json │ ├── non-normative │ │ ├── examples-llm-calls.md │ │ └── models.ipynb │ └── openai.md ├── general │ ├── README.md │ ├── attribute-requirement-level.md │ ├── attributes.md │ ├── events.md │ ├── forward-proxy.png │ ├── logs.md │ ├── metric-requirement-level.md │ ├── metrics.md │ ├── naming.md │ ├── profiles.md │ ├── recording-errors.md │ ├── reverse-proxy.png │ ├── semantic-convention-groups.md │ ├── session.md │ ├── simple.png │ ├── trace-compatibility.md │ └── trace.md ├── graphql │ ├── README.md │ └── graphql-spans.md ├── hardware │ ├── README.md │ ├── battery.md │ ├── common.md │ ├── cpu.md │ ├── disk-controller.md │ ├── enclosure.md │ ├── fan.md │ ├── gpu.md │ ├── host.md │ ├── logical-disk.md │ ├── memory.md │ ├── network.md │ ├── physical-disk.md │ ├── power-supply.md │ ├── tape-drive.md │ ├── temperature.md │ └── voltage.md ├── how-to-write-conventions │ ├── README.md │ ├── resource-and-entities.md │ ├── status-metrics.md │ └── t-shaped-signals.md ├── http │ ├── README.md │ ├── http-metrics.md │ ├── http-spans.md │ ├── reverse-proxy-http-server.png │ └── simple-http-server.png ├── messaging │ ├── README.md │ ├── azure-messaging.md │ ├── gcp-pubsub.md │ ├── kafka.md │ ├── messaging-metrics.md │ ├── messaging-spans.md │ ├── rabbitmq.md │ ├── rocketmq.md │ ├── sns.md │ └── sqs.md ├── mobile │ ├── README.md │ └── mobile-events.md ├── nfs │ ├── README.md │ └── nfs-metrics.md ├── non-normative │ ├── README.md │ ├── code-attrs-migration.md │ ├── code-generation.md │ ├── compatibility │ │ ├── README.md │ │ └── aws.md │ ├── database-test-cases │ │ └── db-sql-test-cases.json │ ├── db-migration.md │ ├── groups │ │ └── system │ │ │ ├── cpu-metrics-guidelines.md │ │ │ ├── design-philosophy.md │ │ │ └── use-cases.md │ ├── http-migration.md │ ├── k8s-attributes.md │ ├── k8s-migration.md │ └── naming-known-exceptions.md ├── object-stores │ ├── README.md │ └── s3.md ├── otel │ ├── README.md │ └── sdk-metrics.md ├── registry │ ├── README.md │ ├── attributes │ │ ├── README.md │ │ ├── android.md │ │ ├── app.md │ │ ├── artifact.md │ │ ├── aspnetcore.md │ │ ├── aws.md │ │ ├── azure.md │ │ ├── browser.md │ │ ├── cassandra.md │ │ ├── cicd.md │ │ ├── client.md │ │ ├── cloud.md │ │ ├── cloudevents.md │ │ ├── cloudfoundry.md │ │ ├── code.md │ │ ├── container.md │ │ ├── cpu.md │ │ ├── cpython.md │ │ ├── db.md │ │ ├── deployment.md │ │ ├── destination.md │ │ ├── device.md │ │ ├── disk.md │ │ ├── dns.md │ │ ├── dotnet.md │ │ ├── elasticsearch.md │ │ ├── enduser.md │ │ ├── error.md │ │ ├── event.md │ │ ├── exception.md │ │ ├── faas.md │ │ ├── feature-flag.md │ │ ├── file.md │ │ ├── gcp.md │ │ ├── gen-ai.md │ │ ├── geo.md │ │ ├── go.md │ │ ├── graphql.md │ │ ├── hardware.md │ │ ├── heroku.md │ │ ├── host.md │ │ ├── http.md │ │ ├── ios.md │ │ ├── jsonrpc.md │ │ ├── jvm.md │ │ ├── k8s.md │ │ ├── linux.md │ │ ├── log.md │ │ ├── mainframe.md │ │ ├── messaging.md │ │ ├── network.md │ │ ├── nfs.md │ │ ├── nodejs.md │ │ ├── oci.md │ │ ├── onc-rpc.md │ │ ├── openai.md │ │ ├── openshift.md │ │ ├── opentracing.md │ │ ├── os.md │ │ ├── otel.md │ │ ├── peer.md │ │ ├── pprof.md │ │ ├── process.md │ │ ├── profile.md │ │ ├── rpc.md │ │ ├── security-rule.md │ │ ├── server.md │ │ ├── service.md │ │ ├── session.md │ │ ├── signalr.md │ │ ├── source.md │ │ ├── system.md │ │ ├── telemetry.md │ │ ├── test.md │ │ ├── thread.md │ │ ├── tls.md │ │ ├── url.md │ │ ├── user-agent.md │ │ ├── user.md │ │ ├── v8js.md │ │ ├── vcs.md │ │ ├── webengine.md │ │ └── zos.md │ └── entities │ │ ├── README.md │ │ ├── android.md │ │ ├── app.md │ │ ├── aws.md │ │ ├── browser.md │ │ ├── cicd.md │ │ ├── cloud.md │ │ ├── cloudfoundry.md │ │ ├── container.md │ │ ├── deployment.md │ │ ├── device.md │ │ ├── faas.md │ │ ├── gcp.md │ │ ├── heroku.md │ │ ├── host.md │ │ ├── k8s.md │ │ ├── openshift.md │ │ ├── os.md │ │ ├── otel.md │ │ ├── process.md │ │ ├── service.md │ │ ├── telemetry.md │ │ ├── vcs.md │ │ ├── webengine.md │ │ └── zos.md ├── resource │ ├── README.md │ ├── android.md │ ├── browser.md │ ├── cicd.md │ ├── cloud-provider │ │ ├── README.md │ │ ├── aws │ │ │ ├── README.md │ │ │ ├── ecs.md │ │ │ ├── eks.md │ │ │ └── logs.md │ │ ├── gcp │ │ │ ├── README.md │ │ │ ├── apphub.md │ │ │ ├── cloud-run.md │ │ │ └── gce.md │ │ └── heroku.md │ ├── cloud.md │ ├── cloudfoundry.md │ ├── container.md │ ├── deployment-environment.md │ ├── device.md │ ├── faas.md │ ├── host.md │ ├── k8s │ │ ├── README.md │ │ └── openshift.md │ ├── os.md │ ├── process.md │ ├── service.md │ ├── webengine.md │ └── zos.md ├── rpc │ ├── README.md │ ├── connect-rpc.md │ ├── grpc.md │ ├── json-rpc.md │ ├── rpc-metrics.md │ └── rpc-spans.md ├── runtime │ ├── README.md │ ├── cpython-metrics.md │ ├── dotnet-metrics.md │ ├── go-metrics.md │ ├── jvm-metrics.md │ ├── nodejs-metrics.md │ └── v8js-metrics.md ├── system │ ├── README.md │ ├── container-metrics.md │ ├── k8s-metrics.md │ ├── openshift-metrics.md │ ├── process-metrics.md │ └── system-metrics.md └── url │ └── README.md ├── internal └── tools │ ├── go.mod │ ├── go.sum │ ├── schema_check.sh │ ├── scripts │ ├── find-dead-yaml.sh │ ├── generate-registry-area-labels.sh │ ├── generate-schema-next.sh │ ├── registry │ │ ├── areas-weaver.yaml │ │ ├── areas.md.j2 │ │ ├── signal-groups-weaver.yaml │ │ └── signal-groups.j2 │ ├── schema-diff │ │ └── yaml │ │ │ ├── schema-diff.j2 │ │ │ └── weaver.yaml │ ├── update-areas-table.py │ └── update-issue-template-areas.sh │ └── tools.go ├── issue-management.md ├── model ├── README.md ├── android │ ├── deprecated │ │ └── registry-deprecated.yaml │ ├── entities.yaml │ └── registry.yaml ├── app │ ├── entities.yaml │ ├── events.yaml │ └── registry.yaml ├── artifact │ └── registry.yaml ├── aspnetcore │ ├── metrics.yaml │ └── registry.yaml ├── aws │ ├── ecs-entities.yaml │ ├── eks-entities.yaml │ ├── lambda-spans.yaml │ ├── logs-entities.yaml │ ├── registry.yaml │ └── sdk-spans.yaml ├── azure │ ├── cosmosdb-metrics.yaml │ ├── deprecated │ │ ├── events-deprecated.yaml │ │ └── registry-deprecated.yaml │ ├── events.yaml │ └── registry.yaml ├── browser │ ├── entities.yaml │ ├── events.yaml │ └── registry.yaml ├── cassandra │ └── registry.yaml ├── cicd │ ├── entities.yaml │ ├── metrics.yaml │ ├── registry.yaml │ └── spans.yaml ├── cli │ └── spans.yaml ├── client │ ├── common.yaml │ └── registry.yaml ├── cloud │ ├── entities.yaml │ └── registry.yaml ├── cloudevents │ ├── registry.yaml │ └── spans.yaml ├── cloudfoundry │ ├── entities.yaml │ └── registry.yaml ├── code │ ├── common.yaml │ ├── registry-deprecated.yaml │ └── registry.yaml ├── container │ ├── deprecated │ │ └── registry-deprecated.yaml │ ├── entities.yaml │ ├── metrics.yaml │ └── registry.yaml ├── cpu │ ├── deprecated.yaml │ └── registry.yaml ├── cpython │ ├── metrics.yaml │ └── registry.yaml ├── db │ ├── common.yaml │ ├── deprecated │ │ ├── metrics-deprecated.yaml │ │ └── registry-deprecated.yaml │ ├── metrics.yaml │ ├── registry.yaml │ └── spans.yaml ├── deployment │ ├── deprecated │ │ └── registry-deprecated.yaml │ ├── entities.yaml │ └── registry.yaml ├── destination │ ├── common.yaml │ └── registry.yaml ├── device │ ├── entities.yaml │ ├── events.yaml │ └── registry.yaml ├── disk │ └── registry.yaml ├── dns │ ├── metrics.yaml │ └── registry.yaml ├── dotnet │ ├── network-spans.yaml │ ├── registry.yaml │ └── runtime-metrics.yaml ├── elasticsearch │ └── registry.yaml ├── enduser │ ├── deprecated │ │ └── registry-deprecated.yaml │ └── registry.yaml ├── error │ └── registry.yaml ├── event │ └── deprecated │ │ └── registry-deprecated.yaml ├── exceptions │ ├── deprecated │ │ └── registry-deprecated.yaml │ ├── events.yaml │ ├── logs.yaml │ └── registry.yaml ├── faas │ ├── common.yaml │ ├── entities.yaml │ ├── metrics.yaml │ ├── registry.yaml │ └── spans.yaml ├── feature-flags │ ├── deprecated │ │ └── registry-deprecated.yaml │ ├── events.yaml │ └── registry.yaml ├── file │ └── registry.yaml ├── gcp │ ├── apphub.yaml │ ├── cloud-run-entities.yaml │ ├── common.yml │ ├── gce-entities.yaml │ └── registry.yaml ├── gen-ai │ ├── deprecated │ │ ├── events-deprecated.yaml │ │ └── registry-deprecated.yaml │ ├── events.yaml │ ├── metrics.yaml │ ├── registry.yaml │ └── spans.yaml ├── geo │ └── registry.yaml ├── go │ ├── metrics.yaml │ └── registry.yaml ├── graphql │ ├── registry.yaml │ └── spans.yml ├── hardware │ ├── battery-metrics.yaml │ ├── common-metrics.yaml │ ├── common.yaml │ ├── cpu-metrics.yaml │ ├── disk-controller-metrics.yaml │ ├── enclosure-metrics.yaml │ ├── fan-metrics.yaml │ ├── gpu-metrics.yaml │ ├── host-metrics.yaml │ ├── logical-disk-metrics.yaml │ ├── memory-metrics.yaml │ ├── network-metrics.yaml │ ├── physical-disk-metrics.yaml │ ├── power-supply-metrics.yaml │ ├── registry.yaml │ ├── tape-drive-metrics.yaml │ ├── temperature-metrics.yaml │ └── voltage-metrics.yaml ├── heroku │ ├── entities.yaml │ └── registry.yaml ├── host │ ├── entities.yaml │ └── registry.yaml ├── http │ ├── common.yaml │ ├── deprecated │ │ └── registry-deprecated.yaml │ ├── metrics.yaml │ ├── registry.yaml │ └── spans.yaml ├── ios │ ├── deprecated │ │ └── registry-deprecated.yaml │ └── registry.yaml ├── jsonrpc │ └── registry.yaml ├── jvm │ ├── deprecated │ │ └── metrics-deprecated.yaml │ ├── metrics-experimental.yaml │ ├── metrics.yaml │ └── registry.yaml ├── k8s │ ├── deprecated │ │ ├── metrics-deprecated.yaml │ │ └── registry-deprecated.yaml │ ├── entities.yaml │ ├── metrics.yaml │ └── registry.yaml ├── kestrel │ └── metrics.yaml ├── linux │ └── registry-deprecated.yaml ├── log │ ├── common.yaml │ └── registry.yaml ├── mainframe │ └── registry_lpar.yaml ├── messaging │ ├── common.yaml │ ├── deprecated │ │ ├── metrics-deprecated.yaml │ │ └── registry-deprecated.yaml │ ├── metrics.yaml │ ├── registry.yaml │ └── spans.yaml ├── network │ ├── common.yaml │ ├── deprecated │ │ └── registry-deprecated.yaml │ └── registry.yaml ├── nfs │ ├── metrics.yaml │ └── registry.yaml ├── nodejs │ ├── metrics.yaml │ └── registry.yaml ├── oci │ └── registry.yaml ├── onc_rpc │ └── registry.yaml ├── openai │ └── registry.yaml ├── openshift │ ├── entities.yaml │ ├── metrics.yaml │ └── registry.yaml ├── opentracing │ ├── common.yaml │ └── registry.yaml ├── os │ ├── entities.yaml │ └── registry.yaml ├── otel │ ├── common.yaml │ ├── deprecated │ │ ├── entities-deprecated.yaml │ │ ├── metrics-deprecated.yaml │ │ └── registry-deprecated.yaml │ ├── metrics.yaml │ └── registry.yaml ├── peer │ ├── common.yaml │ └── registry.yaml ├── pprof │ ├── common.yaml │ └── registry.yaml ├── process │ ├── deprecated │ │ ├── metrics-deprecated.yaml │ │ └── registry-deprecated.yaml │ ├── entities.yaml │ ├── metrics.yaml │ └── registry.yaml ├── profile │ ├── common.yaml │ └── registry.yaml ├── rpc │ ├── common.yaml │ ├── deprecated │ │ ├── metrics-deprecated.yaml │ │ └── registry-deprecated.yaml │ ├── metrics.yaml │ ├── registry.yaml │ └── spans.yaml ├── security-rule │ └── registry.yaml ├── server │ ├── common.yaml │ └── registry.yaml ├── service │ ├── entities.yaml │ └── registry.yaml ├── session │ ├── common.yaml │ ├── events.yaml │ └── registry.yaml ├── signalr │ ├── metrics.yaml │ └── registry.yaml ├── source │ ├── common.yaml │ └── registry.yaml ├── system │ ├── deprecated │ │ ├── metrics-deprecated.yaml │ │ └── registry-deprecated.yaml │ ├── metrics.yaml │ └── registry.yaml ├── telemetry │ ├── entities.yaml │ └── registry.yaml ├── test │ └── registry.yaml ├── thread │ ├── common.yaml │ └── registry.yaml ├── tls │ ├── deprecated │ │ └── registry-deprecated.yaml │ └── registry.yaml ├── url │ ├── common.yaml │ └── registry.yaml ├── user-agent │ └── registry.yaml ├── user │ └── registry.yaml ├── v8js │ ├── deprecated │ │ └── metrics-deprecated.yaml │ ├── metrics.yaml │ └── registry.yaml ├── vcs │ ├── deprecated │ │ └── registry-deprecated.yaml │ ├── entities.yaml │ ├── metrics.yaml │ └── registry.yaml ├── version.properties ├── webengine │ ├── entities.yaml │ └── registry.yaml └── zos │ ├── common.yaml │ ├── entities.yaml │ └── registry.yaml ├── package.json ├── policies ├── attribute_name_collisions.rego ├── attribute_types.rego ├── compatibility.rego ├── deprecation.rego ├── entity_association.rego ├── entity_stability.rego ├── group_stability.rego ├── metric_brief_format.rego ├── metrics_collisions.rego ├── registry.rego └── yaml_schema.rego ├── policies_test ├── attribute_name_collisions_test.rego ├── attribute_types_test.rego ├── compatibility_test.rego ├── deprecation_test.rego ├── entity_association_test.rego ├── entity_stability_test.rego ├── group_stability_test.rego ├── metric_brief_format_test.rego ├── metrics_collisions_test.rego ├── registry_test.rego └── yaml_schema_test.rego ├── 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.22.0 ├── 1.23.0 ├── 1.23.1 ├── 1.24.0 ├── 1.25.0 ├── 1.26.0 ├── 1.27.0 ├── 1.28.0 ├── 1.29.0 ├── 1.30.0 ├── 1.31.0 ├── 1.32.0 ├── 1.33.0 ├── 1.34.0 ├── 1.35.0 ├── 1.36.0 ├── 1.37.0 ├── 1.38.0 ├── 1.4.0 ├── 1.5.0 ├── 1.6.1 ├── 1.7.0 ├── 1.8.0 └── 1.9.0 ├── sigs-schema.json └── templates └── registry └── markdown ├── attribute_macros.j2 ├── attribute_namespace.md.j2 ├── attribute_table.j2 ├── attributes_readme.md.j2 ├── body_field_table.j2 ├── entity_macros.j2 ├── entity_namespace.md.j2 ├── entity_readme.md.j2 ├── enum_macros.j2 ├── event_macros.j2 ├── examples_macros.j2 ├── metric_macros.j2 ├── metric_table.j2 ├── notes.j2 ├── registry_readme.md.j2 ├── requirement.j2 ├── resource_macros.j2 ├── sampling_macros.j2 ├── snippet.md.j2 ├── span_macros.j2 ├── stability.j2 └── weaver.yaml /.chloggen/2913.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/.chloggen/2913.yaml -------------------------------------------------------------------------------- /.chloggen/2957_gcp_agent_engine.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/.chloggen/2957_gcp_agent_engine.yaml -------------------------------------------------------------------------------- /.chloggen/CHANGELOG.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/.chloggen/CHANGELOG.tmpl -------------------------------------------------------------------------------- /.chloggen/TEMPLATE.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/.chloggen/TEMPLATE.yaml -------------------------------------------------------------------------------- /.chloggen/add_missing_k8s_attributes.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/.chloggen/add_missing_k8s_attributes.yaml -------------------------------------------------------------------------------- /.chloggen/config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/.chloggen/config.yaml -------------------------------------------------------------------------------- /.chloggen/feat_hetzner_entity.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/.chloggen/feat_hetzner_entity.yaml -------------------------------------------------------------------------------- /.chloggen/feat_linode_entity.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/.chloggen/feat_linode_entity.yaml -------------------------------------------------------------------------------- /.chloggen/feat_vultr_entity.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/.chloggen/feat_vultr_entity.yaml -------------------------------------------------------------------------------- /.chloggen/fix-2880-2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/.chloggen/fix-2880-2.yaml -------------------------------------------------------------------------------- /.chloggen/k8s_pod_entity.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/.chloggen/k8s_pod_entity.yaml -------------------------------------------------------------------------------- /.chloggen/process_fd.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/.chloggen/process_fd.yaml -------------------------------------------------------------------------------- /.chloggen/rename_system_linux.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/.chloggen/rename_system_linux.yaml -------------------------------------------------------------------------------- /.chloggen/rpc-consistent-attributes-metrics-spans.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/.chloggen/rpc-consistent-attributes-metrics-spans.yaml -------------------------------------------------------------------------------- /.chloggen/rpc-duration-seconds.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/.chloggen/rpc-duration-seconds.yaml -------------------------------------------------------------------------------- /.chloggen/rpc-metadata.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/.chloggen/rpc-metadata.yaml -------------------------------------------------------------------------------- /.chloggen/rpc-status-code.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/.chloggen/rpc-status-code.yaml -------------------------------------------------------------------------------- /.chloggen/rpc-system-name.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/.chloggen/rpc-system-name.yaml -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/.github/CODEOWNERS -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/.github/ISSUE_TEMPLATE/bug_report.yaml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/change_proposal.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/.github/ISSUE_TEMPLATE/change_proposal.yaml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/new-conventions.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/.github/ISSUE_TEMPLATE/new-conventions.yaml -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/copilot-instructions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/.github/copilot-instructions.md -------------------------------------------------------------------------------- /.github/renovate.json5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/.github/renovate.json5 -------------------------------------------------------------------------------- /.github/scripts/link-check.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/.github/scripts/link-check.sh -------------------------------------------------------------------------------- /.github/scripts/lychee-config.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/.github/scripts/lychee-config.toml -------------------------------------------------------------------------------- /.github/scripts/prepare-new-issue.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/.github/scripts/prepare-new-issue.sh -------------------------------------------------------------------------------- /.github/scripts/prepare-new-pr.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/.github/scripts/prepare-new-pr.sh -------------------------------------------------------------------------------- /.github/scripts/triage/check-changes-ownership.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/.github/scripts/triage/check-changes-ownership.ts -------------------------------------------------------------------------------- /.github/scripts/triage/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/.github/scripts/triage/package-lock.json -------------------------------------------------------------------------------- /.github/scripts/triage/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/.github/scripts/triage/package.json -------------------------------------------------------------------------------- /.github/scripts/triage/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/.github/scripts/triage/utils.ts -------------------------------------------------------------------------------- /.github/scripts/update-spec-repo-links.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/.github/scripts/update-spec-repo-links.sh -------------------------------------------------------------------------------- /.github/scripts/use-cla-approved-github-bot.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/.github/scripts/use-cla-approved-github-bot.sh -------------------------------------------------------------------------------- /.github/security-insights.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/.github/security-insights.yml -------------------------------------------------------------------------------- /.github/workflows/auto-update-spec-repo-links.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/.github/workflows/auto-update-spec-repo-links.yml -------------------------------------------------------------------------------- /.github/workflows/build-system-check.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/.github/workflows/build-system-check.yml -------------------------------------------------------------------------------- /.github/workflows/changelog.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/.github/workflows/changelog.yml -------------------------------------------------------------------------------- /.github/workflows/check-changes-ownership.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/.github/workflows/check-changes-ownership.yml -------------------------------------------------------------------------------- /.github/workflows/checks.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/.github/workflows/checks.yml -------------------------------------------------------------------------------- /.github/workflows/daily-link-check.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/.github/workflows/daily-link-check.yml -------------------------------------------------------------------------------- /.github/workflows/fossa.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/.github/workflows/fossa.yml -------------------------------------------------------------------------------- /.github/workflows/generate-registry-area-labels.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/.github/workflows/generate-registry-area-labels.yml -------------------------------------------------------------------------------- /.github/workflows/ossf-scorecard.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/.github/workflows/ossf-scorecard.yml -------------------------------------------------------------------------------- /.github/workflows/prepare-new-issue.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/.github/workflows/prepare-new-issue.yml -------------------------------------------------------------------------------- /.github/workflows/prepare-new-pr.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/.github/workflows/prepare-new-pr.yml -------------------------------------------------------------------------------- /.github/workflows/prepare-release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/.github/workflows/prepare-release.yml -------------------------------------------------------------------------------- /.github/workflows/reusable-link-check.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/.github/workflows/reusable-link-check.yml -------------------------------------------------------------------------------- /.github/workflows/reusable-workflow-notification.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/.github/workflows/reusable-workflow-notification.yml -------------------------------------------------------------------------------- /.github/workflows/stale-pr.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/.github/workflows/stale-pr.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/.gitignore -------------------------------------------------------------------------------- /.markdownlint.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/.markdownlint.yaml -------------------------------------------------------------------------------- /.markdownlintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/.markdownlintignore -------------------------------------------------------------------------------- /.nvmrc: -------------------------------------------------------------------------------- 1 | lts/* 2 | -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/.prettierignore -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /.yamllint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/.yamllint -------------------------------------------------------------------------------- /.yamllint-ignore: -------------------------------------------------------------------------------- 1 | node_modules/* 2 | .github/workflows/* -------------------------------------------------------------------------------- /AREAS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/AREAS.md -------------------------------------------------------------------------------- /Brewfile: -------------------------------------------------------------------------------- 1 | brew "gsed" 2 | -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/README.md -------------------------------------------------------------------------------- /RELEASING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/RELEASING.md -------------------------------------------------------------------------------- /areas.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/areas.yaml -------------------------------------------------------------------------------- /dependencies.Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/dependencies.Dockerfile -------------------------------------------------------------------------------- /docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/docs/README.md -------------------------------------------------------------------------------- /docs/app/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/docs/app/README.md -------------------------------------------------------------------------------- /docs/app/app-events.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/docs/app/app-events.md -------------------------------------------------------------------------------- /docs/azure/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/docs/azure/README.md -------------------------------------------------------------------------------- /docs/azure/azure-events.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/docs/azure/azure-events.md -------------------------------------------------------------------------------- /docs/browser/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/docs/browser/README.md -------------------------------------------------------------------------------- /docs/browser/browser-events.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/docs/browser/browser-events.md -------------------------------------------------------------------------------- /docs/cicd/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/docs/cicd/README.md -------------------------------------------------------------------------------- /docs/cicd/cicd-logs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/docs/cicd/cicd-logs.md -------------------------------------------------------------------------------- /docs/cicd/cicd-metrics.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/docs/cicd/cicd-metrics.md -------------------------------------------------------------------------------- /docs/cicd/cicd-spans.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/docs/cicd/cicd-spans.md -------------------------------------------------------------------------------- /docs/cli/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/docs/cli/README.md -------------------------------------------------------------------------------- /docs/cli/cli-spans.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/docs/cli/cli-spans.md -------------------------------------------------------------------------------- /docs/cloud-providers/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/docs/cloud-providers/README.md -------------------------------------------------------------------------------- /docs/cloud-providers/aws-sdk.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/docs/cloud-providers/aws-sdk.md -------------------------------------------------------------------------------- /docs/cloudevents/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/docs/cloudevents/README.md -------------------------------------------------------------------------------- /docs/cloudevents/cloudevents-spans.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/docs/cloudevents/cloudevents-spans.md -------------------------------------------------------------------------------- /docs/db/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/docs/db/README.md -------------------------------------------------------------------------------- /docs/db/cassandra.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/docs/db/cassandra.md -------------------------------------------------------------------------------- /docs/db/cosmosdb.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/docs/db/cosmosdb.md -------------------------------------------------------------------------------- /docs/db/couchdb.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/docs/db/couchdb.md -------------------------------------------------------------------------------- /docs/db/database-metrics.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/docs/db/database-metrics.md -------------------------------------------------------------------------------- /docs/db/database-spans.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/docs/db/database-spans.md -------------------------------------------------------------------------------- /docs/db/dynamodb.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/docs/db/dynamodb.md -------------------------------------------------------------------------------- /docs/db/elasticsearch.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/docs/db/elasticsearch.md -------------------------------------------------------------------------------- /docs/db/hbase.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/docs/db/hbase.md -------------------------------------------------------------------------------- /docs/db/mariadb.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/docs/db/mariadb.md -------------------------------------------------------------------------------- /docs/db/mongodb.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/docs/db/mongodb.md -------------------------------------------------------------------------------- /docs/db/mysql.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/docs/db/mysql.md -------------------------------------------------------------------------------- /docs/db/oracledb.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/docs/db/oracledb.md -------------------------------------------------------------------------------- /docs/db/postgresql.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/docs/db/postgresql.md -------------------------------------------------------------------------------- /docs/db/redis.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/docs/db/redis.md -------------------------------------------------------------------------------- /docs/db/sql-server.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/docs/db/sql-server.md -------------------------------------------------------------------------------- /docs/db/sql.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/docs/db/sql.md -------------------------------------------------------------------------------- /docs/dns/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/docs/dns/README.md -------------------------------------------------------------------------------- /docs/dns/dns-metrics.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/docs/dns/dns-metrics.md -------------------------------------------------------------------------------- /docs/dotnet/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/docs/dotnet/README.md -------------------------------------------------------------------------------- /docs/dotnet/dotnet-aspnetcore-metrics.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/docs/dotnet/dotnet-aspnetcore-metrics.md -------------------------------------------------------------------------------- /docs/dotnet/dotnet-dns-metrics.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/docs/dotnet/dotnet-dns-metrics.md -------------------------------------------------------------------------------- /docs/dotnet/dotnet-http-metrics.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/docs/dotnet/dotnet-http-metrics.md -------------------------------------------------------------------------------- /docs/dotnet/dotnet-kestrel-metrics.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/docs/dotnet/dotnet-kestrel-metrics.md -------------------------------------------------------------------------------- /docs/dotnet/dotnet-network-traces.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/docs/dotnet/dotnet-network-traces.md -------------------------------------------------------------------------------- /docs/dotnet/dotnet-signalr-metrics.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/docs/dotnet/dotnet-signalr-metrics.md -------------------------------------------------------------------------------- /docs/exceptions/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/docs/exceptions/README.md -------------------------------------------------------------------------------- /docs/exceptions/exceptions-logs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/docs/exceptions/exceptions-logs.md -------------------------------------------------------------------------------- /docs/exceptions/exceptions-spans.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/docs/exceptions/exceptions-spans.md -------------------------------------------------------------------------------- /docs/faas/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/docs/faas/README.md -------------------------------------------------------------------------------- /docs/faas/aws-lambda.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/docs/faas/aws-lambda.md -------------------------------------------------------------------------------- /docs/faas/faas-metrics.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/docs/faas/faas-metrics.md -------------------------------------------------------------------------------- /docs/faas/faas-spans.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/docs/faas/faas-spans.md -------------------------------------------------------------------------------- /docs/feature-flags/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/docs/feature-flags/README.md -------------------------------------------------------------------------------- /docs/feature-flags/feature-flags-events.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/docs/feature-flags/feature-flags-events.md -------------------------------------------------------------------------------- /docs/gen-ai/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/docs/gen-ai/README.md -------------------------------------------------------------------------------- /docs/gen-ai/aws-bedrock.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/docs/gen-ai/aws-bedrock.md -------------------------------------------------------------------------------- /docs/gen-ai/azure-ai-inference.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/docs/gen-ai/azure-ai-inference.md -------------------------------------------------------------------------------- /docs/gen-ai/gen-ai-agent-spans.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/docs/gen-ai/gen-ai-agent-spans.md -------------------------------------------------------------------------------- /docs/gen-ai/gen-ai-events.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/docs/gen-ai/gen-ai-events.md -------------------------------------------------------------------------------- /docs/gen-ai/gen-ai-input-messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/docs/gen-ai/gen-ai-input-messages.json -------------------------------------------------------------------------------- /docs/gen-ai/gen-ai-metrics.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/docs/gen-ai/gen-ai-metrics.md -------------------------------------------------------------------------------- /docs/gen-ai/gen-ai-output-messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/docs/gen-ai/gen-ai-output-messages.json -------------------------------------------------------------------------------- /docs/gen-ai/gen-ai-spans.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/docs/gen-ai/gen-ai-spans.md -------------------------------------------------------------------------------- /docs/gen-ai/gen-ai-system-instructions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/docs/gen-ai/gen-ai-system-instructions.json -------------------------------------------------------------------------------- /docs/gen-ai/non-normative/examples-llm-calls.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/docs/gen-ai/non-normative/examples-llm-calls.md -------------------------------------------------------------------------------- /docs/gen-ai/non-normative/models.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/docs/gen-ai/non-normative/models.ipynb -------------------------------------------------------------------------------- /docs/gen-ai/openai.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/docs/gen-ai/openai.md -------------------------------------------------------------------------------- /docs/general/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/docs/general/README.md -------------------------------------------------------------------------------- /docs/general/attribute-requirement-level.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/docs/general/attribute-requirement-level.md -------------------------------------------------------------------------------- /docs/general/attributes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/docs/general/attributes.md -------------------------------------------------------------------------------- /docs/general/events.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/docs/general/events.md -------------------------------------------------------------------------------- /docs/general/forward-proxy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/docs/general/forward-proxy.png -------------------------------------------------------------------------------- /docs/general/logs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/docs/general/logs.md -------------------------------------------------------------------------------- /docs/general/metric-requirement-level.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/docs/general/metric-requirement-level.md -------------------------------------------------------------------------------- /docs/general/metrics.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/docs/general/metrics.md -------------------------------------------------------------------------------- /docs/general/naming.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/docs/general/naming.md -------------------------------------------------------------------------------- /docs/general/profiles.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/docs/general/profiles.md -------------------------------------------------------------------------------- /docs/general/recording-errors.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/docs/general/recording-errors.md -------------------------------------------------------------------------------- /docs/general/reverse-proxy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/docs/general/reverse-proxy.png -------------------------------------------------------------------------------- /docs/general/semantic-convention-groups.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/docs/general/semantic-convention-groups.md -------------------------------------------------------------------------------- /docs/general/session.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/docs/general/session.md -------------------------------------------------------------------------------- /docs/general/simple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/docs/general/simple.png -------------------------------------------------------------------------------- /docs/general/trace-compatibility.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/docs/general/trace-compatibility.md -------------------------------------------------------------------------------- /docs/general/trace.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/docs/general/trace.md -------------------------------------------------------------------------------- /docs/graphql/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/docs/graphql/README.md -------------------------------------------------------------------------------- /docs/graphql/graphql-spans.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/docs/graphql/graphql-spans.md -------------------------------------------------------------------------------- /docs/hardware/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/docs/hardware/README.md -------------------------------------------------------------------------------- /docs/hardware/battery.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/docs/hardware/battery.md -------------------------------------------------------------------------------- /docs/hardware/common.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/docs/hardware/common.md -------------------------------------------------------------------------------- /docs/hardware/cpu.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/docs/hardware/cpu.md -------------------------------------------------------------------------------- /docs/hardware/disk-controller.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/docs/hardware/disk-controller.md -------------------------------------------------------------------------------- /docs/hardware/enclosure.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/docs/hardware/enclosure.md -------------------------------------------------------------------------------- /docs/hardware/fan.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/docs/hardware/fan.md -------------------------------------------------------------------------------- /docs/hardware/gpu.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/docs/hardware/gpu.md -------------------------------------------------------------------------------- /docs/hardware/host.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/docs/hardware/host.md -------------------------------------------------------------------------------- /docs/hardware/logical-disk.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/docs/hardware/logical-disk.md -------------------------------------------------------------------------------- /docs/hardware/memory.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/docs/hardware/memory.md -------------------------------------------------------------------------------- /docs/hardware/network.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/docs/hardware/network.md -------------------------------------------------------------------------------- /docs/hardware/physical-disk.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/docs/hardware/physical-disk.md -------------------------------------------------------------------------------- /docs/hardware/power-supply.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/docs/hardware/power-supply.md -------------------------------------------------------------------------------- /docs/hardware/tape-drive.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/docs/hardware/tape-drive.md -------------------------------------------------------------------------------- /docs/hardware/temperature.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/docs/hardware/temperature.md -------------------------------------------------------------------------------- /docs/hardware/voltage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/docs/hardware/voltage.md -------------------------------------------------------------------------------- /docs/how-to-write-conventions/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/docs/how-to-write-conventions/README.md -------------------------------------------------------------------------------- /docs/how-to-write-conventions/resource-and-entities.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/docs/how-to-write-conventions/resource-and-entities.md -------------------------------------------------------------------------------- /docs/how-to-write-conventions/status-metrics.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/docs/how-to-write-conventions/status-metrics.md -------------------------------------------------------------------------------- /docs/how-to-write-conventions/t-shaped-signals.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/docs/how-to-write-conventions/t-shaped-signals.md -------------------------------------------------------------------------------- /docs/http/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/docs/http/README.md -------------------------------------------------------------------------------- /docs/http/http-metrics.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/docs/http/http-metrics.md -------------------------------------------------------------------------------- /docs/http/http-spans.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/docs/http/http-spans.md -------------------------------------------------------------------------------- /docs/http/reverse-proxy-http-server.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/docs/http/reverse-proxy-http-server.png -------------------------------------------------------------------------------- /docs/http/simple-http-server.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/docs/http/simple-http-server.png -------------------------------------------------------------------------------- /docs/messaging/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/docs/messaging/README.md -------------------------------------------------------------------------------- /docs/messaging/azure-messaging.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/docs/messaging/azure-messaging.md -------------------------------------------------------------------------------- /docs/messaging/gcp-pubsub.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/docs/messaging/gcp-pubsub.md -------------------------------------------------------------------------------- /docs/messaging/kafka.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/docs/messaging/kafka.md -------------------------------------------------------------------------------- /docs/messaging/messaging-metrics.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/docs/messaging/messaging-metrics.md -------------------------------------------------------------------------------- /docs/messaging/messaging-spans.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/docs/messaging/messaging-spans.md -------------------------------------------------------------------------------- /docs/messaging/rabbitmq.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/docs/messaging/rabbitmq.md -------------------------------------------------------------------------------- /docs/messaging/rocketmq.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/docs/messaging/rocketmq.md -------------------------------------------------------------------------------- /docs/messaging/sns.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/docs/messaging/sns.md -------------------------------------------------------------------------------- /docs/messaging/sqs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/docs/messaging/sqs.md -------------------------------------------------------------------------------- /docs/mobile/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/docs/mobile/README.md -------------------------------------------------------------------------------- /docs/mobile/mobile-events.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/docs/mobile/mobile-events.md -------------------------------------------------------------------------------- /docs/nfs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/docs/nfs/README.md -------------------------------------------------------------------------------- /docs/nfs/nfs-metrics.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/docs/nfs/nfs-metrics.md -------------------------------------------------------------------------------- /docs/non-normative/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/docs/non-normative/README.md -------------------------------------------------------------------------------- /docs/non-normative/code-attrs-migration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/docs/non-normative/code-attrs-migration.md -------------------------------------------------------------------------------- /docs/non-normative/code-generation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/docs/non-normative/code-generation.md -------------------------------------------------------------------------------- /docs/non-normative/compatibility/README.md: -------------------------------------------------------------------------------- 1 | # Compatibility 2 | -------------------------------------------------------------------------------- /docs/non-normative/compatibility/aws.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/docs/non-normative/compatibility/aws.md -------------------------------------------------------------------------------- /docs/non-normative/database-test-cases/db-sql-test-cases.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/docs/non-normative/database-test-cases/db-sql-test-cases.json -------------------------------------------------------------------------------- /docs/non-normative/db-migration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/docs/non-normative/db-migration.md -------------------------------------------------------------------------------- /docs/non-normative/groups/system/cpu-metrics-guidelines.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/docs/non-normative/groups/system/cpu-metrics-guidelines.md -------------------------------------------------------------------------------- /docs/non-normative/groups/system/design-philosophy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/docs/non-normative/groups/system/design-philosophy.md -------------------------------------------------------------------------------- /docs/non-normative/groups/system/use-cases.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/docs/non-normative/groups/system/use-cases.md -------------------------------------------------------------------------------- /docs/non-normative/http-migration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/docs/non-normative/http-migration.md -------------------------------------------------------------------------------- /docs/non-normative/k8s-attributes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/docs/non-normative/k8s-attributes.md -------------------------------------------------------------------------------- /docs/non-normative/k8s-migration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/docs/non-normative/k8s-migration.md -------------------------------------------------------------------------------- /docs/non-normative/naming-known-exceptions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/docs/non-normative/naming-known-exceptions.md -------------------------------------------------------------------------------- /docs/object-stores/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/docs/object-stores/README.md -------------------------------------------------------------------------------- /docs/object-stores/s3.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/docs/object-stores/s3.md -------------------------------------------------------------------------------- /docs/otel/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/docs/otel/README.md -------------------------------------------------------------------------------- /docs/otel/sdk-metrics.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/docs/otel/sdk-metrics.md -------------------------------------------------------------------------------- /docs/registry/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/docs/registry/README.md -------------------------------------------------------------------------------- /docs/registry/attributes/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/docs/registry/attributes/README.md -------------------------------------------------------------------------------- /docs/registry/attributes/android.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/docs/registry/attributes/android.md -------------------------------------------------------------------------------- /docs/registry/attributes/app.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/docs/registry/attributes/app.md -------------------------------------------------------------------------------- /docs/registry/attributes/artifact.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/docs/registry/attributes/artifact.md -------------------------------------------------------------------------------- /docs/registry/attributes/aspnetcore.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/docs/registry/attributes/aspnetcore.md -------------------------------------------------------------------------------- /docs/registry/attributes/aws.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/docs/registry/attributes/aws.md -------------------------------------------------------------------------------- /docs/registry/attributes/azure.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/docs/registry/attributes/azure.md -------------------------------------------------------------------------------- /docs/registry/attributes/browser.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/docs/registry/attributes/browser.md -------------------------------------------------------------------------------- /docs/registry/attributes/cassandra.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/docs/registry/attributes/cassandra.md -------------------------------------------------------------------------------- /docs/registry/attributes/cicd.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/docs/registry/attributes/cicd.md -------------------------------------------------------------------------------- /docs/registry/attributes/client.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/docs/registry/attributes/client.md -------------------------------------------------------------------------------- /docs/registry/attributes/cloud.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/docs/registry/attributes/cloud.md -------------------------------------------------------------------------------- /docs/registry/attributes/cloudevents.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/docs/registry/attributes/cloudevents.md -------------------------------------------------------------------------------- /docs/registry/attributes/cloudfoundry.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/docs/registry/attributes/cloudfoundry.md -------------------------------------------------------------------------------- /docs/registry/attributes/code.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/docs/registry/attributes/code.md -------------------------------------------------------------------------------- /docs/registry/attributes/container.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/docs/registry/attributes/container.md -------------------------------------------------------------------------------- /docs/registry/attributes/cpu.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/docs/registry/attributes/cpu.md -------------------------------------------------------------------------------- /docs/registry/attributes/cpython.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/docs/registry/attributes/cpython.md -------------------------------------------------------------------------------- /docs/registry/attributes/db.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/docs/registry/attributes/db.md -------------------------------------------------------------------------------- /docs/registry/attributes/deployment.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/docs/registry/attributes/deployment.md -------------------------------------------------------------------------------- /docs/registry/attributes/destination.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/docs/registry/attributes/destination.md -------------------------------------------------------------------------------- /docs/registry/attributes/device.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/docs/registry/attributes/device.md -------------------------------------------------------------------------------- /docs/registry/attributes/disk.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/docs/registry/attributes/disk.md -------------------------------------------------------------------------------- /docs/registry/attributes/dns.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/docs/registry/attributes/dns.md -------------------------------------------------------------------------------- /docs/registry/attributes/dotnet.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/docs/registry/attributes/dotnet.md -------------------------------------------------------------------------------- /docs/registry/attributes/elasticsearch.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/docs/registry/attributes/elasticsearch.md -------------------------------------------------------------------------------- /docs/registry/attributes/enduser.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/docs/registry/attributes/enduser.md -------------------------------------------------------------------------------- /docs/registry/attributes/error.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/docs/registry/attributes/error.md -------------------------------------------------------------------------------- /docs/registry/attributes/event.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/docs/registry/attributes/event.md -------------------------------------------------------------------------------- /docs/registry/attributes/exception.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/docs/registry/attributes/exception.md -------------------------------------------------------------------------------- /docs/registry/attributes/faas.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/docs/registry/attributes/faas.md -------------------------------------------------------------------------------- /docs/registry/attributes/feature-flag.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/docs/registry/attributes/feature-flag.md -------------------------------------------------------------------------------- /docs/registry/attributes/file.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/docs/registry/attributes/file.md -------------------------------------------------------------------------------- /docs/registry/attributes/gcp.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/docs/registry/attributes/gcp.md -------------------------------------------------------------------------------- /docs/registry/attributes/gen-ai.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/docs/registry/attributes/gen-ai.md -------------------------------------------------------------------------------- /docs/registry/attributes/geo.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/docs/registry/attributes/geo.md -------------------------------------------------------------------------------- /docs/registry/attributes/go.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/docs/registry/attributes/go.md -------------------------------------------------------------------------------- /docs/registry/attributes/graphql.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/docs/registry/attributes/graphql.md -------------------------------------------------------------------------------- /docs/registry/attributes/hardware.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/docs/registry/attributes/hardware.md -------------------------------------------------------------------------------- /docs/registry/attributes/heroku.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/docs/registry/attributes/heroku.md -------------------------------------------------------------------------------- /docs/registry/attributes/host.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/docs/registry/attributes/host.md -------------------------------------------------------------------------------- /docs/registry/attributes/http.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/docs/registry/attributes/http.md -------------------------------------------------------------------------------- /docs/registry/attributes/ios.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/docs/registry/attributes/ios.md -------------------------------------------------------------------------------- /docs/registry/attributes/jsonrpc.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/docs/registry/attributes/jsonrpc.md -------------------------------------------------------------------------------- /docs/registry/attributes/jvm.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/docs/registry/attributes/jvm.md -------------------------------------------------------------------------------- /docs/registry/attributes/k8s.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/docs/registry/attributes/k8s.md -------------------------------------------------------------------------------- /docs/registry/attributes/linux.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/docs/registry/attributes/linux.md -------------------------------------------------------------------------------- /docs/registry/attributes/log.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/docs/registry/attributes/log.md -------------------------------------------------------------------------------- /docs/registry/attributes/mainframe.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/docs/registry/attributes/mainframe.md -------------------------------------------------------------------------------- /docs/registry/attributes/messaging.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/docs/registry/attributes/messaging.md -------------------------------------------------------------------------------- /docs/registry/attributes/network.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/docs/registry/attributes/network.md -------------------------------------------------------------------------------- /docs/registry/attributes/nfs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/docs/registry/attributes/nfs.md -------------------------------------------------------------------------------- /docs/registry/attributes/nodejs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/docs/registry/attributes/nodejs.md -------------------------------------------------------------------------------- /docs/registry/attributes/oci.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/docs/registry/attributes/oci.md -------------------------------------------------------------------------------- /docs/registry/attributes/onc-rpc.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/docs/registry/attributes/onc-rpc.md -------------------------------------------------------------------------------- /docs/registry/attributes/openai.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/docs/registry/attributes/openai.md -------------------------------------------------------------------------------- /docs/registry/attributes/openshift.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/docs/registry/attributes/openshift.md -------------------------------------------------------------------------------- /docs/registry/attributes/opentracing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/docs/registry/attributes/opentracing.md -------------------------------------------------------------------------------- /docs/registry/attributes/os.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/docs/registry/attributes/os.md -------------------------------------------------------------------------------- /docs/registry/attributes/otel.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/docs/registry/attributes/otel.md -------------------------------------------------------------------------------- /docs/registry/attributes/peer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/docs/registry/attributes/peer.md -------------------------------------------------------------------------------- /docs/registry/attributes/pprof.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/docs/registry/attributes/pprof.md -------------------------------------------------------------------------------- /docs/registry/attributes/process.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/docs/registry/attributes/process.md -------------------------------------------------------------------------------- /docs/registry/attributes/profile.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/docs/registry/attributes/profile.md -------------------------------------------------------------------------------- /docs/registry/attributes/rpc.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/docs/registry/attributes/rpc.md -------------------------------------------------------------------------------- /docs/registry/attributes/security-rule.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/docs/registry/attributes/security-rule.md -------------------------------------------------------------------------------- /docs/registry/attributes/server.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/docs/registry/attributes/server.md -------------------------------------------------------------------------------- /docs/registry/attributes/service.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/docs/registry/attributes/service.md -------------------------------------------------------------------------------- /docs/registry/attributes/session.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/docs/registry/attributes/session.md -------------------------------------------------------------------------------- /docs/registry/attributes/signalr.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/docs/registry/attributes/signalr.md -------------------------------------------------------------------------------- /docs/registry/attributes/source.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/docs/registry/attributes/source.md -------------------------------------------------------------------------------- /docs/registry/attributes/system.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/docs/registry/attributes/system.md -------------------------------------------------------------------------------- /docs/registry/attributes/telemetry.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/docs/registry/attributes/telemetry.md -------------------------------------------------------------------------------- /docs/registry/attributes/test.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/docs/registry/attributes/test.md -------------------------------------------------------------------------------- /docs/registry/attributes/thread.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/docs/registry/attributes/thread.md -------------------------------------------------------------------------------- /docs/registry/attributes/tls.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/docs/registry/attributes/tls.md -------------------------------------------------------------------------------- /docs/registry/attributes/url.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/docs/registry/attributes/url.md -------------------------------------------------------------------------------- /docs/registry/attributes/user-agent.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/docs/registry/attributes/user-agent.md -------------------------------------------------------------------------------- /docs/registry/attributes/user.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/docs/registry/attributes/user.md -------------------------------------------------------------------------------- /docs/registry/attributes/v8js.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/docs/registry/attributes/v8js.md -------------------------------------------------------------------------------- /docs/registry/attributes/vcs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/docs/registry/attributes/vcs.md -------------------------------------------------------------------------------- /docs/registry/attributes/webengine.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/docs/registry/attributes/webengine.md -------------------------------------------------------------------------------- /docs/registry/attributes/zos.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/docs/registry/attributes/zos.md -------------------------------------------------------------------------------- /docs/registry/entities/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/docs/registry/entities/README.md -------------------------------------------------------------------------------- /docs/registry/entities/android.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/docs/registry/entities/android.md -------------------------------------------------------------------------------- /docs/registry/entities/app.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/docs/registry/entities/app.md -------------------------------------------------------------------------------- /docs/registry/entities/aws.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/docs/registry/entities/aws.md -------------------------------------------------------------------------------- /docs/registry/entities/browser.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/docs/registry/entities/browser.md -------------------------------------------------------------------------------- /docs/registry/entities/cicd.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/docs/registry/entities/cicd.md -------------------------------------------------------------------------------- /docs/registry/entities/cloud.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/docs/registry/entities/cloud.md -------------------------------------------------------------------------------- /docs/registry/entities/cloudfoundry.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/docs/registry/entities/cloudfoundry.md -------------------------------------------------------------------------------- /docs/registry/entities/container.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/docs/registry/entities/container.md -------------------------------------------------------------------------------- /docs/registry/entities/deployment.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/docs/registry/entities/deployment.md -------------------------------------------------------------------------------- /docs/registry/entities/device.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/docs/registry/entities/device.md -------------------------------------------------------------------------------- /docs/registry/entities/faas.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/docs/registry/entities/faas.md -------------------------------------------------------------------------------- /docs/registry/entities/gcp.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/docs/registry/entities/gcp.md -------------------------------------------------------------------------------- /docs/registry/entities/heroku.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/docs/registry/entities/heroku.md -------------------------------------------------------------------------------- /docs/registry/entities/host.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/docs/registry/entities/host.md -------------------------------------------------------------------------------- /docs/registry/entities/k8s.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/docs/registry/entities/k8s.md -------------------------------------------------------------------------------- /docs/registry/entities/openshift.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/docs/registry/entities/openshift.md -------------------------------------------------------------------------------- /docs/registry/entities/os.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/docs/registry/entities/os.md -------------------------------------------------------------------------------- /docs/registry/entities/otel.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/docs/registry/entities/otel.md -------------------------------------------------------------------------------- /docs/registry/entities/process.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/docs/registry/entities/process.md -------------------------------------------------------------------------------- /docs/registry/entities/service.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/docs/registry/entities/service.md -------------------------------------------------------------------------------- /docs/registry/entities/telemetry.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/docs/registry/entities/telemetry.md -------------------------------------------------------------------------------- /docs/registry/entities/vcs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/docs/registry/entities/vcs.md -------------------------------------------------------------------------------- /docs/registry/entities/webengine.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/docs/registry/entities/webengine.md -------------------------------------------------------------------------------- /docs/registry/entities/zos.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/docs/registry/entities/zos.md -------------------------------------------------------------------------------- /docs/resource/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/docs/resource/README.md -------------------------------------------------------------------------------- /docs/resource/android.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/docs/resource/android.md -------------------------------------------------------------------------------- /docs/resource/browser.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/docs/resource/browser.md -------------------------------------------------------------------------------- /docs/resource/cicd.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/docs/resource/cicd.md -------------------------------------------------------------------------------- /docs/resource/cloud-provider/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/docs/resource/cloud-provider/README.md -------------------------------------------------------------------------------- /docs/resource/cloud-provider/aws/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/docs/resource/cloud-provider/aws/README.md -------------------------------------------------------------------------------- /docs/resource/cloud-provider/aws/ecs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/docs/resource/cloud-provider/aws/ecs.md -------------------------------------------------------------------------------- /docs/resource/cloud-provider/aws/eks.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/docs/resource/cloud-provider/aws/eks.md -------------------------------------------------------------------------------- /docs/resource/cloud-provider/aws/logs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/docs/resource/cloud-provider/aws/logs.md -------------------------------------------------------------------------------- /docs/resource/cloud-provider/gcp/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/docs/resource/cloud-provider/gcp/README.md -------------------------------------------------------------------------------- /docs/resource/cloud-provider/gcp/apphub.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/docs/resource/cloud-provider/gcp/apphub.md -------------------------------------------------------------------------------- /docs/resource/cloud-provider/gcp/cloud-run.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/docs/resource/cloud-provider/gcp/cloud-run.md -------------------------------------------------------------------------------- /docs/resource/cloud-provider/gcp/gce.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/docs/resource/cloud-provider/gcp/gce.md -------------------------------------------------------------------------------- /docs/resource/cloud-provider/heroku.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/docs/resource/cloud-provider/heroku.md -------------------------------------------------------------------------------- /docs/resource/cloud.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/docs/resource/cloud.md -------------------------------------------------------------------------------- /docs/resource/cloudfoundry.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/docs/resource/cloudfoundry.md -------------------------------------------------------------------------------- /docs/resource/container.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/docs/resource/container.md -------------------------------------------------------------------------------- /docs/resource/deployment-environment.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/docs/resource/deployment-environment.md -------------------------------------------------------------------------------- /docs/resource/device.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/docs/resource/device.md -------------------------------------------------------------------------------- /docs/resource/faas.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/docs/resource/faas.md -------------------------------------------------------------------------------- /docs/resource/host.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/docs/resource/host.md -------------------------------------------------------------------------------- /docs/resource/k8s/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/docs/resource/k8s/README.md -------------------------------------------------------------------------------- /docs/resource/k8s/openshift.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/docs/resource/k8s/openshift.md -------------------------------------------------------------------------------- /docs/resource/os.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/docs/resource/os.md -------------------------------------------------------------------------------- /docs/resource/process.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/docs/resource/process.md -------------------------------------------------------------------------------- /docs/resource/service.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/docs/resource/service.md -------------------------------------------------------------------------------- /docs/resource/webengine.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/docs/resource/webengine.md -------------------------------------------------------------------------------- /docs/resource/zos.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/docs/resource/zos.md -------------------------------------------------------------------------------- /docs/rpc/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/docs/rpc/README.md -------------------------------------------------------------------------------- /docs/rpc/connect-rpc.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/docs/rpc/connect-rpc.md -------------------------------------------------------------------------------- /docs/rpc/grpc.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/docs/rpc/grpc.md -------------------------------------------------------------------------------- /docs/rpc/json-rpc.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/docs/rpc/json-rpc.md -------------------------------------------------------------------------------- /docs/rpc/rpc-metrics.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/docs/rpc/rpc-metrics.md -------------------------------------------------------------------------------- /docs/rpc/rpc-spans.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/docs/rpc/rpc-spans.md -------------------------------------------------------------------------------- /docs/runtime/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/docs/runtime/README.md -------------------------------------------------------------------------------- /docs/runtime/cpython-metrics.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/docs/runtime/cpython-metrics.md -------------------------------------------------------------------------------- /docs/runtime/dotnet-metrics.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/docs/runtime/dotnet-metrics.md -------------------------------------------------------------------------------- /docs/runtime/go-metrics.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/docs/runtime/go-metrics.md -------------------------------------------------------------------------------- /docs/runtime/jvm-metrics.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/docs/runtime/jvm-metrics.md -------------------------------------------------------------------------------- /docs/runtime/nodejs-metrics.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/docs/runtime/nodejs-metrics.md -------------------------------------------------------------------------------- /docs/runtime/v8js-metrics.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/docs/runtime/v8js-metrics.md -------------------------------------------------------------------------------- /docs/system/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/docs/system/README.md -------------------------------------------------------------------------------- /docs/system/container-metrics.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/docs/system/container-metrics.md -------------------------------------------------------------------------------- /docs/system/k8s-metrics.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/docs/system/k8s-metrics.md -------------------------------------------------------------------------------- /docs/system/openshift-metrics.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/docs/system/openshift-metrics.md -------------------------------------------------------------------------------- /docs/system/process-metrics.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/docs/system/process-metrics.md -------------------------------------------------------------------------------- /docs/system/system-metrics.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/docs/system/system-metrics.md -------------------------------------------------------------------------------- /docs/url/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/docs/url/README.md -------------------------------------------------------------------------------- /internal/tools/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/internal/tools/go.mod -------------------------------------------------------------------------------- /internal/tools/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/internal/tools/go.sum -------------------------------------------------------------------------------- /internal/tools/schema_check.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/internal/tools/schema_check.sh -------------------------------------------------------------------------------- /internal/tools/scripts/find-dead-yaml.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/internal/tools/scripts/find-dead-yaml.sh -------------------------------------------------------------------------------- /internal/tools/scripts/generate-registry-area-labels.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/internal/tools/scripts/generate-registry-area-labels.sh -------------------------------------------------------------------------------- /internal/tools/scripts/generate-schema-next.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/internal/tools/scripts/generate-schema-next.sh -------------------------------------------------------------------------------- /internal/tools/scripts/registry/areas-weaver.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/internal/tools/scripts/registry/areas-weaver.yaml -------------------------------------------------------------------------------- /internal/tools/scripts/registry/areas.md.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/internal/tools/scripts/registry/areas.md.j2 -------------------------------------------------------------------------------- /internal/tools/scripts/registry/signal-groups-weaver.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/internal/tools/scripts/registry/signal-groups-weaver.yaml -------------------------------------------------------------------------------- /internal/tools/scripts/registry/signal-groups.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/internal/tools/scripts/registry/signal-groups.j2 -------------------------------------------------------------------------------- /internal/tools/scripts/schema-diff/yaml/schema-diff.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/internal/tools/scripts/schema-diff/yaml/schema-diff.j2 -------------------------------------------------------------------------------- /internal/tools/scripts/schema-diff/yaml/weaver.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/internal/tools/scripts/schema-diff/yaml/weaver.yaml -------------------------------------------------------------------------------- /internal/tools/scripts/update-areas-table.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/internal/tools/scripts/update-areas-table.py -------------------------------------------------------------------------------- /internal/tools/scripts/update-issue-template-areas.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/internal/tools/scripts/update-issue-template-areas.sh -------------------------------------------------------------------------------- /internal/tools/tools.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/internal/tools/tools.go -------------------------------------------------------------------------------- /issue-management.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/issue-management.md -------------------------------------------------------------------------------- /model/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/model/README.md -------------------------------------------------------------------------------- /model/android/deprecated/registry-deprecated.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/model/android/deprecated/registry-deprecated.yaml -------------------------------------------------------------------------------- /model/android/entities.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/model/android/entities.yaml -------------------------------------------------------------------------------- /model/android/registry.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/model/android/registry.yaml -------------------------------------------------------------------------------- /model/app/entities.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/model/app/entities.yaml -------------------------------------------------------------------------------- /model/app/events.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/model/app/events.yaml -------------------------------------------------------------------------------- /model/app/registry.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/model/app/registry.yaml -------------------------------------------------------------------------------- /model/artifact/registry.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/model/artifact/registry.yaml -------------------------------------------------------------------------------- /model/aspnetcore/metrics.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/model/aspnetcore/metrics.yaml -------------------------------------------------------------------------------- /model/aspnetcore/registry.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/model/aspnetcore/registry.yaml -------------------------------------------------------------------------------- /model/aws/ecs-entities.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/model/aws/ecs-entities.yaml -------------------------------------------------------------------------------- /model/aws/eks-entities.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/model/aws/eks-entities.yaml -------------------------------------------------------------------------------- /model/aws/lambda-spans.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/model/aws/lambda-spans.yaml -------------------------------------------------------------------------------- /model/aws/logs-entities.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/model/aws/logs-entities.yaml -------------------------------------------------------------------------------- /model/aws/registry.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/model/aws/registry.yaml -------------------------------------------------------------------------------- /model/aws/sdk-spans.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/model/aws/sdk-spans.yaml -------------------------------------------------------------------------------- /model/azure/cosmosdb-metrics.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/model/azure/cosmosdb-metrics.yaml -------------------------------------------------------------------------------- /model/azure/deprecated/events-deprecated.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/model/azure/deprecated/events-deprecated.yaml -------------------------------------------------------------------------------- /model/azure/deprecated/registry-deprecated.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/model/azure/deprecated/registry-deprecated.yaml -------------------------------------------------------------------------------- /model/azure/events.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/model/azure/events.yaml -------------------------------------------------------------------------------- /model/azure/registry.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/model/azure/registry.yaml -------------------------------------------------------------------------------- /model/browser/entities.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/model/browser/entities.yaml -------------------------------------------------------------------------------- /model/browser/events.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/model/browser/events.yaml -------------------------------------------------------------------------------- /model/browser/registry.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/model/browser/registry.yaml -------------------------------------------------------------------------------- /model/cassandra/registry.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/model/cassandra/registry.yaml -------------------------------------------------------------------------------- /model/cicd/entities.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/model/cicd/entities.yaml -------------------------------------------------------------------------------- /model/cicd/metrics.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/model/cicd/metrics.yaml -------------------------------------------------------------------------------- /model/cicd/registry.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/model/cicd/registry.yaml -------------------------------------------------------------------------------- /model/cicd/spans.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/model/cicd/spans.yaml -------------------------------------------------------------------------------- /model/cli/spans.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/model/cli/spans.yaml -------------------------------------------------------------------------------- /model/client/common.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/model/client/common.yaml -------------------------------------------------------------------------------- /model/client/registry.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/model/client/registry.yaml -------------------------------------------------------------------------------- /model/cloud/entities.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/model/cloud/entities.yaml -------------------------------------------------------------------------------- /model/cloud/registry.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/model/cloud/registry.yaml -------------------------------------------------------------------------------- /model/cloudevents/registry.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/model/cloudevents/registry.yaml -------------------------------------------------------------------------------- /model/cloudevents/spans.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/model/cloudevents/spans.yaml -------------------------------------------------------------------------------- /model/cloudfoundry/entities.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/model/cloudfoundry/entities.yaml -------------------------------------------------------------------------------- /model/cloudfoundry/registry.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/model/cloudfoundry/registry.yaml -------------------------------------------------------------------------------- /model/code/common.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/model/code/common.yaml -------------------------------------------------------------------------------- /model/code/registry-deprecated.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/model/code/registry-deprecated.yaml -------------------------------------------------------------------------------- /model/code/registry.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/model/code/registry.yaml -------------------------------------------------------------------------------- /model/container/deprecated/registry-deprecated.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/model/container/deprecated/registry-deprecated.yaml -------------------------------------------------------------------------------- /model/container/entities.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/model/container/entities.yaml -------------------------------------------------------------------------------- /model/container/metrics.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/model/container/metrics.yaml -------------------------------------------------------------------------------- /model/container/registry.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/model/container/registry.yaml -------------------------------------------------------------------------------- /model/cpu/deprecated.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/model/cpu/deprecated.yaml -------------------------------------------------------------------------------- /model/cpu/registry.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/model/cpu/registry.yaml -------------------------------------------------------------------------------- /model/cpython/metrics.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/model/cpython/metrics.yaml -------------------------------------------------------------------------------- /model/cpython/registry.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/model/cpython/registry.yaml -------------------------------------------------------------------------------- /model/db/common.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/model/db/common.yaml -------------------------------------------------------------------------------- /model/db/deprecated/metrics-deprecated.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/model/db/deprecated/metrics-deprecated.yaml -------------------------------------------------------------------------------- /model/db/deprecated/registry-deprecated.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/model/db/deprecated/registry-deprecated.yaml -------------------------------------------------------------------------------- /model/db/metrics.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/model/db/metrics.yaml -------------------------------------------------------------------------------- /model/db/registry.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/model/db/registry.yaml -------------------------------------------------------------------------------- /model/db/spans.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/model/db/spans.yaml -------------------------------------------------------------------------------- /model/deployment/deprecated/registry-deprecated.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/model/deployment/deprecated/registry-deprecated.yaml -------------------------------------------------------------------------------- /model/deployment/entities.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/model/deployment/entities.yaml -------------------------------------------------------------------------------- /model/deployment/registry.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/model/deployment/registry.yaml -------------------------------------------------------------------------------- /model/destination/common.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/model/destination/common.yaml -------------------------------------------------------------------------------- /model/destination/registry.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/model/destination/registry.yaml -------------------------------------------------------------------------------- /model/device/entities.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/model/device/entities.yaml -------------------------------------------------------------------------------- /model/device/events.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/model/device/events.yaml -------------------------------------------------------------------------------- /model/device/registry.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/model/device/registry.yaml -------------------------------------------------------------------------------- /model/disk/registry.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/model/disk/registry.yaml -------------------------------------------------------------------------------- /model/dns/metrics.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/model/dns/metrics.yaml -------------------------------------------------------------------------------- /model/dns/registry.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/model/dns/registry.yaml -------------------------------------------------------------------------------- /model/dotnet/network-spans.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/model/dotnet/network-spans.yaml -------------------------------------------------------------------------------- /model/dotnet/registry.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/model/dotnet/registry.yaml -------------------------------------------------------------------------------- /model/dotnet/runtime-metrics.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/model/dotnet/runtime-metrics.yaml -------------------------------------------------------------------------------- /model/elasticsearch/registry.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/model/elasticsearch/registry.yaml -------------------------------------------------------------------------------- /model/enduser/deprecated/registry-deprecated.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/model/enduser/deprecated/registry-deprecated.yaml -------------------------------------------------------------------------------- /model/enduser/registry.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/model/enduser/registry.yaml -------------------------------------------------------------------------------- /model/error/registry.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/model/error/registry.yaml -------------------------------------------------------------------------------- /model/event/deprecated/registry-deprecated.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/model/event/deprecated/registry-deprecated.yaml -------------------------------------------------------------------------------- /model/exceptions/deprecated/registry-deprecated.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/model/exceptions/deprecated/registry-deprecated.yaml -------------------------------------------------------------------------------- /model/exceptions/events.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/model/exceptions/events.yaml -------------------------------------------------------------------------------- /model/exceptions/logs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/model/exceptions/logs.yaml -------------------------------------------------------------------------------- /model/exceptions/registry.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/model/exceptions/registry.yaml -------------------------------------------------------------------------------- /model/faas/common.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/model/faas/common.yaml -------------------------------------------------------------------------------- /model/faas/entities.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/model/faas/entities.yaml -------------------------------------------------------------------------------- /model/faas/metrics.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/model/faas/metrics.yaml -------------------------------------------------------------------------------- /model/faas/registry.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/model/faas/registry.yaml -------------------------------------------------------------------------------- /model/faas/spans.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/model/faas/spans.yaml -------------------------------------------------------------------------------- /model/feature-flags/deprecated/registry-deprecated.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/model/feature-flags/deprecated/registry-deprecated.yaml -------------------------------------------------------------------------------- /model/feature-flags/events.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/model/feature-flags/events.yaml -------------------------------------------------------------------------------- /model/feature-flags/registry.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/model/feature-flags/registry.yaml -------------------------------------------------------------------------------- /model/file/registry.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/model/file/registry.yaml -------------------------------------------------------------------------------- /model/gcp/apphub.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/model/gcp/apphub.yaml -------------------------------------------------------------------------------- /model/gcp/cloud-run-entities.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/model/gcp/cloud-run-entities.yaml -------------------------------------------------------------------------------- /model/gcp/common.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/model/gcp/common.yml -------------------------------------------------------------------------------- /model/gcp/gce-entities.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/model/gcp/gce-entities.yaml -------------------------------------------------------------------------------- /model/gcp/registry.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/model/gcp/registry.yaml -------------------------------------------------------------------------------- /model/gen-ai/deprecated/events-deprecated.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/model/gen-ai/deprecated/events-deprecated.yaml -------------------------------------------------------------------------------- /model/gen-ai/deprecated/registry-deprecated.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/model/gen-ai/deprecated/registry-deprecated.yaml -------------------------------------------------------------------------------- /model/gen-ai/events.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/model/gen-ai/events.yaml -------------------------------------------------------------------------------- /model/gen-ai/metrics.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/model/gen-ai/metrics.yaml -------------------------------------------------------------------------------- /model/gen-ai/registry.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/model/gen-ai/registry.yaml -------------------------------------------------------------------------------- /model/gen-ai/spans.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/model/gen-ai/spans.yaml -------------------------------------------------------------------------------- /model/geo/registry.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/model/geo/registry.yaml -------------------------------------------------------------------------------- /model/go/metrics.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/model/go/metrics.yaml -------------------------------------------------------------------------------- /model/go/registry.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/model/go/registry.yaml -------------------------------------------------------------------------------- /model/graphql/registry.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/model/graphql/registry.yaml -------------------------------------------------------------------------------- /model/graphql/spans.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/model/graphql/spans.yml -------------------------------------------------------------------------------- /model/hardware/battery-metrics.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/model/hardware/battery-metrics.yaml -------------------------------------------------------------------------------- /model/hardware/common-metrics.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/model/hardware/common-metrics.yaml -------------------------------------------------------------------------------- /model/hardware/common.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/model/hardware/common.yaml -------------------------------------------------------------------------------- /model/hardware/cpu-metrics.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/model/hardware/cpu-metrics.yaml -------------------------------------------------------------------------------- /model/hardware/disk-controller-metrics.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/model/hardware/disk-controller-metrics.yaml -------------------------------------------------------------------------------- /model/hardware/enclosure-metrics.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/model/hardware/enclosure-metrics.yaml -------------------------------------------------------------------------------- /model/hardware/fan-metrics.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/model/hardware/fan-metrics.yaml -------------------------------------------------------------------------------- /model/hardware/gpu-metrics.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/model/hardware/gpu-metrics.yaml -------------------------------------------------------------------------------- /model/hardware/host-metrics.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/model/hardware/host-metrics.yaml -------------------------------------------------------------------------------- /model/hardware/logical-disk-metrics.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/model/hardware/logical-disk-metrics.yaml -------------------------------------------------------------------------------- /model/hardware/memory-metrics.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/model/hardware/memory-metrics.yaml -------------------------------------------------------------------------------- /model/hardware/network-metrics.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/model/hardware/network-metrics.yaml -------------------------------------------------------------------------------- /model/hardware/physical-disk-metrics.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/model/hardware/physical-disk-metrics.yaml -------------------------------------------------------------------------------- /model/hardware/power-supply-metrics.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/model/hardware/power-supply-metrics.yaml -------------------------------------------------------------------------------- /model/hardware/registry.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/model/hardware/registry.yaml -------------------------------------------------------------------------------- /model/hardware/tape-drive-metrics.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/model/hardware/tape-drive-metrics.yaml -------------------------------------------------------------------------------- /model/hardware/temperature-metrics.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/model/hardware/temperature-metrics.yaml -------------------------------------------------------------------------------- /model/hardware/voltage-metrics.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/model/hardware/voltage-metrics.yaml -------------------------------------------------------------------------------- /model/heroku/entities.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/model/heroku/entities.yaml -------------------------------------------------------------------------------- /model/heroku/registry.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/model/heroku/registry.yaml -------------------------------------------------------------------------------- /model/host/entities.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/model/host/entities.yaml -------------------------------------------------------------------------------- /model/host/registry.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/model/host/registry.yaml -------------------------------------------------------------------------------- /model/http/common.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/model/http/common.yaml -------------------------------------------------------------------------------- /model/http/deprecated/registry-deprecated.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/model/http/deprecated/registry-deprecated.yaml -------------------------------------------------------------------------------- /model/http/metrics.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/model/http/metrics.yaml -------------------------------------------------------------------------------- /model/http/registry.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/model/http/registry.yaml -------------------------------------------------------------------------------- /model/http/spans.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/model/http/spans.yaml -------------------------------------------------------------------------------- /model/ios/deprecated/registry-deprecated.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/model/ios/deprecated/registry-deprecated.yaml -------------------------------------------------------------------------------- /model/ios/registry.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/model/ios/registry.yaml -------------------------------------------------------------------------------- /model/jsonrpc/registry.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/model/jsonrpc/registry.yaml -------------------------------------------------------------------------------- /model/jvm/deprecated/metrics-deprecated.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/model/jvm/deprecated/metrics-deprecated.yaml -------------------------------------------------------------------------------- /model/jvm/metrics-experimental.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/model/jvm/metrics-experimental.yaml -------------------------------------------------------------------------------- /model/jvm/metrics.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/model/jvm/metrics.yaml -------------------------------------------------------------------------------- /model/jvm/registry.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/model/jvm/registry.yaml -------------------------------------------------------------------------------- /model/k8s/deprecated/metrics-deprecated.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/model/k8s/deprecated/metrics-deprecated.yaml -------------------------------------------------------------------------------- /model/k8s/deprecated/registry-deprecated.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/model/k8s/deprecated/registry-deprecated.yaml -------------------------------------------------------------------------------- /model/k8s/entities.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/model/k8s/entities.yaml -------------------------------------------------------------------------------- /model/k8s/metrics.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/model/k8s/metrics.yaml -------------------------------------------------------------------------------- /model/k8s/registry.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/model/k8s/registry.yaml -------------------------------------------------------------------------------- /model/kestrel/metrics.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/model/kestrel/metrics.yaml -------------------------------------------------------------------------------- /model/linux/registry-deprecated.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/model/linux/registry-deprecated.yaml -------------------------------------------------------------------------------- /model/log/common.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/model/log/common.yaml -------------------------------------------------------------------------------- /model/log/registry.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/model/log/registry.yaml -------------------------------------------------------------------------------- /model/mainframe/registry_lpar.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/model/mainframe/registry_lpar.yaml -------------------------------------------------------------------------------- /model/messaging/common.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/model/messaging/common.yaml -------------------------------------------------------------------------------- /model/messaging/deprecated/metrics-deprecated.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/model/messaging/deprecated/metrics-deprecated.yaml -------------------------------------------------------------------------------- /model/messaging/deprecated/registry-deprecated.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/model/messaging/deprecated/registry-deprecated.yaml -------------------------------------------------------------------------------- /model/messaging/metrics.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/model/messaging/metrics.yaml -------------------------------------------------------------------------------- /model/messaging/registry.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/model/messaging/registry.yaml -------------------------------------------------------------------------------- /model/messaging/spans.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/model/messaging/spans.yaml -------------------------------------------------------------------------------- /model/network/common.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/model/network/common.yaml -------------------------------------------------------------------------------- /model/network/deprecated/registry-deprecated.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/model/network/deprecated/registry-deprecated.yaml -------------------------------------------------------------------------------- /model/network/registry.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/model/network/registry.yaml -------------------------------------------------------------------------------- /model/nfs/metrics.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/model/nfs/metrics.yaml -------------------------------------------------------------------------------- /model/nfs/registry.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/model/nfs/registry.yaml -------------------------------------------------------------------------------- /model/nodejs/metrics.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/model/nodejs/metrics.yaml -------------------------------------------------------------------------------- /model/nodejs/registry.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/model/nodejs/registry.yaml -------------------------------------------------------------------------------- /model/oci/registry.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/model/oci/registry.yaml -------------------------------------------------------------------------------- /model/onc_rpc/registry.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/model/onc_rpc/registry.yaml -------------------------------------------------------------------------------- /model/openai/registry.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/model/openai/registry.yaml -------------------------------------------------------------------------------- /model/openshift/entities.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/model/openshift/entities.yaml -------------------------------------------------------------------------------- /model/openshift/metrics.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/model/openshift/metrics.yaml -------------------------------------------------------------------------------- /model/openshift/registry.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/model/openshift/registry.yaml -------------------------------------------------------------------------------- /model/opentracing/common.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/model/opentracing/common.yaml -------------------------------------------------------------------------------- /model/opentracing/registry.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/model/opentracing/registry.yaml -------------------------------------------------------------------------------- /model/os/entities.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/model/os/entities.yaml -------------------------------------------------------------------------------- /model/os/registry.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/model/os/registry.yaml -------------------------------------------------------------------------------- /model/otel/common.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/model/otel/common.yaml -------------------------------------------------------------------------------- /model/otel/deprecated/entities-deprecated.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/model/otel/deprecated/entities-deprecated.yaml -------------------------------------------------------------------------------- /model/otel/deprecated/metrics-deprecated.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/model/otel/deprecated/metrics-deprecated.yaml -------------------------------------------------------------------------------- /model/otel/deprecated/registry-deprecated.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/model/otel/deprecated/registry-deprecated.yaml -------------------------------------------------------------------------------- /model/otel/metrics.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/model/otel/metrics.yaml -------------------------------------------------------------------------------- /model/otel/registry.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/model/otel/registry.yaml -------------------------------------------------------------------------------- /model/peer/common.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/model/peer/common.yaml -------------------------------------------------------------------------------- /model/peer/registry.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/model/peer/registry.yaml -------------------------------------------------------------------------------- /model/pprof/common.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/model/pprof/common.yaml -------------------------------------------------------------------------------- /model/pprof/registry.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/model/pprof/registry.yaml -------------------------------------------------------------------------------- /model/process/deprecated/metrics-deprecated.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/model/process/deprecated/metrics-deprecated.yaml -------------------------------------------------------------------------------- /model/process/deprecated/registry-deprecated.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/model/process/deprecated/registry-deprecated.yaml -------------------------------------------------------------------------------- /model/process/entities.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/model/process/entities.yaml -------------------------------------------------------------------------------- /model/process/metrics.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/model/process/metrics.yaml -------------------------------------------------------------------------------- /model/process/registry.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/model/process/registry.yaml -------------------------------------------------------------------------------- /model/profile/common.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/model/profile/common.yaml -------------------------------------------------------------------------------- /model/profile/registry.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/model/profile/registry.yaml -------------------------------------------------------------------------------- /model/rpc/common.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/model/rpc/common.yaml -------------------------------------------------------------------------------- /model/rpc/deprecated/metrics-deprecated.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/model/rpc/deprecated/metrics-deprecated.yaml -------------------------------------------------------------------------------- /model/rpc/deprecated/registry-deprecated.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/model/rpc/deprecated/registry-deprecated.yaml -------------------------------------------------------------------------------- /model/rpc/metrics.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/model/rpc/metrics.yaml -------------------------------------------------------------------------------- /model/rpc/registry.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/model/rpc/registry.yaml -------------------------------------------------------------------------------- /model/rpc/spans.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/model/rpc/spans.yaml -------------------------------------------------------------------------------- /model/security-rule/registry.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/model/security-rule/registry.yaml -------------------------------------------------------------------------------- /model/server/common.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/model/server/common.yaml -------------------------------------------------------------------------------- /model/server/registry.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/model/server/registry.yaml -------------------------------------------------------------------------------- /model/service/entities.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/model/service/entities.yaml -------------------------------------------------------------------------------- /model/service/registry.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/model/service/registry.yaml -------------------------------------------------------------------------------- /model/session/common.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/model/session/common.yaml -------------------------------------------------------------------------------- /model/session/events.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/model/session/events.yaml -------------------------------------------------------------------------------- /model/session/registry.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/model/session/registry.yaml -------------------------------------------------------------------------------- /model/signalr/metrics.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/model/signalr/metrics.yaml -------------------------------------------------------------------------------- /model/signalr/registry.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/model/signalr/registry.yaml -------------------------------------------------------------------------------- /model/source/common.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/model/source/common.yaml -------------------------------------------------------------------------------- /model/source/registry.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/model/source/registry.yaml -------------------------------------------------------------------------------- /model/system/deprecated/metrics-deprecated.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/model/system/deprecated/metrics-deprecated.yaml -------------------------------------------------------------------------------- /model/system/deprecated/registry-deprecated.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/model/system/deprecated/registry-deprecated.yaml -------------------------------------------------------------------------------- /model/system/metrics.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/model/system/metrics.yaml -------------------------------------------------------------------------------- /model/system/registry.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/model/system/registry.yaml -------------------------------------------------------------------------------- /model/telemetry/entities.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/model/telemetry/entities.yaml -------------------------------------------------------------------------------- /model/telemetry/registry.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/model/telemetry/registry.yaml -------------------------------------------------------------------------------- /model/test/registry.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/model/test/registry.yaml -------------------------------------------------------------------------------- /model/thread/common.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/model/thread/common.yaml -------------------------------------------------------------------------------- /model/thread/registry.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/model/thread/registry.yaml -------------------------------------------------------------------------------- /model/tls/deprecated/registry-deprecated.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/model/tls/deprecated/registry-deprecated.yaml -------------------------------------------------------------------------------- /model/tls/registry.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/model/tls/registry.yaml -------------------------------------------------------------------------------- /model/url/common.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/model/url/common.yaml -------------------------------------------------------------------------------- /model/url/registry.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/model/url/registry.yaml -------------------------------------------------------------------------------- /model/user-agent/registry.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/model/user-agent/registry.yaml -------------------------------------------------------------------------------- /model/user/registry.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/model/user/registry.yaml -------------------------------------------------------------------------------- /model/v8js/deprecated/metrics-deprecated.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/model/v8js/deprecated/metrics-deprecated.yaml -------------------------------------------------------------------------------- /model/v8js/metrics.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/model/v8js/metrics.yaml -------------------------------------------------------------------------------- /model/v8js/registry.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/model/v8js/registry.yaml -------------------------------------------------------------------------------- /model/vcs/deprecated/registry-deprecated.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/model/vcs/deprecated/registry-deprecated.yaml -------------------------------------------------------------------------------- /model/vcs/entities.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/model/vcs/entities.yaml -------------------------------------------------------------------------------- /model/vcs/metrics.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/model/vcs/metrics.yaml -------------------------------------------------------------------------------- /model/vcs/registry.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/model/vcs/registry.yaml -------------------------------------------------------------------------------- /model/version.properties: -------------------------------------------------------------------------------- 1 | version=1 2 | -------------------------------------------------------------------------------- /model/webengine/entities.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/model/webengine/entities.yaml -------------------------------------------------------------------------------- /model/webengine/registry.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/model/webengine/registry.yaml -------------------------------------------------------------------------------- /model/zos/common.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/model/zos/common.yaml -------------------------------------------------------------------------------- /model/zos/entities.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/model/zos/entities.yaml -------------------------------------------------------------------------------- /model/zos/registry.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/model/zos/registry.yaml -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/package.json -------------------------------------------------------------------------------- /policies/attribute_name_collisions.rego: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/policies/attribute_name_collisions.rego -------------------------------------------------------------------------------- /policies/attribute_types.rego: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/policies/attribute_types.rego -------------------------------------------------------------------------------- /policies/compatibility.rego: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/policies/compatibility.rego -------------------------------------------------------------------------------- /policies/deprecation.rego: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/policies/deprecation.rego -------------------------------------------------------------------------------- /policies/entity_association.rego: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/policies/entity_association.rego -------------------------------------------------------------------------------- /policies/entity_stability.rego: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/policies/entity_stability.rego -------------------------------------------------------------------------------- /policies/group_stability.rego: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/policies/group_stability.rego -------------------------------------------------------------------------------- /policies/metric_brief_format.rego: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/policies/metric_brief_format.rego -------------------------------------------------------------------------------- /policies/metrics_collisions.rego: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/policies/metrics_collisions.rego -------------------------------------------------------------------------------- /policies/registry.rego: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/policies/registry.rego -------------------------------------------------------------------------------- /policies/yaml_schema.rego: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/policies/yaml_schema.rego -------------------------------------------------------------------------------- /policies_test/attribute_name_collisions_test.rego: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/policies_test/attribute_name_collisions_test.rego -------------------------------------------------------------------------------- /policies_test/attribute_types_test.rego: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/policies_test/attribute_types_test.rego -------------------------------------------------------------------------------- /policies_test/compatibility_test.rego: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/policies_test/compatibility_test.rego -------------------------------------------------------------------------------- /policies_test/deprecation_test.rego: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/policies_test/deprecation_test.rego -------------------------------------------------------------------------------- /policies_test/entity_association_test.rego: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/policies_test/entity_association_test.rego -------------------------------------------------------------------------------- /policies_test/entity_stability_test.rego: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/policies_test/entity_stability_test.rego -------------------------------------------------------------------------------- /policies_test/group_stability_test.rego: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/policies_test/group_stability_test.rego -------------------------------------------------------------------------------- /policies_test/metric_brief_format_test.rego: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/policies_test/metric_brief_format_test.rego -------------------------------------------------------------------------------- /policies_test/metrics_collisions_test.rego: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/policies_test/metrics_collisions_test.rego -------------------------------------------------------------------------------- /policies_test/registry_test.rego: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/policies_test/registry_test.rego -------------------------------------------------------------------------------- /policies_test/yaml_schema_test.rego: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/policies_test/yaml_schema_test.rego -------------------------------------------------------------------------------- /schemas/1.10.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/schemas/1.10.0 -------------------------------------------------------------------------------- /schemas/1.11.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/schemas/1.11.0 -------------------------------------------------------------------------------- /schemas/1.12.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/schemas/1.12.0 -------------------------------------------------------------------------------- /schemas/1.13.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/schemas/1.13.0 -------------------------------------------------------------------------------- /schemas/1.14.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/schemas/1.14.0 -------------------------------------------------------------------------------- /schemas/1.15.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/schemas/1.15.0 -------------------------------------------------------------------------------- /schemas/1.16.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/schemas/1.16.0 -------------------------------------------------------------------------------- /schemas/1.17.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/schemas/1.17.0 -------------------------------------------------------------------------------- /schemas/1.18.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/schemas/1.18.0 -------------------------------------------------------------------------------- /schemas/1.19.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/schemas/1.19.0 -------------------------------------------------------------------------------- /schemas/1.20.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/schemas/1.20.0 -------------------------------------------------------------------------------- /schemas/1.21.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/schemas/1.21.0 -------------------------------------------------------------------------------- /schemas/1.22.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/schemas/1.22.0 -------------------------------------------------------------------------------- /schemas/1.23.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/schemas/1.23.0 -------------------------------------------------------------------------------- /schemas/1.23.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/schemas/1.23.1 -------------------------------------------------------------------------------- /schemas/1.24.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/schemas/1.24.0 -------------------------------------------------------------------------------- /schemas/1.25.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/schemas/1.25.0 -------------------------------------------------------------------------------- /schemas/1.26.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/schemas/1.26.0 -------------------------------------------------------------------------------- /schemas/1.27.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/schemas/1.27.0 -------------------------------------------------------------------------------- /schemas/1.28.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/schemas/1.28.0 -------------------------------------------------------------------------------- /schemas/1.29.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/schemas/1.29.0 -------------------------------------------------------------------------------- /schemas/1.30.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/schemas/1.30.0 -------------------------------------------------------------------------------- /schemas/1.31.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/schemas/1.31.0 -------------------------------------------------------------------------------- /schemas/1.32.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/schemas/1.32.0 -------------------------------------------------------------------------------- /schemas/1.33.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/schemas/1.33.0 -------------------------------------------------------------------------------- /schemas/1.34.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/schemas/1.34.0 -------------------------------------------------------------------------------- /schemas/1.35.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/schemas/1.35.0 -------------------------------------------------------------------------------- /schemas/1.36.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/schemas/1.36.0 -------------------------------------------------------------------------------- /schemas/1.37.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/schemas/1.37.0 -------------------------------------------------------------------------------- /schemas/1.38.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/schemas/1.38.0 -------------------------------------------------------------------------------- /schemas/1.4.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/schemas/1.4.0 -------------------------------------------------------------------------------- /schemas/1.5.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/schemas/1.5.0 -------------------------------------------------------------------------------- /schemas/1.6.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/schemas/1.6.1 -------------------------------------------------------------------------------- /schemas/1.7.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/schemas/1.7.0 -------------------------------------------------------------------------------- /schemas/1.8.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/schemas/1.8.0 -------------------------------------------------------------------------------- /schemas/1.9.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/schemas/1.9.0 -------------------------------------------------------------------------------- /sigs-schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/sigs-schema.json -------------------------------------------------------------------------------- /templates/registry/markdown/attribute_macros.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/templates/registry/markdown/attribute_macros.j2 -------------------------------------------------------------------------------- /templates/registry/markdown/attribute_namespace.md.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/templates/registry/markdown/attribute_namespace.md.j2 -------------------------------------------------------------------------------- /templates/registry/markdown/attribute_table.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/templates/registry/markdown/attribute_table.j2 -------------------------------------------------------------------------------- /templates/registry/markdown/attributes_readme.md.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/templates/registry/markdown/attributes_readme.md.j2 -------------------------------------------------------------------------------- /templates/registry/markdown/body_field_table.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/templates/registry/markdown/body_field_table.j2 -------------------------------------------------------------------------------- /templates/registry/markdown/entity_macros.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/templates/registry/markdown/entity_macros.j2 -------------------------------------------------------------------------------- /templates/registry/markdown/entity_namespace.md.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/templates/registry/markdown/entity_namespace.md.j2 -------------------------------------------------------------------------------- /templates/registry/markdown/entity_readme.md.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/templates/registry/markdown/entity_readme.md.j2 -------------------------------------------------------------------------------- /templates/registry/markdown/enum_macros.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/templates/registry/markdown/enum_macros.j2 -------------------------------------------------------------------------------- /templates/registry/markdown/event_macros.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/templates/registry/markdown/event_macros.j2 -------------------------------------------------------------------------------- /templates/registry/markdown/examples_macros.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/templates/registry/markdown/examples_macros.j2 -------------------------------------------------------------------------------- /templates/registry/markdown/metric_macros.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/templates/registry/markdown/metric_macros.j2 -------------------------------------------------------------------------------- /templates/registry/markdown/metric_table.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/templates/registry/markdown/metric_table.j2 -------------------------------------------------------------------------------- /templates/registry/markdown/notes.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/templates/registry/markdown/notes.j2 -------------------------------------------------------------------------------- /templates/registry/markdown/registry_readme.md.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/templates/registry/markdown/registry_readme.md.j2 -------------------------------------------------------------------------------- /templates/registry/markdown/requirement.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/templates/registry/markdown/requirement.j2 -------------------------------------------------------------------------------- /templates/registry/markdown/resource_macros.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/templates/registry/markdown/resource_macros.j2 -------------------------------------------------------------------------------- /templates/registry/markdown/sampling_macros.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/templates/registry/markdown/sampling_macros.j2 -------------------------------------------------------------------------------- /templates/registry/markdown/snippet.md.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/templates/registry/markdown/snippet.md.j2 -------------------------------------------------------------------------------- /templates/registry/markdown/span_macros.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/templates/registry/markdown/span_macros.j2 -------------------------------------------------------------------------------- /templates/registry/markdown/stability.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/templates/registry/markdown/stability.j2 -------------------------------------------------------------------------------- /templates/registry/markdown/weaver.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/semantic-conventions/HEAD/templates/registry/markdown/weaver.yaml --------------------------------------------------------------------------------