├── .github ├── CODEOWNERS └── workflows │ └── checks.yml ├── .gitignore ├── .markdownlint.yaml ├── .yamllint ├── CONTRIBUTING.md ├── LICENSE ├── Makefile ├── README.md ├── VERSION ├── cloudbuild-e2e.yaml ├── cloudbuild-test.yaml ├── config └── collector.yaml ├── dashboard.png ├── k8s ├── base │ ├── 0_namespace.yaml │ ├── 1_configmap.yaml │ ├── 2_rbac.yaml │ ├── 3_service.yaml │ ├── 4_deployment.yaml │ ├── 5_hpa.yaml │ └── kustomization.yml └── overlays │ └── test │ ├── collector.yaml │ ├── fixture_mount.yaml │ └── kustomization.yaml ├── sample ├── app.yaml └── gke-app.yaml └── test ├── collector.yaml ├── fixtures ├── logs_expect.json ├── logs_input.json ├── metrics_expect.json ├── metrics_input.json ├── self_metrics_expect.json ├── spans_expect.json └── spans_input.json └── verify.bats /.github/CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/otlp-k8s-ingest/HEAD/.github/CODEOWNERS -------------------------------------------------------------------------------- /.github/workflows/checks.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/otlp-k8s-ingest/HEAD/.github/workflows/checks.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/otlp-k8s-ingest/HEAD/.gitignore -------------------------------------------------------------------------------- /.markdownlint.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/otlp-k8s-ingest/HEAD/.markdownlint.yaml -------------------------------------------------------------------------------- /.yamllint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/otlp-k8s-ingest/HEAD/.yamllint -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/otlp-k8s-ingest/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/otlp-k8s-ingest/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/otlp-k8s-ingest/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/otlp-k8s-ingest/HEAD/README.md -------------------------------------------------------------------------------- /VERSION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/otlp-k8s-ingest/HEAD/VERSION -------------------------------------------------------------------------------- /cloudbuild-e2e.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/otlp-k8s-ingest/HEAD/cloudbuild-e2e.yaml -------------------------------------------------------------------------------- /cloudbuild-test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/otlp-k8s-ingest/HEAD/cloudbuild-test.yaml -------------------------------------------------------------------------------- /config/collector.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/otlp-k8s-ingest/HEAD/config/collector.yaml -------------------------------------------------------------------------------- /dashboard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/otlp-k8s-ingest/HEAD/dashboard.png -------------------------------------------------------------------------------- /k8s/base/0_namespace.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/otlp-k8s-ingest/HEAD/k8s/base/0_namespace.yaml -------------------------------------------------------------------------------- /k8s/base/1_configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/otlp-k8s-ingest/HEAD/k8s/base/1_configmap.yaml -------------------------------------------------------------------------------- /k8s/base/2_rbac.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/otlp-k8s-ingest/HEAD/k8s/base/2_rbac.yaml -------------------------------------------------------------------------------- /k8s/base/3_service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/otlp-k8s-ingest/HEAD/k8s/base/3_service.yaml -------------------------------------------------------------------------------- /k8s/base/4_deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/otlp-k8s-ingest/HEAD/k8s/base/4_deployment.yaml -------------------------------------------------------------------------------- /k8s/base/5_hpa.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/otlp-k8s-ingest/HEAD/k8s/base/5_hpa.yaml -------------------------------------------------------------------------------- /k8s/base/kustomization.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/otlp-k8s-ingest/HEAD/k8s/base/kustomization.yml -------------------------------------------------------------------------------- /k8s/overlays/test/collector.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/otlp-k8s-ingest/HEAD/k8s/overlays/test/collector.yaml -------------------------------------------------------------------------------- /k8s/overlays/test/fixture_mount.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/otlp-k8s-ingest/HEAD/k8s/overlays/test/fixture_mount.yaml -------------------------------------------------------------------------------- /k8s/overlays/test/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/otlp-k8s-ingest/HEAD/k8s/overlays/test/kustomization.yaml -------------------------------------------------------------------------------- /sample/app.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/otlp-k8s-ingest/HEAD/sample/app.yaml -------------------------------------------------------------------------------- /sample/gke-app.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/otlp-k8s-ingest/HEAD/sample/gke-app.yaml -------------------------------------------------------------------------------- /test/collector.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/otlp-k8s-ingest/HEAD/test/collector.yaml -------------------------------------------------------------------------------- /test/fixtures/logs_expect.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/otlp-k8s-ingest/HEAD/test/fixtures/logs_expect.json -------------------------------------------------------------------------------- /test/fixtures/logs_input.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/otlp-k8s-ingest/HEAD/test/fixtures/logs_input.json -------------------------------------------------------------------------------- /test/fixtures/metrics_expect.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/otlp-k8s-ingest/HEAD/test/fixtures/metrics_expect.json -------------------------------------------------------------------------------- /test/fixtures/metrics_input.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/otlp-k8s-ingest/HEAD/test/fixtures/metrics_input.json -------------------------------------------------------------------------------- /test/fixtures/self_metrics_expect.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/otlp-k8s-ingest/HEAD/test/fixtures/self_metrics_expect.json -------------------------------------------------------------------------------- /test/fixtures/spans_expect.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/otlp-k8s-ingest/HEAD/test/fixtures/spans_expect.json -------------------------------------------------------------------------------- /test/fixtures/spans_input.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/otlp-k8s-ingest/HEAD/test/fixtures/spans_input.json -------------------------------------------------------------------------------- /test/verify.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/otlp-k8s-ingest/HEAD/test/verify.bats --------------------------------------------------------------------------------