├── .codeclimate.yml ├── .editorconfig ├── .github ├── CODEOWNERS ├── ISSUE_TEMPLATE │ ├── bug-report.md │ ├── config.yml │ └── story.md ├── ct.yaml ├── renovate.json5 └── workflows │ ├── automated_release.yaml │ ├── load_test.yml │ ├── nightly.yaml │ ├── push_pr.yml │ ├── release-chart.yaml │ ├── release-integration.yml │ ├── repolinter.yml │ └── security.yml ├── .gitignore ├── .golangci.yml ├── .goreleaser-fips.yml ├── .goreleaser.yml ├── .trivyignore ├── CHANGELOG.md ├── CONTRIBUTING.md ├── Dockerfile.dev ├── Dockerfile.release ├── LICENSE ├── Makefile ├── README.md ├── RELEASE.md ├── THIRD_PARTY_NOTICES.md ├── charts ├── load-test-environment │ ├── .helmignore │ ├── Chart.yaml │ ├── README.md │ ├── templates │ │ ├── NOTES.txt │ │ ├── _helpers.tpl │ │ ├── deployment.yaml │ │ └── service.yaml │ └── values.yaml └── nri-prometheus │ ├── .helmignore │ ├── Chart.lock │ ├── Chart.yaml │ ├── README.md │ ├── README.md.gotmpl │ ├── ci │ ├── test-lowdatamode-values.yaml │ ├── test-override-global-lowdatamode.yaml │ └── test-values.yaml │ ├── static │ └── lowdatamodedefaults.yaml │ ├── templates │ ├── _helpers.tpl │ ├── clusterrole.yaml │ ├── clusterrolebinding.yaml │ ├── configmap.yaml │ ├── deployment.yaml │ ├── secret.yaml │ └── serviceaccount.yaml │ ├── tests │ ├── configmap_test.yaml │ ├── deployment_test.yaml │ └── labels_test.yaml │ └── values.yaml ├── cmd ├── k8s-target-retriever │ └── main.go └── nri-prometheus │ ├── config.go │ ├── config_test.go │ ├── fips.go │ ├── main.go │ └── testdata │ └── config-with-legacy-entity-definitions.yaml ├── configs └── nri-prometheus-config.yml.sample ├── deploy └── local.yaml.example ├── go.mod ├── go.sum ├── internal ├── cmd │ └── scraper │ │ ├── scraper.go │ │ ├── scraper_test.go │ │ └── testData │ │ └── testData.prometheus ├── integration │ ├── bounded_harvester.go │ ├── bounded_harvester_test.go │ ├── emitter.go │ ├── emitter_test.go │ ├── fetcher.go │ ├── fetcher_test.go │ ├── harvester_decorator.go │ ├── helpers_test.go │ ├── infra_sdk_emitter.go │ ├── infra_sdk_emitter_test.go │ ├── integration.go │ ├── integration_test.go │ ├── metrics.go │ ├── roundtripper.go │ ├── roundtripper_test.go │ ├── rules.go │ ├── rules_test.go │ ├── scrape_test.go │ ├── telemetry_sdk_emitter.go │ ├── telemetry_sdk_emitter_test.go │ └── test │ │ └── cadvisor.txt ├── pkg │ ├── endpoints │ │ ├── endpoints.go │ │ ├── endpoints_test.go │ │ ├── fixed.go │ │ ├── kubernetes.go │ │ ├── kubernetes_test.go │ │ ├── metrics.go │ │ └── self.go │ ├── labels │ │ ├── labels.go │ │ └── labels_test.go │ └── prometheus │ │ ├── metrics.go │ │ ├── prometheus.go │ │ ├── prometheus_test.go │ │ └── testdata │ │ ├── redis-metrics │ │ └── simple-metrics └── retry │ └── retry.go ├── load-test ├── README.md ├── load_test.go ├── load_test.sh └── mockexporter │ ├── Dockerfile │ ├── load_test_average_sample.data │ ├── load_test_big_sample.data │ ├── load_test_small_sample.data │ └── mockexporter.go └── skaffold.yaml /.codeclimate.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/nri-prometheus/HEAD/.codeclimate.yml -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/nri-prometheus/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/nri-prometheus/HEAD/.github/CODEOWNERS -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug-report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/nri-prometheus/HEAD/.github/ISSUE_TEMPLATE/bug-report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/nri-prometheus/HEAD/.github/ISSUE_TEMPLATE/config.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/story.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/nri-prometheus/HEAD/.github/ISSUE_TEMPLATE/story.md -------------------------------------------------------------------------------- /.github/ct.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/nri-prometheus/HEAD/.github/ct.yaml -------------------------------------------------------------------------------- /.github/renovate.json5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/nri-prometheus/HEAD/.github/renovate.json5 -------------------------------------------------------------------------------- /.github/workflows/automated_release.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/nri-prometheus/HEAD/.github/workflows/automated_release.yaml -------------------------------------------------------------------------------- /.github/workflows/load_test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/nri-prometheus/HEAD/.github/workflows/load_test.yml -------------------------------------------------------------------------------- /.github/workflows/nightly.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/nri-prometheus/HEAD/.github/workflows/nightly.yaml -------------------------------------------------------------------------------- /.github/workflows/push_pr.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/nri-prometheus/HEAD/.github/workflows/push_pr.yml -------------------------------------------------------------------------------- /.github/workflows/release-chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/nri-prometheus/HEAD/.github/workflows/release-chart.yaml -------------------------------------------------------------------------------- /.github/workflows/release-integration.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/nri-prometheus/HEAD/.github/workflows/release-integration.yml -------------------------------------------------------------------------------- /.github/workflows/repolinter.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/nri-prometheus/HEAD/.github/workflows/repolinter.yml -------------------------------------------------------------------------------- /.github/workflows/security.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/nri-prometheus/HEAD/.github/workflows/security.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/nri-prometheus/HEAD/.gitignore -------------------------------------------------------------------------------- /.golangci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/nri-prometheus/HEAD/.golangci.yml -------------------------------------------------------------------------------- /.goreleaser-fips.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/nri-prometheus/HEAD/.goreleaser-fips.yml -------------------------------------------------------------------------------- /.goreleaser.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/nri-prometheus/HEAD/.goreleaser.yml -------------------------------------------------------------------------------- /.trivyignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/nri-prometheus/HEAD/.trivyignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/nri-prometheus/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/nri-prometheus/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Dockerfile.dev: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/nri-prometheus/HEAD/Dockerfile.dev -------------------------------------------------------------------------------- /Dockerfile.release: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/nri-prometheus/HEAD/Dockerfile.release -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/nri-prometheus/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/nri-prometheus/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/nri-prometheus/HEAD/README.md -------------------------------------------------------------------------------- /RELEASE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/nri-prometheus/HEAD/RELEASE.md -------------------------------------------------------------------------------- /THIRD_PARTY_NOTICES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/nri-prometheus/HEAD/THIRD_PARTY_NOTICES.md -------------------------------------------------------------------------------- /charts/load-test-environment/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/nri-prometheus/HEAD/charts/load-test-environment/.helmignore -------------------------------------------------------------------------------- /charts/load-test-environment/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/nri-prometheus/HEAD/charts/load-test-environment/Chart.yaml -------------------------------------------------------------------------------- /charts/load-test-environment/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/nri-prometheus/HEAD/charts/load-test-environment/README.md -------------------------------------------------------------------------------- /charts/load-test-environment/templates/NOTES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/nri-prometheus/HEAD/charts/load-test-environment/templates/NOTES.txt -------------------------------------------------------------------------------- /charts/load-test-environment/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/nri-prometheus/HEAD/charts/load-test-environment/templates/_helpers.tpl -------------------------------------------------------------------------------- /charts/load-test-environment/templates/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/nri-prometheus/HEAD/charts/load-test-environment/templates/deployment.yaml -------------------------------------------------------------------------------- /charts/load-test-environment/templates/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/nri-prometheus/HEAD/charts/load-test-environment/templates/service.yaml -------------------------------------------------------------------------------- /charts/load-test-environment/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/nri-prometheus/HEAD/charts/load-test-environment/values.yaml -------------------------------------------------------------------------------- /charts/nri-prometheus/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/nri-prometheus/HEAD/charts/nri-prometheus/.helmignore -------------------------------------------------------------------------------- /charts/nri-prometheus/Chart.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/nri-prometheus/HEAD/charts/nri-prometheus/Chart.lock -------------------------------------------------------------------------------- /charts/nri-prometheus/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/nri-prometheus/HEAD/charts/nri-prometheus/Chart.yaml -------------------------------------------------------------------------------- /charts/nri-prometheus/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/nri-prometheus/HEAD/charts/nri-prometheus/README.md -------------------------------------------------------------------------------- /charts/nri-prometheus/README.md.gotmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/nri-prometheus/HEAD/charts/nri-prometheus/README.md.gotmpl -------------------------------------------------------------------------------- /charts/nri-prometheus/ci/test-lowdatamode-values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/nri-prometheus/HEAD/charts/nri-prometheus/ci/test-lowdatamode-values.yaml -------------------------------------------------------------------------------- /charts/nri-prometheus/ci/test-override-global-lowdatamode.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/nri-prometheus/HEAD/charts/nri-prometheus/ci/test-override-global-lowdatamode.yaml -------------------------------------------------------------------------------- /charts/nri-prometheus/ci/test-values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/nri-prometheus/HEAD/charts/nri-prometheus/ci/test-values.yaml -------------------------------------------------------------------------------- /charts/nri-prometheus/static/lowdatamodedefaults.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/nri-prometheus/HEAD/charts/nri-prometheus/static/lowdatamodedefaults.yaml -------------------------------------------------------------------------------- /charts/nri-prometheus/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/nri-prometheus/HEAD/charts/nri-prometheus/templates/_helpers.tpl -------------------------------------------------------------------------------- /charts/nri-prometheus/templates/clusterrole.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/nri-prometheus/HEAD/charts/nri-prometheus/templates/clusterrole.yaml -------------------------------------------------------------------------------- /charts/nri-prometheus/templates/clusterrolebinding.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/nri-prometheus/HEAD/charts/nri-prometheus/templates/clusterrolebinding.yaml -------------------------------------------------------------------------------- /charts/nri-prometheus/templates/configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/nri-prometheus/HEAD/charts/nri-prometheus/templates/configmap.yaml -------------------------------------------------------------------------------- /charts/nri-prometheus/templates/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/nri-prometheus/HEAD/charts/nri-prometheus/templates/deployment.yaml -------------------------------------------------------------------------------- /charts/nri-prometheus/templates/secret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/nri-prometheus/HEAD/charts/nri-prometheus/templates/secret.yaml -------------------------------------------------------------------------------- /charts/nri-prometheus/templates/serviceaccount.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/nri-prometheus/HEAD/charts/nri-prometheus/templates/serviceaccount.yaml -------------------------------------------------------------------------------- /charts/nri-prometheus/tests/configmap_test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/nri-prometheus/HEAD/charts/nri-prometheus/tests/configmap_test.yaml -------------------------------------------------------------------------------- /charts/nri-prometheus/tests/deployment_test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/nri-prometheus/HEAD/charts/nri-prometheus/tests/deployment_test.yaml -------------------------------------------------------------------------------- /charts/nri-prometheus/tests/labels_test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/nri-prometheus/HEAD/charts/nri-prometheus/tests/labels_test.yaml -------------------------------------------------------------------------------- /charts/nri-prometheus/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/nri-prometheus/HEAD/charts/nri-prometheus/values.yaml -------------------------------------------------------------------------------- /cmd/k8s-target-retriever/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/nri-prometheus/HEAD/cmd/k8s-target-retriever/main.go -------------------------------------------------------------------------------- /cmd/nri-prometheus/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/nri-prometheus/HEAD/cmd/nri-prometheus/config.go -------------------------------------------------------------------------------- /cmd/nri-prometheus/config_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/nri-prometheus/HEAD/cmd/nri-prometheus/config_test.go -------------------------------------------------------------------------------- /cmd/nri-prometheus/fips.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/nri-prometheus/HEAD/cmd/nri-prometheus/fips.go -------------------------------------------------------------------------------- /cmd/nri-prometheus/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/nri-prometheus/HEAD/cmd/nri-prometheus/main.go -------------------------------------------------------------------------------- /cmd/nri-prometheus/testdata/config-with-legacy-entity-definitions.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/nri-prometheus/HEAD/cmd/nri-prometheus/testdata/config-with-legacy-entity-definitions.yaml -------------------------------------------------------------------------------- /configs/nri-prometheus-config.yml.sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/nri-prometheus/HEAD/configs/nri-prometheus-config.yml.sample -------------------------------------------------------------------------------- /deploy/local.yaml.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/nri-prometheus/HEAD/deploy/local.yaml.example -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/nri-prometheus/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/nri-prometheus/HEAD/go.sum -------------------------------------------------------------------------------- /internal/cmd/scraper/scraper.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/nri-prometheus/HEAD/internal/cmd/scraper/scraper.go -------------------------------------------------------------------------------- /internal/cmd/scraper/scraper_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/nri-prometheus/HEAD/internal/cmd/scraper/scraper_test.go -------------------------------------------------------------------------------- /internal/cmd/scraper/testData/testData.prometheus: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/nri-prometheus/HEAD/internal/cmd/scraper/testData/testData.prometheus -------------------------------------------------------------------------------- /internal/integration/bounded_harvester.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/nri-prometheus/HEAD/internal/integration/bounded_harvester.go -------------------------------------------------------------------------------- /internal/integration/bounded_harvester_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/nri-prometheus/HEAD/internal/integration/bounded_harvester_test.go -------------------------------------------------------------------------------- /internal/integration/emitter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/nri-prometheus/HEAD/internal/integration/emitter.go -------------------------------------------------------------------------------- /internal/integration/emitter_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/nri-prometheus/HEAD/internal/integration/emitter_test.go -------------------------------------------------------------------------------- /internal/integration/fetcher.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/nri-prometheus/HEAD/internal/integration/fetcher.go -------------------------------------------------------------------------------- /internal/integration/fetcher_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/nri-prometheus/HEAD/internal/integration/fetcher_test.go -------------------------------------------------------------------------------- /internal/integration/harvester_decorator.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/nri-prometheus/HEAD/internal/integration/harvester_decorator.go -------------------------------------------------------------------------------- /internal/integration/helpers_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/nri-prometheus/HEAD/internal/integration/helpers_test.go -------------------------------------------------------------------------------- /internal/integration/infra_sdk_emitter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/nri-prometheus/HEAD/internal/integration/infra_sdk_emitter.go -------------------------------------------------------------------------------- /internal/integration/infra_sdk_emitter_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/nri-prometheus/HEAD/internal/integration/infra_sdk_emitter_test.go -------------------------------------------------------------------------------- /internal/integration/integration.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/nri-prometheus/HEAD/internal/integration/integration.go -------------------------------------------------------------------------------- /internal/integration/integration_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/nri-prometheus/HEAD/internal/integration/integration_test.go -------------------------------------------------------------------------------- /internal/integration/metrics.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/nri-prometheus/HEAD/internal/integration/metrics.go -------------------------------------------------------------------------------- /internal/integration/roundtripper.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/nri-prometheus/HEAD/internal/integration/roundtripper.go -------------------------------------------------------------------------------- /internal/integration/roundtripper_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/nri-prometheus/HEAD/internal/integration/roundtripper_test.go -------------------------------------------------------------------------------- /internal/integration/rules.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/nri-prometheus/HEAD/internal/integration/rules.go -------------------------------------------------------------------------------- /internal/integration/rules_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/nri-prometheus/HEAD/internal/integration/rules_test.go -------------------------------------------------------------------------------- /internal/integration/scrape_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/nri-prometheus/HEAD/internal/integration/scrape_test.go -------------------------------------------------------------------------------- /internal/integration/telemetry_sdk_emitter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/nri-prometheus/HEAD/internal/integration/telemetry_sdk_emitter.go -------------------------------------------------------------------------------- /internal/integration/telemetry_sdk_emitter_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/nri-prometheus/HEAD/internal/integration/telemetry_sdk_emitter_test.go -------------------------------------------------------------------------------- /internal/integration/test/cadvisor.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/nri-prometheus/HEAD/internal/integration/test/cadvisor.txt -------------------------------------------------------------------------------- /internal/pkg/endpoints/endpoints.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/nri-prometheus/HEAD/internal/pkg/endpoints/endpoints.go -------------------------------------------------------------------------------- /internal/pkg/endpoints/endpoints_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/nri-prometheus/HEAD/internal/pkg/endpoints/endpoints_test.go -------------------------------------------------------------------------------- /internal/pkg/endpoints/fixed.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/nri-prometheus/HEAD/internal/pkg/endpoints/fixed.go -------------------------------------------------------------------------------- /internal/pkg/endpoints/kubernetes.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/nri-prometheus/HEAD/internal/pkg/endpoints/kubernetes.go -------------------------------------------------------------------------------- /internal/pkg/endpoints/kubernetes_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/nri-prometheus/HEAD/internal/pkg/endpoints/kubernetes_test.go -------------------------------------------------------------------------------- /internal/pkg/endpoints/metrics.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/nri-prometheus/HEAD/internal/pkg/endpoints/metrics.go -------------------------------------------------------------------------------- /internal/pkg/endpoints/self.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/nri-prometheus/HEAD/internal/pkg/endpoints/self.go -------------------------------------------------------------------------------- /internal/pkg/labels/labels.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/nri-prometheus/HEAD/internal/pkg/labels/labels.go -------------------------------------------------------------------------------- /internal/pkg/labels/labels_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/nri-prometheus/HEAD/internal/pkg/labels/labels_test.go -------------------------------------------------------------------------------- /internal/pkg/prometheus/metrics.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/nri-prometheus/HEAD/internal/pkg/prometheus/metrics.go -------------------------------------------------------------------------------- /internal/pkg/prometheus/prometheus.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/nri-prometheus/HEAD/internal/pkg/prometheus/prometheus.go -------------------------------------------------------------------------------- /internal/pkg/prometheus/prometheus_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/nri-prometheus/HEAD/internal/pkg/prometheus/prometheus_test.go -------------------------------------------------------------------------------- /internal/pkg/prometheus/testdata/redis-metrics: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/nri-prometheus/HEAD/internal/pkg/prometheus/testdata/redis-metrics -------------------------------------------------------------------------------- /internal/pkg/prometheus/testdata/simple-metrics: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/nri-prometheus/HEAD/internal/pkg/prometheus/testdata/simple-metrics -------------------------------------------------------------------------------- /internal/retry/retry.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/nri-prometheus/HEAD/internal/retry/retry.go -------------------------------------------------------------------------------- /load-test/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/nri-prometheus/HEAD/load-test/README.md -------------------------------------------------------------------------------- /load-test/load_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/nri-prometheus/HEAD/load-test/load_test.go -------------------------------------------------------------------------------- /load-test/load_test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/nri-prometheus/HEAD/load-test/load_test.sh -------------------------------------------------------------------------------- /load-test/mockexporter/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/nri-prometheus/HEAD/load-test/mockexporter/Dockerfile -------------------------------------------------------------------------------- /load-test/mockexporter/load_test_average_sample.data: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/nri-prometheus/HEAD/load-test/mockexporter/load_test_average_sample.data -------------------------------------------------------------------------------- /load-test/mockexporter/load_test_big_sample.data: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/nri-prometheus/HEAD/load-test/mockexporter/load_test_big_sample.data -------------------------------------------------------------------------------- /load-test/mockexporter/load_test_small_sample.data: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/nri-prometheus/HEAD/load-test/mockexporter/load_test_small_sample.data -------------------------------------------------------------------------------- /load-test/mockexporter/mockexporter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/nri-prometheus/HEAD/load-test/mockexporter/mockexporter.go -------------------------------------------------------------------------------- /skaffold.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/nri-prometheus/HEAD/skaffold.yaml --------------------------------------------------------------------------------