├── .github ├── CODEOWNERS ├── renovate.json5 └── workflows │ ├── checks.yaml │ ├── fossa.yml │ └── ossf-scorecard.yml ├── .gitignore ├── .markdown_link_check_config.json ├── .markdownlint.yaml ├── CHANGELOG.md ├── LICENSE ├── Makefile ├── NOTICE ├── README.md ├── faq.md ├── package.json ├── proto ├── anyvalue.proto └── opamp.proto └── specification.md /.github/CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/opamp-spec/HEAD/.github/CODEOWNERS -------------------------------------------------------------------------------- /.github/renovate.json5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/opamp-spec/HEAD/.github/renovate.json5 -------------------------------------------------------------------------------- /.github/workflows/checks.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/opamp-spec/HEAD/.github/workflows/checks.yaml -------------------------------------------------------------------------------- /.github/workflows/fossa.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/opamp-spec/HEAD/.github/workflows/fossa.yml -------------------------------------------------------------------------------- /.github/workflows/ossf-scorecard.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/opamp-spec/HEAD/.github/workflows/ossf-scorecard.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | .idea 3 | 4 | # Generated code 5 | /gen/ -------------------------------------------------------------------------------- /.markdown_link_check_config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/opamp-spec/HEAD/.markdown_link_check_config.json -------------------------------------------------------------------------------- /.markdownlint.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/opamp-spec/HEAD/.markdownlint.yaml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/opamp-spec/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/opamp-spec/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/opamp-spec/HEAD/Makefile -------------------------------------------------------------------------------- /NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/opamp-spec/HEAD/NOTICE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/opamp-spec/HEAD/README.md -------------------------------------------------------------------------------- /faq.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/opamp-spec/HEAD/faq.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/opamp-spec/HEAD/package.json -------------------------------------------------------------------------------- /proto/anyvalue.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/opamp-spec/HEAD/proto/anyvalue.proto -------------------------------------------------------------------------------- /proto/opamp.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/opamp-spec/HEAD/proto/opamp.proto -------------------------------------------------------------------------------- /specification.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-telemetry/opamp-spec/HEAD/specification.md --------------------------------------------------------------------------------