├── .config └── go │ └── env ├── .gitattributes ├── .gitconfig ├── .github ├── ISSUE_TEMPLATE │ ├── 1-feature-request.yml │ ├── 2-bug-report.yml │ ├── 3-documentation-request.yml │ └── config.yml ├── actions │ └── build-image │ │ └── action.yml ├── pull_request_template.md ├── stale.yml └── workflows │ ├── backport.yaml │ ├── changelog-check.yml │ ├── compare-helm-with-jsonnet.yml │ ├── deploy-pr-preview.yml │ ├── flaky-tests.yml │ ├── generate-docs-helm-tests-renovate-pr.yml │ ├── helm-ci.yml │ ├── helm-release.yaml │ ├── helm-weekly-release-pr.yaml │ ├── helm-weekly-release-reviewer.yml │ ├── publish-technical-documentation-next.yml │ ├── publish-technical-documentation-release-helm-charts.yml │ ├── publish-technical-documentation-release-mimir.yml │ ├── push-mimir-build-image.yml │ ├── scripts │ ├── helm-weekly-release.sh │ ├── install-docker.sh │ ├── install-gh.sh │ ├── push-images.sh │ ├── run-integration-tests-group.sh │ └── run-unit-tests-group.sh │ ├── stale.yaml │ ├── test-build-deploy.yml │ ├── test-docs.yml │ ├── trigger-backend-enterprise-update.yml │ ├── update-make-docs.yml │ └── update-vendored-mimir-prometheus.yml ├── .gitignore ├── .golangci.yml ├── .lintignore ├── .prettierignore ├── ADOPTERS.md ├── AGENTS.md ├── CHANGELOG.md ├── CLAUDE.md ├── CODEOWNERS ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── GOVERNANCE.md ├── LICENSE ├── LICENSING.md ├── MAINTAINERS.md ├── Makefile ├── Makefile.local.example ├── README.md ├── RELEASE.md ├── SECURITY.md ├── VERSION ├── cmd ├── metaconvert │ ├── Dockerfile │ ├── main.go │ └── main_test.go ├── mimir │ ├── Dockerfile │ ├── config-descriptor.json │ ├── help-all.txt.tmpl │ ├── help.txt.tmpl │ ├── main.go │ └── main_test.go ├── mimirtool │ ├── Dockerfile │ ├── main.go │ └── tools │ │ └── image-tag └── query-tee │ ├── Dockerfile │ ├── main.go │ └── main_test.go ├── development ├── README.md ├── common │ └── config │ │ └── nginx.conf.template ├── mimir-ingest-storage │ ├── .data-ingester-zone-a-1 │ │ └── .gitignore │ ├── .data-ingester-zone-b-1 │ │ └── .gitignore │ ├── .data-minio │ │ ├── .gitignore │ │ ├── mimir-alertmanager │ │ │ └── .gitignore │ │ ├── mimir-blocks │ │ │ └── .gitignore │ │ └── mimir-ruler │ │ │ └── .gitignore │ ├── .dockerignore │ ├── .gitignore │ ├── Makefile │ ├── activity │ │ └── .gitignore │ ├── compose-down.sh │ ├── compose-up.sh │ ├── compose-update-mimir.sh │ ├── config │ │ ├── alertmanager-fallback-config.yaml │ │ ├── datasource-mimir.yaml │ │ ├── example-alertmanager.yaml │ │ ├── example-rules.yaml │ │ ├── grafana-agent.flow │ │ ├── grafana-provisioning.yaml │ │ ├── mimir.yaml │ │ ├── runtime.yaml │ │ └── tempo.yaml │ ├── dev.dockerfile │ ├── docker-compose.jsonnet │ └── docker-compose.yml ├── mimir-microservices-mode │ ├── .data-ingester-1 │ │ └── .gitignore │ ├── .data-ingester-2 │ │ └── .gitignore │ ├── .data-ingester-3 │ │ └── .gitignore │ ├── .data-minio │ │ ├── .gitignore │ │ ├── mimir-alertmanager │ │ │ └── .gitignore │ │ ├── mimir-ruler │ │ │ └── .gitignore │ │ └── mimir-tsdb │ │ │ └── .gitignore │ ├── .dockerignore │ ├── .gitignore │ ├── Makefile │ ├── activity │ │ └── .gitignore │ ├── compose-down.sh │ ├── compose-up.sh │ ├── config │ │ ├── alertmanager.yaml │ │ ├── dashboards-mimir.yaml │ │ ├── datasources.yaml │ │ ├── grafana-agent.yaml │ │ ├── mimir.yaml │ │ ├── otel-collector.yaml │ │ ├── prom-ha-pair-1.yaml │ │ ├── prom-ha-pair-2.yaml │ │ ├── prometheus.yaml │ │ ├── prometheusRW2.yaml │ │ ├── rules.yaml │ │ └── runtime.yaml │ ├── dev.dockerfile │ ├── docker-compose.jsonnet │ ├── docker-compose.yml │ ├── goland │ │ ├── TSDB Query-frontend (using scheduler).run.xml │ │ ├── TSDB Query-scheduler.run.xml │ │ ├── compactor.run.xml │ │ ├── distributor-1.run.xml │ │ ├── distributor-2.run.xml │ │ ├── ingester-1.run.xml │ │ ├── ingester-2.run.xml │ │ ├── ingester-3.run.xml │ │ ├── querier.run.xml │ │ ├── query-frontend.run.xml │ │ ├── ruler-1.run.xml │ │ ├── ruler-2.run.xml │ │ ├── store-gateway-1.run.xml │ │ ├── store-gateway-2.run.xml │ │ └── store-gateway-3.run.xml │ └── ruler.sh ├── mimir-monolithic-mode-with-swift-storage │ ├── .data-mimir-1 │ │ └── .gitignore │ ├── .data-mimir-2 │ │ └── .gitignore │ ├── .dockerignore │ ├── .gitignore │ ├── compose-down.sh │ ├── compose-up.sh │ ├── config │ │ ├── grafana-agent.yaml │ │ ├── mimir.yaml │ │ ├── prometheus.yaml │ │ └── runtime.yaml │ ├── dev.dockerfile │ └── docker-compose.yml ├── mimir-monolithic-mode │ ├── .data-mimir-1 │ │ └── .gitignore │ ├── .data-mimir-2 │ │ └── .gitignore │ ├── .data-minio │ │ ├── .gitignore │ │ ├── mimir-rules │ │ │ └── .gitignore │ │ └── mimir-tsdb │ │ │ └── .gitignore │ ├── .dockerignore │ ├── .gitignore │ ├── compose-down.sh │ ├── compose-up.sh │ ├── config │ │ ├── config.alloy │ │ ├── datasource-mimir.yaml │ │ ├── grafana-agent.yaml │ │ ├── mimir.yaml │ │ ├── otel-collector-otlp-push-config.yaml │ │ ├── otel-collector-remote-write-config.yaml │ │ ├── prometheus.yaml │ │ ├── prometheusRW2.yaml │ │ └── runtime.yaml │ ├── dev.dockerfile │ └── docker-compose.yml └── tools │ └── upload-block │ ├── README.md │ └── upload-block.sh ├── docs ├── CLAUDE.md ├── Makefile ├── README.md ├── configurations │ ├── demo.yaml │ ├── grafanacon-2022 │ │ ├── agent-setup.yaml │ │ ├── alerts.yaml │ │ ├── index.md │ │ ├── kubernetes-service-monitors.yaml │ │ ├── metrics-instance.yaml │ │ ├── mimir-values.yaml │ │ └── rules.yaml │ ├── overrides-exporter-runtime.yaml │ ├── prometheus-frontend.yml │ ├── requests-mirroring-envoy.yaml │ ├── single-process-config-blocks-gossip-1.yaml │ ├── single-process-config-blocks-gossip-2.yaml │ ├── single-process-config-blocks-tls.yaml │ └── single-process-config-blocks.yaml ├── docs.mk ├── internal │ ├── contributing │ │ ├── README.md │ │ ├── contributing-to-helm-chart.md │ │ ├── design-patterns-and-conventions.md │ │ ├── how-integration-tests-work.md │ │ ├── how-to-convert-config-to-per-tenant-limit.md │ │ ├── how-to-upgrade-golang-version.md │ │ ├── how-to-write-documentation.md │ │ ├── pooling-buffers-for-grpc-messages.md │ │ └── vscode-goimports-settings.json │ ├── how-to-update-the-build-image.md │ ├── multizone-migration-review-help │ │ ├── alertmanager │ │ │ ├── alertmanager-step1.yaml │ │ │ ├── alertmanager-step2.yaml │ │ │ ├── alertmanager-step3.yaml │ │ │ ├── diff-step0-step1.patch │ │ │ ├── diff-step1-step2.patch │ │ │ └── diff-step2-step3.patch │ │ ├── base.yaml │ │ ├── extract-yamls.py │ │ ├── generate-files.sh │ │ ├── ingester │ │ │ ├── diff-step0-step1.patch │ │ │ ├── diff-step1-step2.patch │ │ │ ├── diff-step2-step3.patch │ │ │ ├── diff-step3-step4.patch │ │ │ ├── diff-step4-step5.patch │ │ │ ├── diff-step5-step6.patch │ │ │ ├── diff-step6-step7.patch │ │ │ ├── ingester-step1.yaml │ │ │ ├── ingester-step2.yaml │ │ │ ├── ingester-step3.yaml │ │ │ ├── ingester-step4.yaml │ │ │ ├── ingester-step5.yaml │ │ │ ├── ingester-step6.yaml │ │ │ └── ingester-step7.yaml │ │ └── storegateway │ │ │ ├── diff-step0-step1.patch │ │ │ ├── diff-step1-step2.patch │ │ │ ├── diff-step2-step3.patch │ │ │ ├── storegateway-step1.yaml │ │ │ ├── storegateway-step2.yaml │ │ │ └── storegateway-step3.yaml │ ├── tools │ │ ├── compaction-planner.md │ │ ├── list-deduplicated-blocks.md │ │ ├── mark-blocks.md │ │ ├── query-step-alignment-analysis.md │ │ ├── trafficdump.md │ │ ├── tsdb-tools.md │ │ └── ulidtime.md │ └── usage-tracker.md ├── make-docs ├── proposals │ ├── ingester-unregister-flexibility.md │ ├── query-blocking.md │ └── reduce-multitenancy-cost.md ├── sources │ ├── helm-charts │ │ └── mimir-distributed │ │ │ ├── _index.md │ │ │ ├── configure │ │ │ ├── _index.md │ │ │ ├── configure-autoscaling.md │ │ │ ├── configure-hashicorp-vault-agent.md │ │ │ └── configure-native-histograms-ingestion.md │ │ │ ├── get-started-helm-charts │ │ │ ├── _index.md │ │ │ └── gs-external-access.md │ │ │ ├── migration-guides │ │ │ ├── _index.md │ │ │ ├── migrate-enable-cluster-label-verification │ │ │ │ └── _index.md │ │ │ ├── migrate-from-cortex.md │ │ │ ├── migrate-from-single-zone-with-helm.md │ │ │ ├── migrate-helm-chart-2.x-to-3.0.md │ │ │ ├── migrate-helm-chart-4.x-to-5.0.md │ │ │ ├── migrate-helm-chart-5.x-to-6.0.md │ │ │ └── migrate-to-kubernetes-version-1.25.md │ │ │ ├── release-notes │ │ │ ├── _index.md │ │ │ ├── v3.2.md │ │ │ ├── v3.3.md │ │ │ ├── v4.0.md │ │ │ ├── v4.1.md │ │ │ ├── v4.2.md │ │ │ ├── v4.3.md │ │ │ ├── v4.4.md │ │ │ ├── v4.5.md │ │ │ ├── v5.0.md │ │ │ ├── v5.1.md │ │ │ ├── v5.2.md │ │ │ ├── v5.3.md │ │ │ ├── v5.4.md │ │ │ ├── v5.5.md │ │ │ ├── v5.6.md │ │ │ ├── v5.7.md │ │ │ ├── v5.8.md │ │ │ └── v6.0.md │ │ │ └── run-production-environment-with-helm │ │ │ ├── _index.md │ │ │ ├── configuration-with-helm.md │ │ │ └── configure-helm-ha-deduplication │ │ │ ├── ha-tracker-status.png │ │ │ ├── index.md │ │ │ └── verify-deduplication.png │ └── mimir │ │ ├── _index.md │ │ ├── configure │ │ ├── .gitignore │ │ ├── _index.md │ │ ├── about-anonymous-usage-statistics-reporting.md │ │ ├── about-configurations.md │ │ ├── about-dns-service-discovery.md │ │ ├── about-ingester-circuit-breakers.md │ │ ├── about-ip-address-logging.md │ │ ├── about-reactive-limiters.md │ │ ├── about-runtime-configuration.md │ │ ├── about-tenant-ids.md │ │ ├── about-versioning.md │ │ ├── configuration-parameters │ │ │ ├── index.md │ │ │ ├── index.template │ │ │ └── param-states.png │ │ ├── configure-blocked-queries.md │ │ ├── configure-custom-trackers.md │ │ ├── configure-experimental-promql-functions.md │ │ ├── configure-hash-rings.md │ │ ├── configure-high-availability-deduplication.md │ │ ├── configure-kafka-backend.md │ │ ├── configure-metrics-storage-retention.md │ │ ├── configure-native-histograms-ingestion.md │ │ ├── configure-object-storage-backend.md │ │ ├── configure-otel-collector.md │ │ ├── configure-out-of-order-samples-ingestion.md │ │ ├── configure-resource-utilization-based-ingester-read-path-limiting.md │ │ ├── configure-shuffle-sharding │ │ │ ├── index.md │ │ │ └── shuffle-sharding-probability.png │ │ ├── configure-spread-minimizing-tokens │ │ │ ├── index.md │ │ │ ├── migration-of-a-zone.png │ │ │ └── no-more-write-requests.png │ │ ├── configure-tracing.md │ │ ├── configure-tsdb-block-upload.md │ │ ├── configure-zone-aware-replication.md │ │ ├── migrate-ha-tracker-to-memberlist.md │ │ └── mirror-requests-to-a-second-cluster │ │ │ ├── index.md │ │ │ └── mirroring-envoy.png │ │ ├── get-started │ │ ├── _index.md │ │ ├── about-grafana-mimir-architecture │ │ │ ├── _index.md │ │ │ ├── about-classic-architecture │ │ │ │ └── index.md │ │ │ ├── about-ingest-storage-architecture │ │ │ │ └── index.md │ │ │ ├── read-path.svg │ │ │ └── write-path.svg │ │ └── play-with-grafana-mimir │ │ │ ├── config │ │ │ ├── alertmanager-fallback-config.yaml │ │ │ ├── grafana-provisioning-dashboards.yaml │ │ │ ├── grafana-provisioning-datasources.yaml │ │ │ ├── mimir.yaml │ │ │ ├── nginx.conf │ │ │ └── prometheus.yaml │ │ │ ├── docker-compose.yml │ │ │ ├── index.md │ │ │ └── tutorial-architecture.png │ │ ├── introduction │ │ └── _index.md │ │ ├── manage │ │ ├── _index.md │ │ ├── mimir-runbooks │ │ │ └── _index.md │ │ ├── monitor-grafana-mimir │ │ │ ├── _index.md │ │ │ ├── dashboards │ │ │ │ ├── _index.md │ │ │ │ ├── alertmanager-resources │ │ │ │ │ ├── index.md │ │ │ │ │ └── mimir-alertmanager-resources.png │ │ │ │ ├── alertmanager │ │ │ │ │ ├── index.md │ │ │ │ │ └── mimir-alertmanager.png │ │ │ │ ├── compactor-resources │ │ │ │ │ ├── index.md │ │ │ │ │ └── mimir-compactor-resources.png │ │ │ │ ├── compactor │ │ │ │ │ ├── index.md │ │ │ │ │ └── mimir-compactor.png │ │ │ │ ├── config │ │ │ │ │ ├── index.md │ │ │ │ │ └── mimir-config.png │ │ │ │ ├── object-store │ │ │ │ │ ├── index.md │ │ │ │ │ └── mimir-object-store.png │ │ │ │ ├── overrides │ │ │ │ │ ├── index.md │ │ │ │ │ └── mimir-overrides.png │ │ │ │ ├── overview-networking │ │ │ │ │ ├── index.md │ │ │ │ │ └── mimir-overview-networking.png │ │ │ │ ├── overview-resources │ │ │ │ │ ├── index.md │ │ │ │ │ └── mimir-overview-resources.png │ │ │ │ ├── overview │ │ │ │ │ ├── index.md │ │ │ │ │ └── mimir-overview.png │ │ │ │ ├── queries │ │ │ │ │ ├── index.md │ │ │ │ │ └── mimir-queries.png │ │ │ │ ├── reads-networking │ │ │ │ │ ├── index.md │ │ │ │ │ └── mimir-reads-networking.png │ │ │ │ ├── reads-resources │ │ │ │ │ ├── index.md │ │ │ │ │ └── mimir-reads-resources.png │ │ │ │ ├── reads │ │ │ │ │ ├── index.md │ │ │ │ │ └── mimir-reads.png │ │ │ │ ├── remote-ruler-reads-networking │ │ │ │ │ ├── index.md │ │ │ │ │ └── mimir-remote-ruler-reads-networking.png │ │ │ │ ├── remote-ruler-reads-resources │ │ │ │ │ ├── index.md │ │ │ │ │ └── mimir-remote-ruler-reads-resources.png │ │ │ │ ├── remote-ruler-reads │ │ │ │ │ ├── index.md │ │ │ │ │ └── mimir-remote-ruler-reads.png │ │ │ │ ├── rollout-operator │ │ │ │ │ └── rollout-operator.png │ │ │ │ ├── rollout-progress │ │ │ │ │ ├── index.md │ │ │ │ │ └── mimir-rollout-progress.png │ │ │ │ ├── ruler │ │ │ │ │ ├── index.md │ │ │ │ │ └── mimir-ruler.png │ │ │ │ ├── scaling │ │ │ │ │ ├── index.md │ │ │ │ │ └── mimir-scaling.png │ │ │ │ ├── slow-queries │ │ │ │ │ └── index.md │ │ │ │ ├── tenants │ │ │ │ │ ├── index.md │ │ │ │ │ └── mimir-tenants.png │ │ │ │ ├── top-tenants │ │ │ │ │ └── index.md │ │ │ │ ├── writes-networking │ │ │ │ │ ├── index.md │ │ │ │ │ └── mimir-writes-networking.png │ │ │ │ ├── writes-resources │ │ │ │ │ ├── index.md │ │ │ │ │ └── mimir-writes-resources.png │ │ │ │ └── writes │ │ │ │ │ ├── index.md │ │ │ │ │ └── mimir-writes.png │ │ │ ├── deploying-monitoring-mixin.md │ │ │ ├── installing-dashboards-and-alerts.md │ │ │ ├── monitor-system-health.md │ │ │ └── requirements.md │ │ ├── run-production-environment │ │ │ ├── _index.md │ │ │ ├── perform-a-rolling-update.md │ │ │ ├── planning-capacity.md │ │ │ ├── production-tips │ │ │ │ ├── avoid-querying-non-compacted-blocks.png │ │ │ │ └── index.md │ │ │ └── scaling-out.md │ │ ├── secure │ │ │ ├── _index.md │ │ │ ├── authentication-and-authorization.md │ │ │ ├── encrypting-data-at-rest.md │ │ │ ├── securing-alertmanager.md │ │ │ └── securing-communications-with-tls.md │ │ ├── tools │ │ │ ├── _index.md │ │ │ ├── listblocks.md │ │ │ ├── markblocks.md │ │ │ ├── mimir-continuous-test.md │ │ │ ├── mimirtool.md │ │ │ ├── query-tee.md │ │ │ └── tenant-injector.md │ │ └── use-exemplars │ │ │ ├── _index.md │ │ │ ├── about-exemplars.md │ │ │ ├── before-you-begin.md │ │ │ ├── store-exemplars.md │ │ │ └── view-exemplar-data.md │ │ ├── mimir-logo.png │ │ ├── query │ │ ├── _index.md │ │ ├── query-best-practices.md │ │ └── query-metric-labels.md │ │ ├── references │ │ ├── _index.md │ │ ├── architecture │ │ │ ├── _index.md │ │ │ ├── binary-index-header.md │ │ │ ├── bucket-index │ │ │ │ ├── bucket-index-querier-workflow.png │ │ │ │ └── index.md │ │ │ ├── components │ │ │ │ ├── _index.md │ │ │ │ ├── alertmanager.md │ │ │ │ ├── compactor │ │ │ │ │ ├── compactor-horizontal-and-vertical-compaction.png │ │ │ │ │ ├── compactor-split-and-merge.png │ │ │ │ │ └── index.md │ │ │ │ ├── distributor.md │ │ │ │ ├── ingester │ │ │ │ │ ├── index.md │ │ │ │ │ └── read-path-outage-probability.png │ │ │ │ ├── overrides-exporter.md │ │ │ │ ├── querier.md │ │ │ │ ├── query-frontend │ │ │ │ │ └── index.md │ │ │ │ ├── query-scheduler │ │ │ │ │ ├── index.md │ │ │ │ │ └── query-scheduler-architecture.png │ │ │ │ ├── ruler │ │ │ │ │ ├── index.md │ │ │ │ │ ├── ruler-internal.svg │ │ │ │ │ └── ruler-remote.svg │ │ │ │ └── store-gateway.md │ │ │ ├── deployment-modes │ │ │ │ ├── index.md │ │ │ │ ├── microservices-mode.svg │ │ │ │ ├── monolithic-mode.svg │ │ │ │ └── scaled-monolithic-mode.svg │ │ │ ├── hash-ring │ │ │ │ ├── classic-hash-ring-with-replication.png │ │ │ │ ├── classic-hash-ring-without-replication.png │ │ │ │ ├── index.md │ │ │ │ ├── partitions-lifecycle-ingester-start.png │ │ │ │ └── partitions-lifecycle-ingester-stop.png │ │ │ ├── key-value-store.md │ │ │ ├── memberlist-and-the-gossip-protocol.md │ │ │ ├── mimir-query-engine.md │ │ │ ├── ports.md │ │ │ └── query-sharding │ │ │ │ ├── index.md │ │ │ │ ├── query-sharding.png │ │ │ │ └── query-sharding.tex │ │ ├── glossary.md │ │ ├── http-api │ │ │ └── _index.md │ │ └── learning-resources │ │ │ └── _index.md │ │ ├── release-notes │ │ ├── _index.md │ │ ├── v2.0.md │ │ ├── v2.1.md │ │ ├── v2.10.md │ │ ├── v2.11.md │ │ ├── v2.12.md │ │ ├── v2.13.md │ │ ├── v2.14.md │ │ ├── v2.15.md │ │ ├── v2.16.md │ │ ├── v2.17.md │ │ ├── v2.2.md │ │ ├── v2.3.md │ │ ├── v2.4.md │ │ ├── v2.5.md │ │ ├── v2.6.md │ │ ├── v2.7.md │ │ ├── v2.8.md │ │ ├── v2.9.md │ │ └── v3.0.md │ │ ├── send │ │ ├── _index.md │ │ ├── native-histograms │ │ │ ├── _custom_buckets.md │ │ │ ├── _exponential_buckets.md │ │ │ ├── _index.md │ │ │ ├── factor-1.1-equation.svg │ │ │ ├── factor-equation.svg │ │ │ ├── neg-bucket-def.svg │ │ │ ├── pos-bucket-def.svg │ │ │ └── zero-threshold-def.svg │ │ └── otel-exponential-histograms │ │ │ ├── _index.md │ │ │ └── otel-pos-bucket-def.svg │ │ ├── set-up │ │ ├── _index.md │ │ ├── helm-chart.md │ │ ├── jsonnet │ │ │ ├── _index.md │ │ │ ├── configure-autoscaling.md │ │ │ ├── configure-ingest-storage.md │ │ │ ├── configure-low-resources.md │ │ │ ├── configure-object-storage-backend.md │ │ │ ├── configure-ruler.md │ │ │ ├── deploy.md │ │ │ ├── migrate-from-consul-to-memberlist.md │ │ │ └── migrate-query-scheduler-from-dns-to-ring-based-service-discovery.md │ │ ├── migrate │ │ │ ├── _index.md │ │ │ ├── migrate-from-cortex.md │ │ │ ├── migrate-from-thanos-or-prometheus.md │ │ │ ├── migrate-from-thanos-to-mimir-with-thanos-sidecar.md │ │ │ └── migrate-ingest-storage.md │ │ └── puppet │ │ │ └── _index.md │ │ └── visualize │ │ ├── _index.md │ │ └── native-histograms │ │ └── _index.md ├── test.org └── variables.mk ├── go.mod ├── go.sum ├── images └── logo.png ├── integration ├── .gitignore ├── CLAUDE.md ├── README.md ├── alertmanager_test.go ├── api_endpoints_test.go ├── asserts.go ├── asserts_test.go ├── backfill_test.go ├── backward_compatibility.go ├── backward_compatibility_test.go ├── ca │ └── ca.go ├── certs.go ├── compactor_test.go ├── configs.go ├── distributor_test.go ├── e2ehistograms │ └── e2ehistograms.go ├── e2emimir │ ├── client.go │ ├── rw2 │ │ └── rc3 │ │ │ └── types.pb.go │ ├── service.go │ ├── services.go │ └── storage.go ├── getting_started_single_process_config_test.go ├── getting_started_with_gossiped_ring_test.go ├── getting_started_with_grafana_mimir_test.go ├── images.go ├── influx_ingestion_test.go ├── ingester_limits_test.go ├── ingester_sharding_test.go ├── ingester_test.go ├── integration_memberlist_single_binary_test.go ├── kv_test.go ├── ooo_ingestion_test.go ├── otlp_ingestion_test.go ├── overrides_exporter_test.go ├── package.go ├── querier_label_name_values_test.go ├── querier_remote_read_test.go ├── querier_sharding_test.go ├── querier_tenant_federation_test.go ├── querier_test.go ├── query_frontend_active_series_test.go ├── query_frontend_cache_test.go ├── query_frontend_labels_query_optimizer_test.go ├── query_frontend_test.go ├── query_scheduler_test.go ├── ruler_test.go ├── s3_storage_client_test.go ├── single_binary_test.go ├── store_gateway_limits_hit_test.go ├── util.go ├── validation_separate_metrics_test.go ├── vault_test.go └── zone_aware_test.go ├── mimir-build-image ├── Dockerfile └── build.sh ├── operations ├── .gitattributes ├── .gitignore ├── LICENSE_APACHE2 ├── compare-helm-with-jsonnet │ ├── compare-helm-with-jsonnet.sh │ ├── compare-kustomize-outputs.sh │ ├── components │ │ ├── config │ │ │ ├── common-config.yaml │ │ │ ├── irrelevant-config.yaml │ │ │ ├── kustomization.yaml │ │ │ └── write-path-config.yaml │ │ └── pods │ │ │ ├── kustomization.yaml │ │ │ └── standard-pod-changes.yaml │ ├── helm │ │ ├── 00-base │ │ │ ├── kustomization.yaml │ │ │ └── values.yaml │ │ ├── 01-ignore │ │ │ └── kustomization.yaml │ │ ├── 02-configs-and-k8s-defaults │ │ │ ├── annotator.yaml │ │ │ ├── config-resolver.yaml │ │ │ └── kustomization.yaml │ │ ├── 03-labels │ │ │ └── kustomization.yaml │ │ ├── 04-memberlist │ │ │ └── kustomization.yaml │ │ ├── 05-services │ │ │ └── kustomization.yaml │ │ ├── 06-pods │ │ │ └── kustomization.yaml │ │ └── 07-config │ │ │ └── kustomization.yaml │ ├── jsonnet │ │ ├── 00-base │ │ │ └── kustomization.yaml │ │ ├── 01-ignore │ │ │ └── kustomization.yaml │ │ ├── 02-configs-and-k8s-defaults │ │ │ ├── annotator.yaml │ │ │ ├── config-resolver.yaml │ │ │ └── kustomization.yaml │ │ ├── 03-rename │ │ │ └── kustomization.yaml │ │ ├── 04-labels │ │ │ └── kustomization.yaml │ │ ├── 05-memberlist │ │ │ └── kustomization.yaml │ │ ├── 06-services │ │ │ └── kustomization.yaml │ │ ├── 07-pods │ │ │ └── kustomization.yaml │ │ └── 08-config │ │ │ └── kustomization.yaml │ └── plugins │ │ ├── k8s-defaults.sh │ │ └── resolve-config │ │ ├── README.md │ │ ├── main.go │ │ ├── main_test.go │ │ └── run.sh ├── helm │ ├── .gitignore │ ├── CLAUDE.md │ ├── charts │ │ └── mimir-distributed │ │ │ ├── .gitignore │ │ │ ├── .helmignore │ │ │ ├── CHANGELOG.md │ │ │ ├── Chart.lock │ │ │ ├── Chart.yaml │ │ │ ├── README.md │ │ │ ├── README.md.gotmpl │ │ │ ├── RELEASE.md │ │ │ ├── capped-large.yaml │ │ │ ├── capped-small.yaml │ │ │ ├── ci │ │ │ ├── offline │ │ │ │ ├── classic-architecture-values.yaml │ │ │ │ ├── gateway-nginx-values.yaml │ │ │ │ ├── keda-autoscaling-global-values.yaml │ │ │ │ ├── keda-autoscaling-metamonitoring-values.yaml │ │ │ │ ├── keda-autoscaling-values.yaml │ │ │ │ ├── large-values.yaml │ │ │ │ ├── metamonitoring-values.yaml │ │ │ │ ├── openshift-values.yaml │ │ │ │ ├── scheduler-name-values.yaml │ │ │ │ ├── small-values.yaml │ │ │ │ ├── test-extra-args-values.yaml │ │ │ │ ├── test-extra-objects-values.yaml │ │ │ │ ├── test-gomaxprocs-override-values.yaml │ │ │ │ ├── test-ingest-storage-values.yaml │ │ │ │ ├── test-ingress-values.yaml │ │ │ │ ├── test-oss-component-image-values.yaml │ │ │ │ ├── test-oss-emptydir-values.yaml │ │ │ │ ├── test-oss-multizone-values.yaml │ │ │ │ ├── test-oss-topology-spread-constraints-values.yaml │ │ │ │ ├── test-requests-and-limits-values.yaml │ │ │ │ ├── test-revisionhistorylimit-values.yaml │ │ │ │ ├── test-ruler-dedicated-query-path-values.yaml │ │ │ │ └── test-vault-agent-values.yaml │ │ │ ├── test-oss-logical-multizone-values.yaml │ │ │ └── test-oss-values.yaml │ │ │ ├── classic-architecture.yaml │ │ │ ├── large.yaml │ │ │ ├── mixins │ │ │ ├── alerts.yaml │ │ │ ├── dashboards │ │ │ └── rules.yaml │ │ │ ├── scripts │ │ │ ├── bootstrap_kind_cluster.sh │ │ │ ├── create-pdb │ │ │ ├── recreate-templates │ │ │ └── replace │ │ │ ├── small.yaml │ │ │ ├── templates │ │ │ ├── NOTES.txt │ │ │ ├── _config-render.tpl │ │ │ ├── _helpers.tpl │ │ │ ├── alertmanager │ │ │ │ ├── alertmanager-config.yaml │ │ │ │ ├── alertmanager-dep.yaml │ │ │ │ ├── alertmanager-pdb.yaml │ │ │ │ ├── alertmanager-sa.yaml │ │ │ │ ├── alertmanager-servmon.yaml │ │ │ │ ├── alertmanager-statefulset.yaml │ │ │ │ ├── alertmanager-svc-headless.yaml │ │ │ │ └── alertmanager-svc.yaml │ │ │ ├── chunks-cache │ │ │ │ ├── chunks-cache-pdb.yaml │ │ │ │ ├── chunks-cache-servmon.yaml │ │ │ │ ├── chunks-cache-statefulset.yaml │ │ │ │ └── chunks-cache-svc-headless.yaml │ │ │ ├── compactor │ │ │ │ ├── compactor-pdb.yaml │ │ │ │ ├── compactor-servmon.yaml │ │ │ │ ├── compactor-statefulset.yaml │ │ │ │ └── compactor-svc.yaml │ │ │ ├── continuous_test │ │ │ │ ├── continuous-test-dep.yaml │ │ │ │ ├── continuous-test-servmon.yaml │ │ │ │ └── continuous-test-svc-headless.yaml │ │ │ ├── distributor │ │ │ │ ├── distributor-dep.yaml │ │ │ │ ├── distributor-pdb.yaml │ │ │ │ ├── distributor-servmon.yaml │ │ │ │ ├── distributor-so.yaml │ │ │ │ ├── distributor-svc-headless.yaml │ │ │ │ └── distributor-svc.yaml │ │ │ ├── extra-manifests.yaml │ │ │ ├── gateway │ │ │ │ ├── _helpers.tpl │ │ │ │ ├── gateway-dep.yaml │ │ │ │ ├── gateway-ingress.yaml │ │ │ │ ├── gateway-pdb.yaml │ │ │ │ ├── gateway-route.yaml │ │ │ │ ├── gateway-svc.yaml │ │ │ │ ├── gateway-v2-hpa.yaml │ │ │ │ ├── gateway-v2beta1-hpa.yaml │ │ │ │ ├── nginx-configmap.yaml │ │ │ │ └── nginx-secret.yaml │ │ │ ├── gossip-ring │ │ │ │ ├── _helpers.gossip-ring.tpl │ │ │ │ └── gossip-ring-svc.yaml │ │ │ ├── index-cache │ │ │ │ ├── index-cache-pdb.yaml │ │ │ │ ├── index-cache-servmon.yaml │ │ │ │ ├── index-cache-statefulset.yaml │ │ │ │ └── index-cache-svc-headless.yaml │ │ │ ├── ingester │ │ │ │ ├── ingester-pdb.yaml │ │ │ │ ├── ingester-servmon.yaml │ │ │ │ ├── ingester-statefulset.yaml │ │ │ │ ├── ingester-svc-headless.yaml │ │ │ │ └── ingester-svc.yaml │ │ │ ├── ingress.yaml │ │ │ ├── kafka │ │ │ │ ├── kafka-pdb.yaml │ │ │ │ ├── kafka-statefulset.yaml │ │ │ │ ├── kafka-svc-headless.yaml │ │ │ │ └── kafka-svc.yaml │ │ │ ├── keda │ │ │ │ └── keda-trigger-auth.yaml │ │ │ ├── lib │ │ │ │ ├── containerEnv.tpl │ │ │ │ ├── map-to-csv.tpl │ │ │ │ ├── pdb.tpl │ │ │ │ ├── podSecurityContext.tpl │ │ │ │ ├── service-monitor.tpl │ │ │ │ ├── toPromQLLabelSelector.tpl │ │ │ │ └── topologySpreadConstraints.tpl │ │ │ ├── memcached │ │ │ │ ├── _memcached-statefulset.tpl │ │ │ │ └── _memcached-svc.tpl │ │ │ ├── metadata-cache │ │ │ │ ├── metadata-cache-pdb.yaml │ │ │ │ ├── metadata-cache-servmon.yaml │ │ │ │ ├── metadata-cache-statefulset.yaml │ │ │ │ └── metadata-cache-svc-headless.yaml │ │ │ ├── metamonitoring │ │ │ │ ├── _helpers.tpl │ │ │ │ ├── grafana-agent-cluster-role-binding.yaml │ │ │ │ ├── grafana-agent-cluster-role.yaml │ │ │ │ ├── grafana-agent.yaml │ │ │ │ ├── grafana-dashboards.yaml │ │ │ │ ├── kube-state-metrics-servmon.yaml │ │ │ │ ├── kubelet-cadvisor-servmon.yaml │ │ │ │ ├── logs-instance-usernames-secret.yaml │ │ │ │ ├── logs-instance.yaml │ │ │ │ ├── metrics-instance-usernames-secret.yaml │ │ │ │ ├── metrics-instance.yaml │ │ │ │ ├── mixin-alerts.yaml │ │ │ │ ├── pod-logs.yaml │ │ │ │ ├── prometheusrule.yaml │ │ │ │ └── recording-rules.yaml │ │ │ ├── mimir-config.yaml │ │ │ ├── minio-secrets.yaml │ │ │ ├── minio │ │ │ │ └── create-bucket-job.yaml │ │ │ ├── overrides-exporter │ │ │ │ ├── overrides-exporter-dep.yaml │ │ │ │ ├── overrides-exporter-pdb.yaml │ │ │ │ ├── overrides-exporter-servmon.yaml │ │ │ │ └── overrides-exporter-svc.yaml │ │ │ ├── podsecuritypolicy.yaml │ │ │ ├── querier │ │ │ │ ├── querier-dep.yaml │ │ │ │ ├── querier-pdb.yaml │ │ │ │ ├── querier-servmon.yaml │ │ │ │ ├── querier-so.yaml │ │ │ │ └── querier-svc.yaml │ │ │ ├── query-frontend │ │ │ │ ├── query-frontend-dep.yaml │ │ │ │ ├── query-frontend-pdb.yaml │ │ │ │ ├── query-frontend-servmon.yaml │ │ │ │ ├── query-frontend-so.yaml │ │ │ │ └── query-frontend-svc.yaml │ │ │ ├── query-scheduler │ │ │ │ ├── query-scheduler-dep.yaml │ │ │ │ ├── query-scheduler-pdb.yaml │ │ │ │ ├── query-scheduler-servmon.yaml │ │ │ │ ├── query-scheduler-svc-headless.yaml │ │ │ │ └── query-scheduler-svc.yaml │ │ │ ├── results-cache │ │ │ │ ├── results-cache-pdb.yaml │ │ │ │ ├── results-cache-servmon.yaml │ │ │ │ ├── results-cache-statefulset.yaml │ │ │ │ └── results-cache-svc-headless.yaml │ │ │ ├── role.yaml │ │ │ ├── rolebinding.yaml │ │ │ ├── ruler-querier │ │ │ │ ├── ruler-querier-dep.yaml │ │ │ │ ├── ruler-querier-pdb.yaml │ │ │ │ ├── ruler-querier-servmon.yaml │ │ │ │ ├── ruler-querier-so.yaml │ │ │ │ └── ruler-querier-svc.yaml │ │ │ ├── ruler-query-frontend │ │ │ │ ├── ruler-query-frontend-dep.yaml │ │ │ │ ├── ruler-query-frontend-pdb.yaml │ │ │ │ ├── ruler-query-frontend-servmon.yaml │ │ │ │ ├── ruler-query-frontend-so.yaml │ │ │ │ └── ruler-query-frontend-svc.yaml │ │ │ ├── ruler-query-scheduler │ │ │ │ ├── ruler-query-scheduler-dep.yaml │ │ │ │ ├── ruler-query-scheduler-pdb.yaml │ │ │ │ ├── ruler-query-scheduler-servmon.yaml │ │ │ │ ├── ruler-query-scheduler-svc-headless.yaml │ │ │ │ └── ruler-query-scheduler-svc.yaml │ │ │ ├── ruler │ │ │ │ ├── ruler-dep.yaml │ │ │ │ ├── ruler-pdb.yaml │ │ │ │ ├── ruler-sa.yaml │ │ │ │ ├── ruler-servmon.yaml │ │ │ │ ├── ruler-so.yaml │ │ │ │ └── ruler-svc.yaml │ │ │ ├── runtime-configmap.yaml │ │ │ ├── securitycontextconstraints.yaml │ │ │ ├── serviceaccount.yaml │ │ │ ├── smoke-test │ │ │ │ └── smoke-test-job.yaml │ │ │ ├── store-gateway │ │ │ │ ├── store-gateway-pdb.yaml │ │ │ │ ├── store-gateway-servmon.yaml │ │ │ │ ├── store-gateway-statefulset.yaml │ │ │ │ ├── store-gateway-svc-headless.yaml │ │ │ │ └── store-gateway-svc.yaml │ │ │ ├── validate.yaml │ │ │ └── values-for-rego-tests.yaml │ │ │ └── values.yaml │ ├── cr.yaml │ ├── ct.yaml │ ├── scripts │ │ ├── build.sh │ │ ├── run-conftest.sh │ │ └── update-helm-dependencies.sh │ └── tests │ │ ├── classic-architecture-values-generated │ │ └── mimir-distributed │ │ │ ├── charts │ │ │ ├── minio │ │ │ │ └── templates │ │ │ │ │ ├── configmap.yaml │ │ │ │ │ ├── console-service.yaml │ │ │ │ │ ├── deployment.yaml │ │ │ │ │ ├── post-job.yaml │ │ │ │ │ ├── pvc.yaml │ │ │ │ │ ├── secrets.yaml │ │ │ │ │ ├── service.yaml │ │ │ │ │ └── serviceaccount.yaml │ │ │ └── rollout_operator │ │ │ │ └── templates │ │ │ │ ├── deployment.yaml │ │ │ │ ├── no-downscale-webhook.yaml │ │ │ │ ├── pod-eviction-webhook.yaml │ │ │ │ ├── prepare-downscale-webhook.yaml │ │ │ │ ├── role.yaml │ │ │ │ ├── rolebinding.yaml │ │ │ │ ├── service.yaml │ │ │ │ ├── serviceaccount.yaml │ │ │ │ ├── webhook-clusterrole-binding.yaml │ │ │ │ ├── webhook-clusterrole.yaml │ │ │ │ ├── webhook-role-binding.yaml │ │ │ │ ├── webhook-role.yaml │ │ │ │ └── zone-aware-pod-disruption-budget-validating-webhook.yaml │ │ │ └── templates │ │ │ ├── alertmanager │ │ │ ├── alertmanager-config.yaml │ │ │ ├── alertmanager-pdb.yaml │ │ │ ├── alertmanager-statefulset.yaml │ │ │ ├── alertmanager-svc-headless.yaml │ │ │ └── alertmanager-svc.yaml │ │ │ ├── compactor │ │ │ ├── compactor-pdb.yaml │ │ │ ├── compactor-statefulset.yaml │ │ │ └── compactor-svc.yaml │ │ │ ├── distributor │ │ │ ├── distributor-dep.yaml │ │ │ ├── distributor-pdb.yaml │ │ │ ├── distributor-svc-headless.yaml │ │ │ └── distributor-svc.yaml │ │ │ ├── gateway │ │ │ ├── gateway-dep.yaml │ │ │ ├── gateway-pdb.yaml │ │ │ ├── gateway-svc.yaml │ │ │ └── nginx-configmap.yaml │ │ │ ├── gossip-ring │ │ │ └── gossip-ring-svc.yaml │ │ │ ├── ingester │ │ │ ├── ingester-pdb.yaml │ │ │ ├── ingester-statefulset.yaml │ │ │ ├── ingester-svc-headless.yaml │ │ │ └── ingester-svc.yaml │ │ │ ├── mimir-config.yaml │ │ │ ├── minio │ │ │ └── create-bucket-job.yaml │ │ │ ├── overrides-exporter │ │ │ ├── overrides-exporter-dep.yaml │ │ │ ├── overrides-exporter-pdb.yaml │ │ │ └── overrides-exporter-svc.yaml │ │ │ ├── querier │ │ │ ├── querier-dep.yaml │ │ │ ├── querier-pdb.yaml │ │ │ └── querier-svc.yaml │ │ │ ├── query-frontend │ │ │ ├── query-frontend-dep.yaml │ │ │ ├── query-frontend-pdb.yaml │ │ │ └── query-frontend-svc.yaml │ │ │ ├── query-scheduler │ │ │ ├── query-scheduler-dep.yaml │ │ │ ├── query-scheduler-pdb.yaml │ │ │ ├── query-scheduler-svc-headless.yaml │ │ │ └── query-scheduler-svc.yaml │ │ │ ├── ruler │ │ │ ├── ruler-dep.yaml │ │ │ ├── ruler-pdb.yaml │ │ │ └── ruler-svc.yaml │ │ │ ├── runtime-configmap.yaml │ │ │ ├── serviceaccount.yaml │ │ │ ├── smoke-test │ │ │ └── smoke-test-job.yaml │ │ │ └── store-gateway │ │ │ ├── store-gateway-pdb.yaml │ │ │ ├── store-gateway-statefulset.yaml │ │ │ ├── store-gateway-svc-headless.yaml │ │ │ └── store-gateway-svc.yaml │ │ ├── gateway-nginx-values-generated │ │ └── mimir-distributed │ │ │ ├── charts │ │ │ ├── minio │ │ │ │ └── templates │ │ │ │ │ ├── configmap.yaml │ │ │ │ │ ├── console-service.yaml │ │ │ │ │ ├── deployment.yaml │ │ │ │ │ ├── post-job.yaml │ │ │ │ │ ├── pvc.yaml │ │ │ │ │ ├── secrets.yaml │ │ │ │ │ ├── service.yaml │ │ │ │ │ └── serviceaccount.yaml │ │ │ └── rollout_operator │ │ │ │ └── templates │ │ │ │ ├── deployment.yaml │ │ │ │ ├── no-downscale-webhook.yaml │ │ │ │ ├── pod-eviction-webhook.yaml │ │ │ │ ├── prepare-downscale-webhook.yaml │ │ │ │ ├── role.yaml │ │ │ │ ├── rolebinding.yaml │ │ │ │ ├── service.yaml │ │ │ │ ├── serviceaccount.yaml │ │ │ │ ├── webhook-clusterrole-binding.yaml │ │ │ │ ├── webhook-clusterrole.yaml │ │ │ │ ├── webhook-role-binding.yaml │ │ │ │ ├── webhook-role.yaml │ │ │ │ └── zone-aware-pod-disruption-budget-validating-webhook.yaml │ │ │ └── templates │ │ │ ├── alertmanager │ │ │ ├── alertmanager-config.yaml │ │ │ ├── alertmanager-pdb.yaml │ │ │ ├── alertmanager-statefulset.yaml │ │ │ ├── alertmanager-svc-headless.yaml │ │ │ └── alertmanager-svc.yaml │ │ │ ├── compactor │ │ │ ├── compactor-pdb.yaml │ │ │ ├── compactor-statefulset.yaml │ │ │ └── compactor-svc.yaml │ │ │ ├── distributor │ │ │ ├── distributor-dep.yaml │ │ │ ├── distributor-pdb.yaml │ │ │ ├── distributor-svc-headless.yaml │ │ │ └── distributor-svc.yaml │ │ │ ├── gateway │ │ │ ├── gateway-dep.yaml │ │ │ ├── gateway-ingress.yaml │ │ │ ├── gateway-pdb.yaml │ │ │ ├── gateway-route.yaml │ │ │ ├── gateway-svc.yaml │ │ │ ├── gateway-v2-hpa.yaml │ │ │ └── nginx-configmap.yaml │ │ │ ├── gossip-ring │ │ │ └── gossip-ring-svc.yaml │ │ │ ├── ingester │ │ │ ├── ingester-pdb.yaml │ │ │ ├── ingester-statefulset.yaml │ │ │ ├── ingester-svc-headless.yaml │ │ │ └── ingester-svc.yaml │ │ │ ├── kafka │ │ │ ├── kafka-pdb.yaml │ │ │ ├── kafka-statefulset.yaml │ │ │ ├── kafka-svc-headless.yaml │ │ │ └── kafka-svc.yaml │ │ │ ├── mimir-config.yaml │ │ │ ├── minio │ │ │ └── create-bucket-job.yaml │ │ │ ├── overrides-exporter │ │ │ ├── overrides-exporter-dep.yaml │ │ │ ├── overrides-exporter-pdb.yaml │ │ │ └── overrides-exporter-svc.yaml │ │ │ ├── querier │ │ │ ├── querier-dep.yaml │ │ │ ├── querier-pdb.yaml │ │ │ └── querier-svc.yaml │ │ │ ├── query-frontend │ │ │ ├── query-frontend-dep.yaml │ │ │ ├── query-frontend-pdb.yaml │ │ │ └── query-frontend-svc.yaml │ │ │ ├── query-scheduler │ │ │ ├── query-scheduler-dep.yaml │ │ │ ├── query-scheduler-pdb.yaml │ │ │ ├── query-scheduler-svc-headless.yaml │ │ │ └── query-scheduler-svc.yaml │ │ │ ├── ruler │ │ │ ├── ruler-dep.yaml │ │ │ ├── ruler-pdb.yaml │ │ │ └── ruler-svc.yaml │ │ │ ├── runtime-configmap.yaml │ │ │ ├── serviceaccount.yaml │ │ │ ├── smoke-test │ │ │ └── smoke-test-job.yaml │ │ │ └── store-gateway │ │ │ ├── store-gateway-pdb.yaml │ │ │ ├── store-gateway-statefulset.yaml │ │ │ ├── store-gateway-svc-headless.yaml │ │ │ └── store-gateway-svc.yaml │ │ ├── keda-autoscaling-global-values-generated │ │ └── mimir-distributed │ │ │ ├── charts │ │ │ ├── minio │ │ │ │ └── templates │ │ │ │ │ ├── configmap.yaml │ │ │ │ │ ├── console-service.yaml │ │ │ │ │ ├── deployment.yaml │ │ │ │ │ ├── post-job.yaml │ │ │ │ │ ├── pvc.yaml │ │ │ │ │ ├── secrets.yaml │ │ │ │ │ ├── service.yaml │ │ │ │ │ └── serviceaccount.yaml │ │ │ └── rollout_operator │ │ │ │ └── templates │ │ │ │ ├── deployment.yaml │ │ │ │ ├── no-downscale-webhook.yaml │ │ │ │ ├── pod-eviction-webhook.yaml │ │ │ │ ├── prepare-downscale-webhook.yaml │ │ │ │ ├── role.yaml │ │ │ │ ├── rolebinding.yaml │ │ │ │ ├── service.yaml │ │ │ │ ├── serviceaccount.yaml │ │ │ │ ├── webhook-clusterrole-binding.yaml │ │ │ │ ├── webhook-clusterrole.yaml │ │ │ │ ├── webhook-role-binding.yaml │ │ │ │ ├── webhook-role.yaml │ │ │ │ └── zone-aware-pod-disruption-budget-validating-webhook.yaml │ │ │ └── templates │ │ │ ├── alertmanager │ │ │ ├── alertmanager-config.yaml │ │ │ ├── alertmanager-pdb.yaml │ │ │ ├── alertmanager-statefulset.yaml │ │ │ ├── alertmanager-svc-headless.yaml │ │ │ └── alertmanager-svc.yaml │ │ │ ├── compactor │ │ │ ├── compactor-pdb.yaml │ │ │ ├── compactor-statefulset.yaml │ │ │ └── compactor-svc.yaml │ │ │ ├── distributor │ │ │ ├── distributor-dep.yaml │ │ │ ├── distributor-pdb.yaml │ │ │ ├── distributor-so.yaml │ │ │ ├── distributor-svc-headless.yaml │ │ │ └── distributor-svc.yaml │ │ │ ├── gateway │ │ │ ├── gateway-dep.yaml │ │ │ ├── gateway-pdb.yaml │ │ │ ├── gateway-svc.yaml │ │ │ └── nginx-configmap.yaml │ │ │ ├── gossip-ring │ │ │ └── gossip-ring-svc.yaml │ │ │ ├── ingester │ │ │ ├── ingester-pdb.yaml │ │ │ ├── ingester-statefulset.yaml │ │ │ ├── ingester-svc-headless.yaml │ │ │ └── ingester-svc.yaml │ │ │ ├── kafka │ │ │ ├── kafka-pdb.yaml │ │ │ ├── kafka-statefulset.yaml │ │ │ ├── kafka-svc-headless.yaml │ │ │ └── kafka-svc.yaml │ │ │ ├── keda │ │ │ └── keda-trigger-auth.yaml │ │ │ ├── mimir-config.yaml │ │ │ ├── minio │ │ │ └── create-bucket-job.yaml │ │ │ ├── overrides-exporter │ │ │ ├── overrides-exporter-dep.yaml │ │ │ ├── overrides-exporter-pdb.yaml │ │ │ └── overrides-exporter-svc.yaml │ │ │ ├── querier │ │ │ ├── querier-dep.yaml │ │ │ ├── querier-pdb.yaml │ │ │ ├── querier-so.yaml │ │ │ └── querier-svc.yaml │ │ │ ├── query-frontend │ │ │ ├── query-frontend-dep.yaml │ │ │ ├── query-frontend-pdb.yaml │ │ │ ├── query-frontend-so.yaml │ │ │ └── query-frontend-svc.yaml │ │ │ ├── query-scheduler │ │ │ ├── query-scheduler-dep.yaml │ │ │ ├── query-scheduler-pdb.yaml │ │ │ ├── query-scheduler-svc-headless.yaml │ │ │ └── query-scheduler-svc.yaml │ │ │ ├── ruler │ │ │ ├── ruler-dep.yaml │ │ │ ├── ruler-pdb.yaml │ │ │ ├── ruler-so.yaml │ │ │ └── ruler-svc.yaml │ │ │ ├── runtime-configmap.yaml │ │ │ ├── serviceaccount.yaml │ │ │ ├── smoke-test │ │ │ └── smoke-test-job.yaml │ │ │ └── store-gateway │ │ │ ├── store-gateway-pdb.yaml │ │ │ ├── store-gateway-statefulset.yaml │ │ │ ├── store-gateway-svc-headless.yaml │ │ │ └── store-gateway-svc.yaml │ │ ├── keda-autoscaling-metamonitoring-values-generated │ │ └── mimir-distributed │ │ │ ├── charts │ │ │ ├── minio │ │ │ │ └── templates │ │ │ │ │ ├── configmap.yaml │ │ │ │ │ ├── console-service.yaml │ │ │ │ │ ├── deployment.yaml │ │ │ │ │ ├── post-job.yaml │ │ │ │ │ ├── pvc.yaml │ │ │ │ │ ├── secrets.yaml │ │ │ │ │ ├── service.yaml │ │ │ │ │ └── serviceaccount.yaml │ │ │ └── rollout_operator │ │ │ │ └── templates │ │ │ │ ├── deployment.yaml │ │ │ │ ├── no-downscale-webhook.yaml │ │ │ │ ├── pod-eviction-webhook.yaml │ │ │ │ ├── prepare-downscale-webhook.yaml │ │ │ │ ├── role.yaml │ │ │ │ ├── rolebinding.yaml │ │ │ │ ├── service.yaml │ │ │ │ ├── serviceaccount.yaml │ │ │ │ ├── webhook-clusterrole-binding.yaml │ │ │ │ ├── webhook-clusterrole.yaml │ │ │ │ ├── webhook-role-binding.yaml │ │ │ │ ├── webhook-role.yaml │ │ │ │ └── zone-aware-pod-disruption-budget-validating-webhook.yaml │ │ │ └── templates │ │ │ ├── alertmanager │ │ │ ├── alertmanager-config.yaml │ │ │ ├── alertmanager-pdb.yaml │ │ │ ├── alertmanager-statefulset.yaml │ │ │ ├── alertmanager-svc-headless.yaml │ │ │ └── alertmanager-svc.yaml │ │ │ ├── compactor │ │ │ ├── compactor-pdb.yaml │ │ │ ├── compactor-statefulset.yaml │ │ │ └── compactor-svc.yaml │ │ │ ├── distributor │ │ │ ├── distributor-dep.yaml │ │ │ ├── distributor-pdb.yaml │ │ │ ├── distributor-so.yaml │ │ │ ├── distributor-svc-headless.yaml │ │ │ └── distributor-svc.yaml │ │ │ ├── gateway │ │ │ ├── gateway-dep.yaml │ │ │ ├── gateway-pdb.yaml │ │ │ ├── gateway-svc.yaml │ │ │ └── nginx-configmap.yaml │ │ │ ├── gossip-ring │ │ │ └── gossip-ring-svc.yaml │ │ │ ├── ingester │ │ │ ├── ingester-pdb.yaml │ │ │ ├── ingester-statefulset.yaml │ │ │ ├── ingester-svc-headless.yaml │ │ │ └── ingester-svc.yaml │ │ │ ├── kafka │ │ │ ├── kafka-pdb.yaml │ │ │ ├── kafka-statefulset.yaml │ │ │ ├── kafka-svc-headless.yaml │ │ │ └── kafka-svc.yaml │ │ │ ├── mimir-config.yaml │ │ │ ├── minio │ │ │ └── create-bucket-job.yaml │ │ │ ├── overrides-exporter │ │ │ ├── overrides-exporter-dep.yaml │ │ │ ├── overrides-exporter-pdb.yaml │ │ │ └── overrides-exporter-svc.yaml │ │ │ ├── querier │ │ │ ├── querier-dep.yaml │ │ │ ├── querier-pdb.yaml │ │ │ ├── querier-so.yaml │ │ │ └── querier-svc.yaml │ │ │ ├── query-frontend │ │ │ ├── query-frontend-dep.yaml │ │ │ ├── query-frontend-pdb.yaml │ │ │ ├── query-frontend-so.yaml │ │ │ └── query-frontend-svc.yaml │ │ │ ├── query-scheduler │ │ │ ├── query-scheduler-dep.yaml │ │ │ ├── query-scheduler-pdb.yaml │ │ │ ├── query-scheduler-svc-headless.yaml │ │ │ └── query-scheduler-svc.yaml │ │ │ ├── ruler │ │ │ ├── ruler-dep.yaml │ │ │ ├── ruler-pdb.yaml │ │ │ ├── ruler-so.yaml │ │ │ └── ruler-svc.yaml │ │ │ ├── runtime-configmap.yaml │ │ │ ├── serviceaccount.yaml │ │ │ ├── smoke-test │ │ │ └── smoke-test-job.yaml │ │ │ └── store-gateway │ │ │ ├── store-gateway-pdb.yaml │ │ │ ├── store-gateway-statefulset.yaml │ │ │ ├── store-gateway-svc-headless.yaml │ │ │ └── store-gateway-svc.yaml │ │ ├── keda-autoscaling-values-generated │ │ └── mimir-distributed │ │ │ ├── charts │ │ │ ├── minio │ │ │ │ └── templates │ │ │ │ │ ├── configmap.yaml │ │ │ │ │ ├── console-service.yaml │ │ │ │ │ ├── deployment.yaml │ │ │ │ │ ├── post-job.yaml │ │ │ │ │ ├── pvc.yaml │ │ │ │ │ ├── secrets.yaml │ │ │ │ │ ├── service.yaml │ │ │ │ │ └── serviceaccount.yaml │ │ │ └── rollout_operator │ │ │ │ └── templates │ │ │ │ ├── deployment.yaml │ │ │ │ ├── no-downscale-webhook.yaml │ │ │ │ ├── pod-eviction-webhook.yaml │ │ │ │ ├── prepare-downscale-webhook.yaml │ │ │ │ ├── role.yaml │ │ │ │ ├── rolebinding.yaml │ │ │ │ ├── service.yaml │ │ │ │ ├── serviceaccount.yaml │ │ │ │ ├── webhook-clusterrole-binding.yaml │ │ │ │ ├── webhook-clusterrole.yaml │ │ │ │ ├── webhook-role-binding.yaml │ │ │ │ ├── webhook-role.yaml │ │ │ │ └── zone-aware-pod-disruption-budget-validating-webhook.yaml │ │ │ └── templates │ │ │ ├── alertmanager │ │ │ ├── alertmanager-config.yaml │ │ │ ├── alertmanager-pdb.yaml │ │ │ ├── alertmanager-statefulset.yaml │ │ │ ├── alertmanager-svc-headless.yaml │ │ │ └── alertmanager-svc.yaml │ │ │ ├── compactor │ │ │ ├── compactor-pdb.yaml │ │ │ ├── compactor-statefulset.yaml │ │ │ └── compactor-svc.yaml │ │ │ ├── distributor │ │ │ ├── distributor-dep.yaml │ │ │ ├── distributor-pdb.yaml │ │ │ ├── distributor-so.yaml │ │ │ ├── distributor-svc-headless.yaml │ │ │ └── distributor-svc.yaml │ │ │ ├── gateway │ │ │ ├── gateway-dep.yaml │ │ │ ├── gateway-pdb.yaml │ │ │ ├── gateway-svc.yaml │ │ │ └── nginx-configmap.yaml │ │ │ ├── gossip-ring │ │ │ └── gossip-ring-svc.yaml │ │ │ ├── ingester │ │ │ ├── ingester-pdb.yaml │ │ │ ├── ingester-statefulset.yaml │ │ │ ├── ingester-svc-headless.yaml │ │ │ └── ingester-svc.yaml │ │ │ ├── kafka │ │ │ ├── kafka-pdb.yaml │ │ │ ├── kafka-statefulset.yaml │ │ │ ├── kafka-svc-headless.yaml │ │ │ └── kafka-svc.yaml │ │ │ ├── mimir-config.yaml │ │ │ ├── minio │ │ │ └── create-bucket-job.yaml │ │ │ ├── overrides-exporter │ │ │ ├── overrides-exporter-dep.yaml │ │ │ ├── overrides-exporter-pdb.yaml │ │ │ └── overrides-exporter-svc.yaml │ │ │ ├── querier │ │ │ ├── querier-dep.yaml │ │ │ ├── querier-pdb.yaml │ │ │ ├── querier-so.yaml │ │ │ └── querier-svc.yaml │ │ │ ├── query-frontend │ │ │ ├── query-frontend-dep.yaml │ │ │ ├── query-frontend-pdb.yaml │ │ │ ├── query-frontend-so.yaml │ │ │ └── query-frontend-svc.yaml │ │ │ ├── query-scheduler │ │ │ ├── query-scheduler-dep.yaml │ │ │ ├── query-scheduler-pdb.yaml │ │ │ ├── query-scheduler-svc-headless.yaml │ │ │ └── query-scheduler-svc.yaml │ │ │ ├── ruler-querier │ │ │ ├── ruler-querier-dep.yaml │ │ │ ├── ruler-querier-pdb.yaml │ │ │ ├── ruler-querier-so.yaml │ │ │ └── ruler-querier-svc.yaml │ │ │ ├── ruler-query-frontend │ │ │ ├── ruler-query-frontend-dep.yaml │ │ │ ├── ruler-query-frontend-pdb.yaml │ │ │ ├── ruler-query-frontend-so.yaml │ │ │ └── ruler-query-frontend-svc.yaml │ │ │ ├── ruler-query-scheduler │ │ │ ├── ruler-query-scheduler-dep.yaml │ │ │ ├── ruler-query-scheduler-pdb.yaml │ │ │ ├── ruler-query-scheduler-svc-headless.yaml │ │ │ └── ruler-query-scheduler-svc.yaml │ │ │ ├── ruler │ │ │ ├── ruler-dep.yaml │ │ │ ├── ruler-pdb.yaml │ │ │ ├── ruler-so.yaml │ │ │ └── ruler-svc.yaml │ │ │ ├── runtime-configmap.yaml │ │ │ ├── serviceaccount.yaml │ │ │ ├── smoke-test │ │ │ └── smoke-test-job.yaml │ │ │ └── store-gateway │ │ │ ├── store-gateway-pdb.yaml │ │ │ ├── store-gateway-statefulset.yaml │ │ │ ├── store-gateway-svc-headless.yaml │ │ │ └── store-gateway-svc.yaml │ │ ├── large-values-generated │ │ └── mimir-distributed │ │ │ ├── charts │ │ │ └── rollout_operator │ │ │ │ └── templates │ │ │ │ ├── deployment.yaml │ │ │ │ ├── no-downscale-webhook.yaml │ │ │ │ ├── pod-eviction-webhook.yaml │ │ │ │ ├── prepare-downscale-webhook.yaml │ │ │ │ ├── role.yaml │ │ │ │ ├── rolebinding.yaml │ │ │ │ ├── service.yaml │ │ │ │ ├── serviceaccount.yaml │ │ │ │ ├── webhook-clusterrole-binding.yaml │ │ │ │ ├── webhook-clusterrole.yaml │ │ │ │ ├── webhook-role-binding.yaml │ │ │ │ ├── webhook-role.yaml │ │ │ │ └── zone-aware-pod-disruption-budget-validating-webhook.yaml │ │ │ └── templates │ │ │ ├── alertmanager │ │ │ ├── alertmanager-config.yaml │ │ │ ├── alertmanager-pdb.yaml │ │ │ ├── alertmanager-statefulset.yaml │ │ │ ├── alertmanager-svc-headless.yaml │ │ │ └── alertmanager-svc.yaml │ │ │ ├── chunks-cache │ │ │ ├── chunks-cache-pdb.yaml │ │ │ ├── chunks-cache-statefulset.yaml │ │ │ └── chunks-cache-svc-headless.yaml │ │ │ ├── compactor │ │ │ ├── compactor-pdb.yaml │ │ │ ├── compactor-statefulset.yaml │ │ │ └── compactor-svc.yaml │ │ │ ├── distributor │ │ │ ├── distributor-dep.yaml │ │ │ ├── distributor-pdb.yaml │ │ │ ├── distributor-svc-headless.yaml │ │ │ └── distributor-svc.yaml │ │ │ ├── gateway │ │ │ ├── gateway-dep.yaml │ │ │ ├── gateway-pdb.yaml │ │ │ ├── gateway-svc.yaml │ │ │ └── nginx-configmap.yaml │ │ │ ├── gossip-ring │ │ │ └── gossip-ring-svc.yaml │ │ │ ├── index-cache │ │ │ ├── index-cache-pdb.yaml │ │ │ ├── index-cache-statefulset.yaml │ │ │ └── index-cache-svc-headless.yaml │ │ │ ├── ingester │ │ │ ├── ingester-pdb.yaml │ │ │ ├── ingester-statefulset.yaml │ │ │ ├── ingester-svc-headless.yaml │ │ │ └── ingester-svc.yaml │ │ │ ├── kafka │ │ │ ├── kafka-pdb.yaml │ │ │ ├── kafka-statefulset.yaml │ │ │ ├── kafka-svc-headless.yaml │ │ │ └── kafka-svc.yaml │ │ │ ├── metadata-cache │ │ │ ├── metadata-cache-pdb.yaml │ │ │ ├── metadata-cache-statefulset.yaml │ │ │ └── metadata-cache-svc-headless.yaml │ │ │ ├── mimir-config.yaml │ │ │ ├── overrides-exporter │ │ │ ├── overrides-exporter-dep.yaml │ │ │ ├── overrides-exporter-pdb.yaml │ │ │ └── overrides-exporter-svc.yaml │ │ │ ├── querier │ │ │ ├── querier-dep.yaml │ │ │ ├── querier-pdb.yaml │ │ │ └── querier-svc.yaml │ │ │ ├── query-frontend │ │ │ ├── query-frontend-dep.yaml │ │ │ ├── query-frontend-pdb.yaml │ │ │ └── query-frontend-svc.yaml │ │ │ ├── query-scheduler │ │ │ ├── query-scheduler-dep.yaml │ │ │ ├── query-scheduler-pdb.yaml │ │ │ ├── query-scheduler-svc-headless.yaml │ │ │ └── query-scheduler-svc.yaml │ │ │ ├── results-cache │ │ │ ├── results-cache-pdb.yaml │ │ │ ├── results-cache-statefulset.yaml │ │ │ └── results-cache-svc-headless.yaml │ │ │ ├── ruler │ │ │ ├── ruler-dep.yaml │ │ │ ├── ruler-pdb.yaml │ │ │ └── ruler-svc.yaml │ │ │ ├── runtime-configmap.yaml │ │ │ ├── serviceaccount.yaml │ │ │ ├── smoke-test │ │ │ └── smoke-test-job.yaml │ │ │ └── store-gateway │ │ │ ├── store-gateway-pdb.yaml │ │ │ ├── store-gateway-statefulset.yaml │ │ │ ├── store-gateway-svc-headless.yaml │ │ │ └── store-gateway-svc.yaml │ │ ├── metamonitoring-values-generated │ │ └── mimir-distributed │ │ │ ├── charts │ │ │ ├── grafana-agent-operator │ │ │ │ └── templates │ │ │ │ │ ├── operator-clusterrole.yaml │ │ │ │ │ ├── operator-clusterrolebinding.yaml │ │ │ │ │ ├── operator-deployment.yaml │ │ │ │ │ ├── operator-serviceaccount.yaml │ │ │ │ │ └── tests │ │ │ │ │ └── test-grafanaagent.yaml │ │ │ └── minio │ │ │ │ └── templates │ │ │ │ ├── configmap.yaml │ │ │ │ ├── console-service.yaml │ │ │ │ ├── deployment.yaml │ │ │ │ ├── post-job.yaml │ │ │ │ ├── pvc.yaml │ │ │ │ ├── secrets.yaml │ │ │ │ ├── service.yaml │ │ │ │ └── serviceaccount.yaml │ │ │ └── templates │ │ │ ├── alertmanager │ │ │ ├── alertmanager-config.yaml │ │ │ ├── alertmanager-pdb.yaml │ │ │ ├── alertmanager-servmon.yaml │ │ │ ├── alertmanager-statefulset.yaml │ │ │ ├── alertmanager-svc-headless.yaml │ │ │ └── alertmanager-svc.yaml │ │ │ ├── compactor │ │ │ ├── compactor-pdb.yaml │ │ │ ├── compactor-servmon.yaml │ │ │ ├── compactor-statefulset.yaml │ │ │ └── compactor-svc.yaml │ │ │ ├── distributor │ │ │ ├── distributor-dep.yaml │ │ │ ├── distributor-pdb.yaml │ │ │ ├── distributor-servmon.yaml │ │ │ ├── distributor-svc-headless.yaml │ │ │ └── distributor-svc.yaml │ │ │ ├── gateway │ │ │ ├── gateway-dep.yaml │ │ │ ├── gateway-pdb.yaml │ │ │ ├── gateway-svc.yaml │ │ │ └── nginx-configmap.yaml │ │ │ ├── gossip-ring │ │ │ └── gossip-ring-svc.yaml │ │ │ ├── ingester │ │ │ ├── ingester-pdb.yaml │ │ │ ├── ingester-servmon.yaml │ │ │ ├── ingester-statefulset.yaml │ │ │ ├── ingester-svc-headless.yaml │ │ │ └── ingester-svc.yaml │ │ │ ├── kafka │ │ │ ├── kafka-pdb.yaml │ │ │ ├── kafka-statefulset.yaml │ │ │ ├── kafka-svc-headless.yaml │ │ │ └── kafka-svc.yaml │ │ │ ├── metamonitoring │ │ │ ├── grafana-agent-cluster-role-binding.yaml │ │ │ ├── grafana-agent-cluster-role.yaml │ │ │ ├── grafana-agent.yaml │ │ │ ├── grafana-dashboards.yaml │ │ │ ├── kube-state-metrics-servmon.yaml │ │ │ ├── kubelet-cadvisor-servmon.yaml │ │ │ ├── logs-instance-usernames-secret.yaml │ │ │ ├── logs-instance.yaml │ │ │ ├── metrics-instance-usernames-secret.yaml │ │ │ ├── metrics-instance.yaml │ │ │ ├── mixin-alerts.yaml │ │ │ ├── pod-logs.yaml │ │ │ └── recording-rules.yaml │ │ │ ├── mimir-config.yaml │ │ │ ├── minio │ │ │ └── create-bucket-job.yaml │ │ │ ├── overrides-exporter │ │ │ ├── overrides-exporter-dep.yaml │ │ │ ├── overrides-exporter-pdb.yaml │ │ │ ├── overrides-exporter-servmon.yaml │ │ │ └── overrides-exporter-svc.yaml │ │ │ ├── querier │ │ │ ├── querier-dep.yaml │ │ │ ├── querier-pdb.yaml │ │ │ ├── querier-servmon.yaml │ │ │ └── querier-svc.yaml │ │ │ ├── query-frontend │ │ │ ├── query-frontend-dep.yaml │ │ │ ├── query-frontend-pdb.yaml │ │ │ ├── query-frontend-servmon.yaml │ │ │ └── query-frontend-svc.yaml │ │ │ ├── query-scheduler │ │ │ ├── query-scheduler-dep.yaml │ │ │ ├── query-scheduler-pdb.yaml │ │ │ ├── query-scheduler-servmon.yaml │ │ │ ├── query-scheduler-svc-headless.yaml │ │ │ └── query-scheduler-svc.yaml │ │ │ ├── ruler │ │ │ ├── ruler-dep.yaml │ │ │ ├── ruler-pdb.yaml │ │ │ ├── ruler-servmon.yaml │ │ │ └── ruler-svc.yaml │ │ │ ├── runtime-configmap.yaml │ │ │ ├── serviceaccount.yaml │ │ │ ├── smoke-test │ │ │ └── smoke-test-job.yaml │ │ │ └── store-gateway │ │ │ ├── store-gateway-pdb.yaml │ │ │ ├── store-gateway-servmon.yaml │ │ │ ├── store-gateway-statefulset.yaml │ │ │ ├── store-gateway-svc-headless.yaml │ │ │ └── store-gateway-svc.yaml │ │ ├── openshift-values-generated │ │ └── mimir-distributed │ │ │ ├── charts │ │ │ └── rollout_operator │ │ │ │ └── templates │ │ │ │ ├── deployment.yaml │ │ │ │ ├── no-downscale-webhook.yaml │ │ │ │ ├── pod-eviction-webhook.yaml │ │ │ │ ├── prepare-downscale-webhook.yaml │ │ │ │ ├── role.yaml │ │ │ │ ├── rolebinding.yaml │ │ │ │ ├── service.yaml │ │ │ │ ├── serviceaccount.yaml │ │ │ │ ├── webhook-clusterrole-binding.yaml │ │ │ │ ├── webhook-clusterrole.yaml │ │ │ │ ├── webhook-role-binding.yaml │ │ │ │ ├── webhook-role.yaml │ │ │ │ └── zone-aware-pod-disruption-budget-validating-webhook.yaml │ │ │ └── templates │ │ │ ├── alertmanager │ │ │ ├── alertmanager-config.yaml │ │ │ ├── alertmanager-pdb.yaml │ │ │ ├── alertmanager-statefulset.yaml │ │ │ ├── alertmanager-svc-headless.yaml │ │ │ └── alertmanager-svc.yaml │ │ │ ├── compactor │ │ │ ├── compactor-pdb.yaml │ │ │ ├── compactor-statefulset.yaml │ │ │ └── compactor-svc.yaml │ │ │ ├── distributor │ │ │ ├── distributor-dep.yaml │ │ │ ├── distributor-pdb.yaml │ │ │ ├── distributor-svc-headless.yaml │ │ │ └── distributor-svc.yaml │ │ │ ├── gateway │ │ │ ├── gateway-dep.yaml │ │ │ ├── gateway-pdb.yaml │ │ │ ├── gateway-svc.yaml │ │ │ └── nginx-configmap.yaml │ │ │ ├── gossip-ring │ │ │ └── gossip-ring-svc.yaml │ │ │ ├── ingester │ │ │ ├── ingester-pdb.yaml │ │ │ ├── ingester-statefulset.yaml │ │ │ ├── ingester-svc-headless.yaml │ │ │ └── ingester-svc.yaml │ │ │ ├── kafka │ │ │ ├── kafka-pdb.yaml │ │ │ ├── kafka-statefulset.yaml │ │ │ ├── kafka-svc-headless.yaml │ │ │ └── kafka-svc.yaml │ │ │ ├── mimir-config.yaml │ │ │ ├── overrides-exporter │ │ │ ├── overrides-exporter-dep.yaml │ │ │ ├── overrides-exporter-pdb.yaml │ │ │ └── overrides-exporter-svc.yaml │ │ │ ├── querier │ │ │ ├── querier-dep.yaml │ │ │ ├── querier-pdb.yaml │ │ │ └── querier-svc.yaml │ │ │ ├── query-frontend │ │ │ ├── query-frontend-dep.yaml │ │ │ ├── query-frontend-pdb.yaml │ │ │ └── query-frontend-svc.yaml │ │ │ ├── query-scheduler │ │ │ ├── query-scheduler-dep.yaml │ │ │ ├── query-scheduler-pdb.yaml │ │ │ ├── query-scheduler-svc-headless.yaml │ │ │ └── query-scheduler-svc.yaml │ │ │ ├── role.yaml │ │ │ ├── rolebinding.yaml │ │ │ ├── ruler │ │ │ ├── ruler-dep.yaml │ │ │ ├── ruler-pdb.yaml │ │ │ └── ruler-svc.yaml │ │ │ ├── runtime-configmap.yaml │ │ │ ├── securitycontextconstraints.yaml │ │ │ ├── serviceaccount.yaml │ │ │ ├── smoke-test │ │ │ └── smoke-test-job.yaml │ │ │ └── store-gateway │ │ │ ├── store-gateway-pdb.yaml │ │ │ ├── store-gateway-statefulset.yaml │ │ │ ├── store-gateway-svc-headless.yaml │ │ │ └── store-gateway-svc.yaml │ │ ├── scheduler-name-values-generated │ │ └── mimir-distributed │ │ │ ├── charts │ │ │ └── rollout_operator │ │ │ │ └── templates │ │ │ │ ├── deployment.yaml │ │ │ │ ├── no-downscale-webhook.yaml │ │ │ │ ├── pod-eviction-webhook.yaml │ │ │ │ ├── prepare-downscale-webhook.yaml │ │ │ │ ├── role.yaml │ │ │ │ ├── rolebinding.yaml │ │ │ │ ├── service.yaml │ │ │ │ ├── serviceaccount.yaml │ │ │ │ ├── webhook-clusterrole-binding.yaml │ │ │ │ ├── webhook-clusterrole.yaml │ │ │ │ ├── webhook-role-binding.yaml │ │ │ │ ├── webhook-role.yaml │ │ │ │ └── zone-aware-pod-disruption-budget-validating-webhook.yaml │ │ │ └── templates │ │ │ ├── alertmanager │ │ │ ├── alertmanager-config.yaml │ │ │ ├── alertmanager-pdb.yaml │ │ │ ├── alertmanager-statefulset.yaml │ │ │ ├── alertmanager-svc-headless.yaml │ │ │ └── alertmanager-svc.yaml │ │ │ ├── compactor │ │ │ ├── compactor-pdb.yaml │ │ │ ├── compactor-statefulset.yaml │ │ │ └── compactor-svc.yaml │ │ │ ├── distributor │ │ │ ├── distributor-dep.yaml │ │ │ ├── distributor-pdb.yaml │ │ │ ├── distributor-svc-headless.yaml │ │ │ └── distributor-svc.yaml │ │ │ ├── gateway │ │ │ ├── gateway-dep.yaml │ │ │ ├── gateway-pdb.yaml │ │ │ ├── gateway-svc.yaml │ │ │ └── nginx-configmap.yaml │ │ │ ├── gossip-ring │ │ │ └── gossip-ring-svc.yaml │ │ │ ├── ingester │ │ │ ├── ingester-pdb.yaml │ │ │ ├── ingester-statefulset.yaml │ │ │ ├── ingester-svc-headless.yaml │ │ │ └── ingester-svc.yaml │ │ │ ├── kafka │ │ │ ├── kafka-pdb.yaml │ │ │ ├── kafka-statefulset.yaml │ │ │ ├── kafka-svc-headless.yaml │ │ │ └── kafka-svc.yaml │ │ │ ├── mimir-config.yaml │ │ │ ├── overrides-exporter │ │ │ ├── overrides-exporter-dep.yaml │ │ │ ├── overrides-exporter-pdb.yaml │ │ │ └── overrides-exporter-svc.yaml │ │ │ ├── querier │ │ │ ├── querier-dep.yaml │ │ │ ├── querier-pdb.yaml │ │ │ └── querier-svc.yaml │ │ │ ├── query-frontend │ │ │ ├── query-frontend-dep.yaml │ │ │ ├── query-frontend-pdb.yaml │ │ │ └── query-frontend-svc.yaml │ │ │ ├── query-scheduler │ │ │ ├── query-scheduler-dep.yaml │ │ │ ├── query-scheduler-pdb.yaml │ │ │ ├── query-scheduler-svc-headless.yaml │ │ │ └── query-scheduler-svc.yaml │ │ │ ├── ruler │ │ │ ├── ruler-dep.yaml │ │ │ ├── ruler-pdb.yaml │ │ │ └── ruler-svc.yaml │ │ │ ├── runtime-configmap.yaml │ │ │ ├── serviceaccount.yaml │ │ │ ├── smoke-test │ │ │ └── smoke-test-job.yaml │ │ │ └── store-gateway │ │ │ ├── store-gateway-pdb.yaml │ │ │ ├── store-gateway-statefulset.yaml │ │ │ ├── store-gateway-svc-headless.yaml │ │ │ └── store-gateway-svc.yaml │ │ ├── small-values-generated │ │ └── mimir-distributed │ │ │ ├── charts │ │ │ └── rollout_operator │ │ │ │ └── templates │ │ │ │ ├── deployment.yaml │ │ │ │ ├── no-downscale-webhook.yaml │ │ │ │ ├── pod-eviction-webhook.yaml │ │ │ │ ├── prepare-downscale-webhook.yaml │ │ │ │ ├── role.yaml │ │ │ │ ├── rolebinding.yaml │ │ │ │ ├── service.yaml │ │ │ │ ├── serviceaccount.yaml │ │ │ │ ├── webhook-clusterrole-binding.yaml │ │ │ │ ├── webhook-clusterrole.yaml │ │ │ │ ├── webhook-role-binding.yaml │ │ │ │ ├── webhook-role.yaml │ │ │ │ └── zone-aware-pod-disruption-budget-validating-webhook.yaml │ │ │ └── templates │ │ │ ├── alertmanager │ │ │ ├── alertmanager-config.yaml │ │ │ ├── alertmanager-pdb.yaml │ │ │ ├── alertmanager-statefulset.yaml │ │ │ ├── alertmanager-svc-headless.yaml │ │ │ └── alertmanager-svc.yaml │ │ │ ├── chunks-cache │ │ │ ├── chunks-cache-pdb.yaml │ │ │ ├── chunks-cache-statefulset.yaml │ │ │ └── chunks-cache-svc-headless.yaml │ │ │ ├── compactor │ │ │ ├── compactor-pdb.yaml │ │ │ ├── compactor-statefulset.yaml │ │ │ └── compactor-svc.yaml │ │ │ ├── distributor │ │ │ ├── distributor-dep.yaml │ │ │ ├── distributor-pdb.yaml │ │ │ ├── distributor-svc-headless.yaml │ │ │ └── distributor-svc.yaml │ │ │ ├── gateway │ │ │ ├── gateway-dep.yaml │ │ │ ├── gateway-pdb.yaml │ │ │ ├── gateway-svc.yaml │ │ │ └── nginx-configmap.yaml │ │ │ ├── gossip-ring │ │ │ └── gossip-ring-svc.yaml │ │ │ ├── index-cache │ │ │ ├── index-cache-pdb.yaml │ │ │ ├── index-cache-statefulset.yaml │ │ │ └── index-cache-svc-headless.yaml │ │ │ ├── ingester │ │ │ ├── ingester-pdb.yaml │ │ │ ├── ingester-statefulset.yaml │ │ │ ├── ingester-svc-headless.yaml │ │ │ └── ingester-svc.yaml │ │ │ ├── kafka │ │ │ ├── kafka-pdb.yaml │ │ │ ├── kafka-statefulset.yaml │ │ │ ├── kafka-svc-headless.yaml │ │ │ └── kafka-svc.yaml │ │ │ ├── metadata-cache │ │ │ ├── metadata-cache-pdb.yaml │ │ │ ├── metadata-cache-statefulset.yaml │ │ │ └── metadata-cache-svc-headless.yaml │ │ │ ├── mimir-config.yaml │ │ │ ├── overrides-exporter │ │ │ ├── overrides-exporter-dep.yaml │ │ │ ├── overrides-exporter-pdb.yaml │ │ │ └── overrides-exporter-svc.yaml │ │ │ ├── querier │ │ │ ├── querier-dep.yaml │ │ │ ├── querier-pdb.yaml │ │ │ └── querier-svc.yaml │ │ │ ├── query-frontend │ │ │ ├── query-frontend-dep.yaml │ │ │ ├── query-frontend-pdb.yaml │ │ │ └── query-frontend-svc.yaml │ │ │ ├── query-scheduler │ │ │ ├── query-scheduler-dep.yaml │ │ │ ├── query-scheduler-pdb.yaml │ │ │ ├── query-scheduler-svc-headless.yaml │ │ │ └── query-scheduler-svc.yaml │ │ │ ├── results-cache │ │ │ ├── results-cache-pdb.yaml │ │ │ ├── results-cache-statefulset.yaml │ │ │ └── results-cache-svc-headless.yaml │ │ │ ├── ruler │ │ │ ├── ruler-dep.yaml │ │ │ ├── ruler-pdb.yaml │ │ │ └── ruler-svc.yaml │ │ │ ├── runtime-configmap.yaml │ │ │ ├── serviceaccount.yaml │ │ │ ├── smoke-test │ │ │ └── smoke-test-job.yaml │ │ │ └── store-gateway │ │ │ ├── store-gateway-pdb.yaml │ │ │ ├── store-gateway-statefulset.yaml │ │ │ ├── store-gateway-svc-headless.yaml │ │ │ └── store-gateway-svc.yaml │ │ ├── test-extra-args-values-generated │ │ └── mimir-distributed │ │ │ ├── charts │ │ │ ├── minio │ │ │ │ └── templates │ │ │ │ │ ├── configmap.yaml │ │ │ │ │ ├── console-service.yaml │ │ │ │ │ ├── deployment.yaml │ │ │ │ │ ├── post-job.yaml │ │ │ │ │ ├── pvc.yaml │ │ │ │ │ ├── secrets.yaml │ │ │ │ │ ├── service.yaml │ │ │ │ │ └── serviceaccount.yaml │ │ │ └── rollout_operator │ │ │ │ └── templates │ │ │ │ ├── deployment.yaml │ │ │ │ ├── no-downscale-webhook.yaml │ │ │ │ ├── pod-eviction-webhook.yaml │ │ │ │ ├── prepare-downscale-webhook.yaml │ │ │ │ ├── role.yaml │ │ │ │ ├── rolebinding.yaml │ │ │ │ ├── service.yaml │ │ │ │ ├── serviceaccount.yaml │ │ │ │ ├── webhook-clusterrole-binding.yaml │ │ │ │ ├── webhook-clusterrole.yaml │ │ │ │ ├── webhook-role-binding.yaml │ │ │ │ ├── webhook-role.yaml │ │ │ │ └── zone-aware-pod-disruption-budget-validating-webhook.yaml │ │ │ └── templates │ │ │ ├── alertmanager │ │ │ ├── alertmanager-config.yaml │ │ │ ├── alertmanager-pdb.yaml │ │ │ ├── alertmanager-statefulset.yaml │ │ │ ├── alertmanager-svc-headless.yaml │ │ │ └── alertmanager-svc.yaml │ │ │ ├── compactor │ │ │ ├── compactor-pdb.yaml │ │ │ ├── compactor-statefulset.yaml │ │ │ └── compactor-svc.yaml │ │ │ ├── distributor │ │ │ ├── distributor-dep.yaml │ │ │ ├── distributor-pdb.yaml │ │ │ ├── distributor-svc-headless.yaml │ │ │ └── distributor-svc.yaml │ │ │ ├── gateway │ │ │ ├── gateway-dep.yaml │ │ │ ├── gateway-pdb.yaml │ │ │ ├── gateway-svc.yaml │ │ │ └── nginx-configmap.yaml │ │ │ ├── gossip-ring │ │ │ └── gossip-ring-svc.yaml │ │ │ ├── ingester │ │ │ ├── ingester-pdb.yaml │ │ │ ├── ingester-statefulset.yaml │ │ │ ├── ingester-svc-headless.yaml │ │ │ └── ingester-svc.yaml │ │ │ ├── kafka │ │ │ ├── kafka-pdb.yaml │ │ │ ├── kafka-statefulset.yaml │ │ │ ├── kafka-svc-headless.yaml │ │ │ └── kafka-svc.yaml │ │ │ ├── mimir-config.yaml │ │ │ ├── minio │ │ │ └── create-bucket-job.yaml │ │ │ ├── overrides-exporter │ │ │ ├── overrides-exporter-dep.yaml │ │ │ ├── overrides-exporter-pdb.yaml │ │ │ └── overrides-exporter-svc.yaml │ │ │ ├── querier │ │ │ ├── querier-dep.yaml │ │ │ ├── querier-pdb.yaml │ │ │ └── querier-svc.yaml │ │ │ ├── query-frontend │ │ │ ├── query-frontend-dep.yaml │ │ │ ├── query-frontend-pdb.yaml │ │ │ └── query-frontend-svc.yaml │ │ │ ├── query-scheduler │ │ │ ├── query-scheduler-dep.yaml │ │ │ ├── query-scheduler-pdb.yaml │ │ │ ├── query-scheduler-svc-headless.yaml │ │ │ └── query-scheduler-svc.yaml │ │ │ ├── ruler │ │ │ ├── ruler-dep.yaml │ │ │ ├── ruler-pdb.yaml │ │ │ └── ruler-svc.yaml │ │ │ ├── runtime-configmap.yaml │ │ │ ├── serviceaccount.yaml │ │ │ ├── smoke-test │ │ │ └── smoke-test-job.yaml │ │ │ └── store-gateway │ │ │ ├── store-gateway-pdb.yaml │ │ │ ├── store-gateway-statefulset.yaml │ │ │ ├── store-gateway-svc-headless.yaml │ │ │ └── store-gateway-svc.yaml │ │ ├── test-extra-objects-values-generated │ │ └── mimir-distributed │ │ │ ├── charts │ │ │ ├── minio │ │ │ │ └── templates │ │ │ │ │ ├── configmap.yaml │ │ │ │ │ ├── console-service.yaml │ │ │ │ │ ├── deployment.yaml │ │ │ │ │ ├── post-job.yaml │ │ │ │ │ ├── pvc.yaml │ │ │ │ │ ├── secrets.yaml │ │ │ │ │ ├── service.yaml │ │ │ │ │ └── serviceaccount.yaml │ │ │ └── rollout_operator │ │ │ │ └── templates │ │ │ │ ├── deployment.yaml │ │ │ │ ├── no-downscale-webhook.yaml │ │ │ │ ├── pod-eviction-webhook.yaml │ │ │ │ ├── prepare-downscale-webhook.yaml │ │ │ │ ├── role.yaml │ │ │ │ ├── rolebinding.yaml │ │ │ │ ├── service.yaml │ │ │ │ ├── serviceaccount.yaml │ │ │ │ ├── webhook-clusterrole-binding.yaml │ │ │ │ ├── webhook-clusterrole.yaml │ │ │ │ ├── webhook-role-binding.yaml │ │ │ │ ├── webhook-role.yaml │ │ │ │ └── zone-aware-pod-disruption-budget-validating-webhook.yaml │ │ │ └── templates │ │ │ ├── alertmanager │ │ │ ├── alertmanager-config.yaml │ │ │ ├── alertmanager-pdb.yaml │ │ │ ├── alertmanager-statefulset.yaml │ │ │ ├── alertmanager-svc-headless.yaml │ │ │ └── alertmanager-svc.yaml │ │ │ ├── compactor │ │ │ ├── compactor-pdb.yaml │ │ │ ├── compactor-statefulset.yaml │ │ │ └── compactor-svc.yaml │ │ │ ├── distributor │ │ │ ├── distributor-dep.yaml │ │ │ ├── distributor-pdb.yaml │ │ │ ├── distributor-svc-headless.yaml │ │ │ └── distributor-svc.yaml │ │ │ ├── extra-manifests.yaml │ │ │ ├── gateway │ │ │ ├── gateway-dep.yaml │ │ │ ├── gateway-pdb.yaml │ │ │ ├── gateway-svc.yaml │ │ │ └── nginx-configmap.yaml │ │ │ ├── gossip-ring │ │ │ └── gossip-ring-svc.yaml │ │ │ ├── ingester │ │ │ ├── ingester-pdb.yaml │ │ │ ├── ingester-statefulset.yaml │ │ │ ├── ingester-svc-headless.yaml │ │ │ └── ingester-svc.yaml │ │ │ ├── kafka │ │ │ ├── kafka-pdb.yaml │ │ │ ├── kafka-statefulset.yaml │ │ │ ├── kafka-svc-headless.yaml │ │ │ └── kafka-svc.yaml │ │ │ ├── mimir-config.yaml │ │ │ ├── minio │ │ │ └── create-bucket-job.yaml │ │ │ ├── overrides-exporter │ │ │ ├── overrides-exporter-dep.yaml │ │ │ ├── overrides-exporter-pdb.yaml │ │ │ └── overrides-exporter-svc.yaml │ │ │ ├── querier │ │ │ ├── querier-dep.yaml │ │ │ ├── querier-pdb.yaml │ │ │ └── querier-svc.yaml │ │ │ ├── query-frontend │ │ │ ├── query-frontend-dep.yaml │ │ │ ├── query-frontend-pdb.yaml │ │ │ └── query-frontend-svc.yaml │ │ │ ├── query-scheduler │ │ │ ├── query-scheduler-dep.yaml │ │ │ ├── query-scheduler-pdb.yaml │ │ │ ├── query-scheduler-svc-headless.yaml │ │ │ └── query-scheduler-svc.yaml │ │ │ ├── ruler │ │ │ ├── ruler-dep.yaml │ │ │ ├── ruler-pdb.yaml │ │ │ └── ruler-svc.yaml │ │ │ ├── runtime-configmap.yaml │ │ │ ├── serviceaccount.yaml │ │ │ ├── smoke-test │ │ │ └── smoke-test-job.yaml │ │ │ └── store-gateway │ │ │ ├── store-gateway-pdb.yaml │ │ │ ├── store-gateway-statefulset.yaml │ │ │ ├── store-gateway-svc-headless.yaml │ │ │ └── store-gateway-svc.yaml │ │ ├── test-gomaxprocs-override-values-generated │ │ └── mimir-distributed │ │ │ ├── charts │ │ │ ├── minio │ │ │ │ └── templates │ │ │ │ │ ├── configmap.yaml │ │ │ │ │ ├── console-service.yaml │ │ │ │ │ ├── deployment.yaml │ │ │ │ │ ├── post-job.yaml │ │ │ │ │ ├── pvc.yaml │ │ │ │ │ ├── secrets.yaml │ │ │ │ │ ├── service.yaml │ │ │ │ │ └── serviceaccount.yaml │ │ │ └── rollout_operator │ │ │ │ └── templates │ │ │ │ ├── deployment.yaml │ │ │ │ ├── no-downscale-webhook.yaml │ │ │ │ ├── pod-eviction-webhook.yaml │ │ │ │ ├── prepare-downscale-webhook.yaml │ │ │ │ ├── role.yaml │ │ │ │ ├── rolebinding.yaml │ │ │ │ ├── service.yaml │ │ │ │ ├── serviceaccount.yaml │ │ │ │ ├── webhook-clusterrole-binding.yaml │ │ │ │ ├── webhook-clusterrole.yaml │ │ │ │ ├── webhook-role-binding.yaml │ │ │ │ ├── webhook-role.yaml │ │ │ │ └── zone-aware-pod-disruption-budget-validating-webhook.yaml │ │ │ └── templates │ │ │ ├── alertmanager │ │ │ ├── alertmanager-config.yaml │ │ │ ├── alertmanager-pdb.yaml │ │ │ ├── alertmanager-statefulset.yaml │ │ │ ├── alertmanager-svc-headless.yaml │ │ │ └── alertmanager-svc.yaml │ │ │ ├── compactor │ │ │ ├── compactor-pdb.yaml │ │ │ ├── compactor-statefulset.yaml │ │ │ └── compactor-svc.yaml │ │ │ ├── distributor │ │ │ ├── distributor-dep.yaml │ │ │ ├── distributor-pdb.yaml │ │ │ ├── distributor-svc-headless.yaml │ │ │ └── distributor-svc.yaml │ │ │ ├── gateway │ │ │ ├── gateway-dep.yaml │ │ │ ├── gateway-pdb.yaml │ │ │ ├── gateway-svc.yaml │ │ │ └── nginx-configmap.yaml │ │ │ ├── gossip-ring │ │ │ └── gossip-ring-svc.yaml │ │ │ ├── ingester │ │ │ ├── ingester-pdb.yaml │ │ │ ├── ingester-statefulset.yaml │ │ │ ├── ingester-svc-headless.yaml │ │ │ └── ingester-svc.yaml │ │ │ ├── kafka │ │ │ ├── kafka-pdb.yaml │ │ │ ├── kafka-statefulset.yaml │ │ │ ├── kafka-svc-headless.yaml │ │ │ └── kafka-svc.yaml │ │ │ ├── mimir-config.yaml │ │ │ ├── minio │ │ │ └── create-bucket-job.yaml │ │ │ ├── overrides-exporter │ │ │ ├── overrides-exporter-dep.yaml │ │ │ ├── overrides-exporter-pdb.yaml │ │ │ └── overrides-exporter-svc.yaml │ │ │ ├── querier │ │ │ ├── querier-dep.yaml │ │ │ ├── querier-pdb.yaml │ │ │ └── querier-svc.yaml │ │ │ ├── query-frontend │ │ │ ├── query-frontend-dep.yaml │ │ │ ├── query-frontend-pdb.yaml │ │ │ └── query-frontend-svc.yaml │ │ │ ├── query-scheduler │ │ │ ├── query-scheduler-dep.yaml │ │ │ ├── query-scheduler-pdb.yaml │ │ │ ├── query-scheduler-svc-headless.yaml │ │ │ └── query-scheduler-svc.yaml │ │ │ ├── ruler │ │ │ ├── ruler-dep.yaml │ │ │ ├── ruler-pdb.yaml │ │ │ └── ruler-svc.yaml │ │ │ ├── runtime-configmap.yaml │ │ │ ├── serviceaccount.yaml │ │ │ ├── smoke-test │ │ │ └── smoke-test-job.yaml │ │ │ └── store-gateway │ │ │ ├── store-gateway-pdb.yaml │ │ │ ├── store-gateway-statefulset.yaml │ │ │ ├── store-gateway-svc-headless.yaml │ │ │ └── store-gateway-svc.yaml │ │ ├── test-ingest-storage-values-generated │ │ └── mimir-distributed │ │ │ ├── charts │ │ │ ├── minio │ │ │ │ └── templates │ │ │ │ │ ├── configmap.yaml │ │ │ │ │ ├── console-service.yaml │ │ │ │ │ ├── deployment.yaml │ │ │ │ │ ├── post-job.yaml │ │ │ │ │ ├── pvc.yaml │ │ │ │ │ ├── secrets.yaml │ │ │ │ │ ├── service.yaml │ │ │ │ │ └── serviceaccount.yaml │ │ │ └── rollout_operator │ │ │ │ └── templates │ │ │ │ ├── deployment.yaml │ │ │ │ ├── no-downscale-webhook.yaml │ │ │ │ ├── pod-eviction-webhook.yaml │ │ │ │ ├── prepare-downscale-webhook.yaml │ │ │ │ ├── role.yaml │ │ │ │ ├── rolebinding.yaml │ │ │ │ ├── service.yaml │ │ │ │ ├── serviceaccount.yaml │ │ │ │ ├── webhook-clusterrole-binding.yaml │ │ │ │ ├── webhook-clusterrole.yaml │ │ │ │ ├── webhook-role-binding.yaml │ │ │ │ ├── webhook-role.yaml │ │ │ │ └── zone-aware-pod-disruption-budget-validating-webhook.yaml │ │ │ └── templates │ │ │ ├── alertmanager │ │ │ ├── alertmanager-config.yaml │ │ │ ├── alertmanager-pdb.yaml │ │ │ ├── alertmanager-statefulset.yaml │ │ │ ├── alertmanager-svc-headless.yaml │ │ │ └── alertmanager-svc.yaml │ │ │ ├── compactor │ │ │ ├── compactor-pdb.yaml │ │ │ ├── compactor-statefulset.yaml │ │ │ └── compactor-svc.yaml │ │ │ ├── distributor │ │ │ ├── distributor-dep.yaml │ │ │ ├── distributor-pdb.yaml │ │ │ ├── distributor-svc-headless.yaml │ │ │ └── distributor-svc.yaml │ │ │ ├── gateway │ │ │ ├── gateway-dep.yaml │ │ │ ├── gateway-pdb.yaml │ │ │ ├── gateway-svc.yaml │ │ │ └── nginx-configmap.yaml │ │ │ ├── gossip-ring │ │ │ └── gossip-ring-svc.yaml │ │ │ ├── ingester │ │ │ ├── ingester-pdb.yaml │ │ │ ├── ingester-statefulset.yaml │ │ │ ├── ingester-svc-headless.yaml │ │ │ └── ingester-svc.yaml │ │ │ ├── kafka │ │ │ ├── kafka-pdb.yaml │ │ │ ├── kafka-statefulset.yaml │ │ │ ├── kafka-svc-headless.yaml │ │ │ └── kafka-svc.yaml │ │ │ ├── mimir-config.yaml │ │ │ ├── minio │ │ │ └── create-bucket-job.yaml │ │ │ ├── overrides-exporter │ │ │ ├── overrides-exporter-dep.yaml │ │ │ ├── overrides-exporter-pdb.yaml │ │ │ └── overrides-exporter-svc.yaml │ │ │ ├── querier │ │ │ ├── querier-dep.yaml │ │ │ ├── querier-pdb.yaml │ │ │ └── querier-svc.yaml │ │ │ ├── query-frontend │ │ │ ├── query-frontend-dep.yaml │ │ │ ├── query-frontend-pdb.yaml │ │ │ └── query-frontend-svc.yaml │ │ │ ├── query-scheduler │ │ │ ├── query-scheduler-dep.yaml │ │ │ ├── query-scheduler-pdb.yaml │ │ │ ├── query-scheduler-svc-headless.yaml │ │ │ └── query-scheduler-svc.yaml │ │ │ ├── ruler │ │ │ ├── ruler-dep.yaml │ │ │ ├── ruler-pdb.yaml │ │ │ └── ruler-svc.yaml │ │ │ ├── runtime-configmap.yaml │ │ │ ├── serviceaccount.yaml │ │ │ ├── smoke-test │ │ │ └── smoke-test-job.yaml │ │ │ └── store-gateway │ │ │ ├── store-gateway-pdb.yaml │ │ │ ├── store-gateway-statefulset.yaml │ │ │ ├── store-gateway-svc-headless.yaml │ │ │ └── store-gateway-svc.yaml │ │ ├── test-ingress-values-generated │ │ └── mimir-distributed │ │ │ ├── charts │ │ │ ├── minio │ │ │ │ └── templates │ │ │ │ │ ├── configmap.yaml │ │ │ │ │ ├── console-service.yaml │ │ │ │ │ ├── deployment.yaml │ │ │ │ │ ├── post-job.yaml │ │ │ │ │ ├── pvc.yaml │ │ │ │ │ ├── secrets.yaml │ │ │ │ │ ├── service.yaml │ │ │ │ │ └── serviceaccount.yaml │ │ │ └── rollout_operator │ │ │ │ └── templates │ │ │ │ ├── deployment.yaml │ │ │ │ ├── no-downscale-webhook.yaml │ │ │ │ ├── pod-eviction-webhook.yaml │ │ │ │ ├── prepare-downscale-webhook.yaml │ │ │ │ ├── role.yaml │ │ │ │ ├── rolebinding.yaml │ │ │ │ ├── service.yaml │ │ │ │ ├── serviceaccount.yaml │ │ │ │ ├── webhook-clusterrole-binding.yaml │ │ │ │ ├── webhook-clusterrole.yaml │ │ │ │ ├── webhook-role-binding.yaml │ │ │ │ ├── webhook-role.yaml │ │ │ │ └── zone-aware-pod-disruption-budget-validating-webhook.yaml │ │ │ └── templates │ │ │ ├── alertmanager │ │ │ ├── alertmanager-config.yaml │ │ │ ├── alertmanager-pdb.yaml │ │ │ ├── alertmanager-statefulset.yaml │ │ │ ├── alertmanager-svc-headless.yaml │ │ │ └── alertmanager-svc.yaml │ │ │ ├── compactor │ │ │ ├── compactor-pdb.yaml │ │ │ ├── compactor-statefulset.yaml │ │ │ └── compactor-svc.yaml │ │ │ ├── distributor │ │ │ ├── distributor-dep.yaml │ │ │ ├── distributor-pdb.yaml │ │ │ ├── distributor-svc-headless.yaml │ │ │ └── distributor-svc.yaml │ │ │ ├── gateway │ │ │ ├── gateway-dep.yaml │ │ │ ├── gateway-pdb.yaml │ │ │ ├── gateway-svc.yaml │ │ │ └── nginx-configmap.yaml │ │ │ ├── gossip-ring │ │ │ └── gossip-ring-svc.yaml │ │ │ ├── ingester │ │ │ ├── ingester-pdb.yaml │ │ │ ├── ingester-statefulset.yaml │ │ │ ├── ingester-svc-headless.yaml │ │ │ └── ingester-svc.yaml │ │ │ ├── ingress.yaml │ │ │ ├── kafka │ │ │ ├── kafka-pdb.yaml │ │ │ ├── kafka-statefulset.yaml │ │ │ ├── kafka-svc-headless.yaml │ │ │ └── kafka-svc.yaml │ │ │ ├── mimir-config.yaml │ │ │ ├── minio │ │ │ └── create-bucket-job.yaml │ │ │ ├── overrides-exporter │ │ │ ├── overrides-exporter-dep.yaml │ │ │ ├── overrides-exporter-pdb.yaml │ │ │ └── overrides-exporter-svc.yaml │ │ │ ├── querier │ │ │ ├── querier-dep.yaml │ │ │ ├── querier-pdb.yaml │ │ │ └── querier-svc.yaml │ │ │ ├── query-frontend │ │ │ ├── query-frontend-dep.yaml │ │ │ ├── query-frontend-pdb.yaml │ │ │ └── query-frontend-svc.yaml │ │ │ ├── query-scheduler │ │ │ ├── query-scheduler-dep.yaml │ │ │ ├── query-scheduler-pdb.yaml │ │ │ ├── query-scheduler-svc-headless.yaml │ │ │ └── query-scheduler-svc.yaml │ │ │ ├── ruler │ │ │ ├── ruler-dep.yaml │ │ │ ├── ruler-pdb.yaml │ │ │ └── ruler-svc.yaml │ │ │ ├── runtime-configmap.yaml │ │ │ ├── serviceaccount.yaml │ │ │ ├── smoke-test │ │ │ └── smoke-test-job.yaml │ │ │ └── store-gateway │ │ │ ├── store-gateway-pdb.yaml │ │ │ ├── store-gateway-statefulset.yaml │ │ │ ├── store-gateway-svc-headless.yaml │ │ │ └── store-gateway-svc.yaml │ │ ├── test-oss-component-image-values-generated │ │ └── mimir-distributed │ │ │ ├── charts │ │ │ └── rollout_operator │ │ │ │ └── templates │ │ │ │ ├── deployment.yaml │ │ │ │ ├── no-downscale-webhook.yaml │ │ │ │ ├── pod-eviction-webhook.yaml │ │ │ │ ├── prepare-downscale-webhook.yaml │ │ │ │ ├── role.yaml │ │ │ │ ├── rolebinding.yaml │ │ │ │ ├── service.yaml │ │ │ │ ├── serviceaccount.yaml │ │ │ │ ├── webhook-clusterrole-binding.yaml │ │ │ │ ├── webhook-clusterrole.yaml │ │ │ │ ├── webhook-role-binding.yaml │ │ │ │ ├── webhook-role.yaml │ │ │ │ └── zone-aware-pod-disruption-budget-validating-webhook.yaml │ │ │ └── templates │ │ │ ├── alertmanager │ │ │ ├── alertmanager-config.yaml │ │ │ ├── alertmanager-pdb.yaml │ │ │ ├── alertmanager-statefulset.yaml │ │ │ ├── alertmanager-svc-headless.yaml │ │ │ └── alertmanager-svc.yaml │ │ │ ├── compactor │ │ │ ├── compactor-pdb.yaml │ │ │ ├── compactor-statefulset.yaml │ │ │ └── compactor-svc.yaml │ │ │ ├── distributor │ │ │ ├── distributor-dep.yaml │ │ │ ├── distributor-pdb.yaml │ │ │ ├── distributor-svc-headless.yaml │ │ │ └── distributor-svc.yaml │ │ │ ├── gateway │ │ │ ├── gateway-dep.yaml │ │ │ ├── gateway-pdb.yaml │ │ │ ├── gateway-svc.yaml │ │ │ └── nginx-configmap.yaml │ │ │ ├── gossip-ring │ │ │ └── gossip-ring-svc.yaml │ │ │ ├── ingester │ │ │ ├── ingester-pdb.yaml │ │ │ ├── ingester-statefulset.yaml │ │ │ ├── ingester-svc-headless.yaml │ │ │ └── ingester-svc.yaml │ │ │ ├── kafka │ │ │ ├── kafka-pdb.yaml │ │ │ ├── kafka-statefulset.yaml │ │ │ ├── kafka-svc-headless.yaml │ │ │ └── kafka-svc.yaml │ │ │ ├── mimir-config.yaml │ │ │ ├── overrides-exporter │ │ │ ├── overrides-exporter-dep.yaml │ │ │ ├── overrides-exporter-pdb.yaml │ │ │ └── overrides-exporter-svc.yaml │ │ │ ├── querier │ │ │ ├── querier-dep.yaml │ │ │ ├── querier-pdb.yaml │ │ │ └── querier-svc.yaml │ │ │ ├── query-frontend │ │ │ ├── query-frontend-dep.yaml │ │ │ ├── query-frontend-pdb.yaml │ │ │ └── query-frontend-svc.yaml │ │ │ ├── query-scheduler │ │ │ ├── query-scheduler-dep.yaml │ │ │ ├── query-scheduler-pdb.yaml │ │ │ ├── query-scheduler-svc-headless.yaml │ │ │ └── query-scheduler-svc.yaml │ │ │ ├── ruler │ │ │ ├── ruler-dep.yaml │ │ │ ├── ruler-pdb.yaml │ │ │ └── ruler-svc.yaml │ │ │ ├── runtime-configmap.yaml │ │ │ ├── serviceaccount.yaml │ │ │ ├── smoke-test │ │ │ └── smoke-test-job.yaml │ │ │ └── store-gateway │ │ │ ├── store-gateway-pdb.yaml │ │ │ ├── store-gateway-statefulset.yaml │ │ │ ├── store-gateway-svc-headless.yaml │ │ │ └── store-gateway-svc.yaml │ │ ├── test-oss-emptydir-values-generated │ │ └── mimir-distributed │ │ │ ├── charts │ │ │ ├── minio │ │ │ │ └── templates │ │ │ │ │ ├── configmap.yaml │ │ │ │ │ ├── console-service.yaml │ │ │ │ │ ├── deployment.yaml │ │ │ │ │ ├── post-job.yaml │ │ │ │ │ ├── pvc.yaml │ │ │ │ │ ├── secrets.yaml │ │ │ │ │ ├── service.yaml │ │ │ │ │ └── serviceaccount.yaml │ │ │ └── rollout_operator │ │ │ │ └── templates │ │ │ │ ├── deployment.yaml │ │ │ │ ├── no-downscale-webhook.yaml │ │ │ │ ├── pod-eviction-webhook.yaml │ │ │ │ ├── prepare-downscale-webhook.yaml │ │ │ │ ├── role.yaml │ │ │ │ ├── rolebinding.yaml │ │ │ │ ├── service.yaml │ │ │ │ ├── serviceaccount.yaml │ │ │ │ ├── webhook-clusterrole-binding.yaml │ │ │ │ ├── webhook-clusterrole.yaml │ │ │ │ ├── webhook-role-binding.yaml │ │ │ │ ├── webhook-role.yaml │ │ │ │ └── zone-aware-pod-disruption-budget-validating-webhook.yaml │ │ │ └── templates │ │ │ ├── alertmanager │ │ │ ├── alertmanager-config.yaml │ │ │ ├── alertmanager-pdb.yaml │ │ │ ├── alertmanager-statefulset.yaml │ │ │ ├── alertmanager-svc-headless.yaml │ │ │ └── alertmanager-svc.yaml │ │ │ ├── compactor │ │ │ ├── compactor-pdb.yaml │ │ │ ├── compactor-statefulset.yaml │ │ │ └── compactor-svc.yaml │ │ │ ├── distributor │ │ │ ├── distributor-dep.yaml │ │ │ ├── distributor-pdb.yaml │ │ │ ├── distributor-svc-headless.yaml │ │ │ └── distributor-svc.yaml │ │ │ ├── gateway │ │ │ ├── gateway-dep.yaml │ │ │ ├── gateway-pdb.yaml │ │ │ ├── gateway-svc.yaml │ │ │ └── nginx-configmap.yaml │ │ │ ├── gossip-ring │ │ │ └── gossip-ring-svc.yaml │ │ │ ├── ingester │ │ │ ├── ingester-pdb.yaml │ │ │ ├── ingester-statefulset.yaml │ │ │ ├── ingester-svc-headless.yaml │ │ │ └── ingester-svc.yaml │ │ │ ├── kafka │ │ │ ├── kafka-pdb.yaml │ │ │ ├── kafka-statefulset.yaml │ │ │ ├── kafka-svc-headless.yaml │ │ │ └── kafka-svc.yaml │ │ │ ├── mimir-config.yaml │ │ │ ├── minio │ │ │ └── create-bucket-job.yaml │ │ │ ├── overrides-exporter │ │ │ ├── overrides-exporter-dep.yaml │ │ │ ├── overrides-exporter-pdb.yaml │ │ │ └── overrides-exporter-svc.yaml │ │ │ ├── querier │ │ │ ├── querier-dep.yaml │ │ │ ├── querier-pdb.yaml │ │ │ └── querier-svc.yaml │ │ │ ├── query-frontend │ │ │ ├── query-frontend-dep.yaml │ │ │ ├── query-frontend-pdb.yaml │ │ │ └── query-frontend-svc.yaml │ │ │ ├── query-scheduler │ │ │ ├── query-scheduler-dep.yaml │ │ │ ├── query-scheduler-pdb.yaml │ │ │ ├── query-scheduler-svc-headless.yaml │ │ │ └── query-scheduler-svc.yaml │ │ │ ├── ruler │ │ │ ├── ruler-dep.yaml │ │ │ ├── ruler-pdb.yaml │ │ │ └── ruler-svc.yaml │ │ │ ├── runtime-configmap.yaml │ │ │ ├── serviceaccount.yaml │ │ │ ├── smoke-test │ │ │ └── smoke-test-job.yaml │ │ │ └── store-gateway │ │ │ ├── store-gateway-pdb.yaml │ │ │ ├── store-gateway-statefulset.yaml │ │ │ ├── store-gateway-svc-headless.yaml │ │ │ └── store-gateway-svc.yaml │ │ ├── test-oss-logical-multizone-values-generated │ │ └── mimir-distributed │ │ │ ├── charts │ │ │ ├── minio │ │ │ │ └── templates │ │ │ │ │ ├── configmap.yaml │ │ │ │ │ ├── console-service.yaml │ │ │ │ │ ├── deployment.yaml │ │ │ │ │ ├── post-job.yaml │ │ │ │ │ ├── pvc.yaml │ │ │ │ │ ├── secrets.yaml │ │ │ │ │ ├── service.yaml │ │ │ │ │ └── serviceaccount.yaml │ │ │ └── rollout_operator │ │ │ │ └── templates │ │ │ │ ├── deployment.yaml │ │ │ │ ├── no-downscale-webhook.yaml │ │ │ │ ├── pod-eviction-webhook.yaml │ │ │ │ ├── prepare-downscale-webhook.yaml │ │ │ │ ├── role.yaml │ │ │ │ ├── rolebinding.yaml │ │ │ │ ├── service.yaml │ │ │ │ ├── serviceaccount.yaml │ │ │ │ ├── webhook-clusterrole-binding.yaml │ │ │ │ ├── webhook-clusterrole.yaml │ │ │ │ ├── webhook-role-binding.yaml │ │ │ │ ├── webhook-role.yaml │ │ │ │ └── zone-aware-pod-disruption-budget-validating-webhook.yaml │ │ │ └── templates │ │ │ ├── alertmanager │ │ │ ├── alertmanager-config.yaml │ │ │ ├── alertmanager-pdb.yaml │ │ │ ├── alertmanager-statefulset.yaml │ │ │ ├── alertmanager-svc-headless.yaml │ │ │ └── alertmanager-svc.yaml │ │ │ ├── compactor │ │ │ ├── compactor-pdb.yaml │ │ │ ├── compactor-statefulset.yaml │ │ │ └── compactor-svc.yaml │ │ │ ├── distributor │ │ │ ├── distributor-dep.yaml │ │ │ ├── distributor-pdb.yaml │ │ │ ├── distributor-svc-headless.yaml │ │ │ └── distributor-svc.yaml │ │ │ ├── gateway │ │ │ ├── gateway-dep.yaml │ │ │ ├── gateway-pdb.yaml │ │ │ ├── gateway-svc.yaml │ │ │ └── nginx-configmap.yaml │ │ │ ├── gossip-ring │ │ │ └── gossip-ring-svc.yaml │ │ │ ├── ingester │ │ │ ├── ingester-pdb.yaml │ │ │ ├── ingester-statefulset.yaml │ │ │ ├── ingester-svc-headless.yaml │ │ │ └── ingester-svc.yaml │ │ │ ├── kafka │ │ │ ├── kafka-pdb.yaml │ │ │ ├── kafka-statefulset.yaml │ │ │ ├── kafka-svc-headless.yaml │ │ │ └── kafka-svc.yaml │ │ │ ├── mimir-config.yaml │ │ │ ├── minio │ │ │ └── create-bucket-job.yaml │ │ │ ├── overrides-exporter │ │ │ ├── overrides-exporter-dep.yaml │ │ │ ├── overrides-exporter-pdb.yaml │ │ │ └── overrides-exporter-svc.yaml │ │ │ ├── querier │ │ │ ├── querier-dep.yaml │ │ │ ├── querier-pdb.yaml │ │ │ └── querier-svc.yaml │ │ │ ├── query-frontend │ │ │ ├── query-frontend-dep.yaml │ │ │ ├── query-frontend-pdb.yaml │ │ │ └── query-frontend-svc.yaml │ │ │ ├── query-scheduler │ │ │ ├── query-scheduler-dep.yaml │ │ │ ├── query-scheduler-pdb.yaml │ │ │ ├── query-scheduler-svc-headless.yaml │ │ │ └── query-scheduler-svc.yaml │ │ │ ├── ruler │ │ │ ├── ruler-dep.yaml │ │ │ ├── ruler-pdb.yaml │ │ │ └── ruler-svc.yaml │ │ │ ├── runtime-configmap.yaml │ │ │ ├── serviceaccount.yaml │ │ │ ├── smoke-test │ │ │ └── smoke-test-job.yaml │ │ │ └── store-gateway │ │ │ ├── store-gateway-pdb.yaml │ │ │ ├── store-gateway-statefulset.yaml │ │ │ ├── store-gateway-svc-headless.yaml │ │ │ └── store-gateway-svc.yaml │ │ ├── test-oss-multizone-values-generated │ │ └── mimir-distributed │ │ │ ├── charts │ │ │ ├── minio │ │ │ │ └── templates │ │ │ │ │ ├── configmap.yaml │ │ │ │ │ ├── console-service.yaml │ │ │ │ │ ├── deployment.yaml │ │ │ │ │ ├── post-job.yaml │ │ │ │ │ ├── pvc.yaml │ │ │ │ │ ├── secrets.yaml │ │ │ │ │ ├── service.yaml │ │ │ │ │ └── serviceaccount.yaml │ │ │ └── rollout_operator │ │ │ │ └── templates │ │ │ │ ├── deployment.yaml │ │ │ │ ├── no-downscale-webhook.yaml │ │ │ │ ├── pod-eviction-webhook.yaml │ │ │ │ ├── prepare-downscale-webhook.yaml │ │ │ │ ├── role.yaml │ │ │ │ ├── rolebinding.yaml │ │ │ │ ├── service.yaml │ │ │ │ ├── serviceaccount.yaml │ │ │ │ ├── webhook-clusterrole-binding.yaml │ │ │ │ ├── webhook-clusterrole.yaml │ │ │ │ ├── webhook-role-binding.yaml │ │ │ │ ├── webhook-role.yaml │ │ │ │ └── zone-aware-pod-disruption-budget-validating-webhook.yaml │ │ │ └── templates │ │ │ ├── alertmanager │ │ │ ├── alertmanager-config.yaml │ │ │ ├── alertmanager-pdb.yaml │ │ │ ├── alertmanager-statefulset.yaml │ │ │ ├── alertmanager-svc-headless.yaml │ │ │ └── alertmanager-svc.yaml │ │ │ ├── compactor │ │ │ ├── compactor-pdb.yaml │ │ │ ├── compactor-statefulset.yaml │ │ │ └── compactor-svc.yaml │ │ │ ├── distributor │ │ │ ├── distributor-dep.yaml │ │ │ ├── distributor-pdb.yaml │ │ │ ├── distributor-svc-headless.yaml │ │ │ └── distributor-svc.yaml │ │ │ ├── gateway │ │ │ ├── gateway-dep.yaml │ │ │ ├── gateway-pdb.yaml │ │ │ ├── gateway-svc.yaml │ │ │ └── nginx-configmap.yaml │ │ │ ├── gossip-ring │ │ │ └── gossip-ring-svc.yaml │ │ │ ├── ingester │ │ │ ├── ingester-pdb.yaml │ │ │ ├── ingester-statefulset.yaml │ │ │ ├── ingester-svc-headless.yaml │ │ │ └── ingester-svc.yaml │ │ │ ├── kafka │ │ │ ├── kafka-pdb.yaml │ │ │ ├── kafka-statefulset.yaml │ │ │ ├── kafka-svc-headless.yaml │ │ │ └── kafka-svc.yaml │ │ │ ├── mimir-config.yaml │ │ │ ├── minio │ │ │ └── create-bucket-job.yaml │ │ │ ├── overrides-exporter │ │ │ ├── overrides-exporter-dep.yaml │ │ │ ├── overrides-exporter-pdb.yaml │ │ │ └── overrides-exporter-svc.yaml │ │ │ ├── querier │ │ │ ├── querier-dep.yaml │ │ │ ├── querier-pdb.yaml │ │ │ └── querier-svc.yaml │ │ │ ├── query-frontend │ │ │ ├── query-frontend-dep.yaml │ │ │ ├── query-frontend-pdb.yaml │ │ │ └── query-frontend-svc.yaml │ │ │ ├── query-scheduler │ │ │ ├── query-scheduler-dep.yaml │ │ │ ├── query-scheduler-pdb.yaml │ │ │ ├── query-scheduler-svc-headless.yaml │ │ │ └── query-scheduler-svc.yaml │ │ │ ├── ruler │ │ │ ├── ruler-dep.yaml │ │ │ ├── ruler-pdb.yaml │ │ │ └── ruler-svc.yaml │ │ │ ├── runtime-configmap.yaml │ │ │ ├── serviceaccount.yaml │ │ │ ├── smoke-test │ │ │ └── smoke-test-job.yaml │ │ │ └── store-gateway │ │ │ ├── store-gateway-pdb.yaml │ │ │ ├── store-gateway-statefulset.yaml │ │ │ ├── store-gateway-svc-headless.yaml │ │ │ └── store-gateway-svc.yaml │ │ ├── test-oss-topology-spread-constraints-values-generated │ │ └── mimir-distributed │ │ │ ├── charts │ │ │ ├── minio │ │ │ │ └── templates │ │ │ │ │ ├── configmap.yaml │ │ │ │ │ ├── console-service.yaml │ │ │ │ │ ├── deployment.yaml │ │ │ │ │ ├── post-job.yaml │ │ │ │ │ ├── pvc.yaml │ │ │ │ │ ├── secrets.yaml │ │ │ │ │ ├── service.yaml │ │ │ │ │ └── serviceaccount.yaml │ │ │ └── rollout_operator │ │ │ │ └── templates │ │ │ │ ├── deployment.yaml │ │ │ │ ├── no-downscale-webhook.yaml │ │ │ │ ├── pod-eviction-webhook.yaml │ │ │ │ ├── prepare-downscale-webhook.yaml │ │ │ │ ├── role.yaml │ │ │ │ ├── rolebinding.yaml │ │ │ │ ├── service.yaml │ │ │ │ ├── serviceaccount.yaml │ │ │ │ ├── webhook-clusterrole-binding.yaml │ │ │ │ ├── webhook-clusterrole.yaml │ │ │ │ ├── webhook-role-binding.yaml │ │ │ │ ├── webhook-role.yaml │ │ │ │ └── zone-aware-pod-disruption-budget-validating-webhook.yaml │ │ │ └── templates │ │ │ ├── alertmanager │ │ │ ├── alertmanager-config.yaml │ │ │ ├── alertmanager-pdb.yaml │ │ │ ├── alertmanager-statefulset.yaml │ │ │ ├── alertmanager-svc-headless.yaml │ │ │ └── alertmanager-svc.yaml │ │ │ ├── compactor │ │ │ ├── compactor-pdb.yaml │ │ │ ├── compactor-statefulset.yaml │ │ │ └── compactor-svc.yaml │ │ │ ├── distributor │ │ │ ├── distributor-dep.yaml │ │ │ ├── distributor-pdb.yaml │ │ │ ├── distributor-svc-headless.yaml │ │ │ └── distributor-svc.yaml │ │ │ ├── gateway │ │ │ ├── gateway-dep.yaml │ │ │ ├── gateway-pdb.yaml │ │ │ ├── gateway-svc.yaml │ │ │ └── nginx-configmap.yaml │ │ │ ├── gossip-ring │ │ │ └── gossip-ring-svc.yaml │ │ │ ├── ingester │ │ │ ├── ingester-pdb.yaml │ │ │ ├── ingester-statefulset.yaml │ │ │ ├── ingester-svc-headless.yaml │ │ │ └── ingester-svc.yaml │ │ │ ├── kafka │ │ │ ├── kafka-pdb.yaml │ │ │ ├── kafka-statefulset.yaml │ │ │ ├── kafka-svc-headless.yaml │ │ │ └── kafka-svc.yaml │ │ │ ├── mimir-config.yaml │ │ │ ├── minio │ │ │ └── create-bucket-job.yaml │ │ │ ├── overrides-exporter │ │ │ ├── overrides-exporter-dep.yaml │ │ │ ├── overrides-exporter-pdb.yaml │ │ │ └── overrides-exporter-svc.yaml │ │ │ ├── querier │ │ │ ├── querier-dep.yaml │ │ │ ├── querier-pdb.yaml │ │ │ └── querier-svc.yaml │ │ │ ├── query-frontend │ │ │ ├── query-frontend-dep.yaml │ │ │ ├── query-frontend-pdb.yaml │ │ │ └── query-frontend-svc.yaml │ │ │ ├── query-scheduler │ │ │ ├── query-scheduler-dep.yaml │ │ │ ├── query-scheduler-pdb.yaml │ │ │ ├── query-scheduler-svc-headless.yaml │ │ │ └── query-scheduler-svc.yaml │ │ │ ├── ruler │ │ │ ├── ruler-dep.yaml │ │ │ ├── ruler-pdb.yaml │ │ │ └── ruler-svc.yaml │ │ │ ├── runtime-configmap.yaml │ │ │ ├── serviceaccount.yaml │ │ │ ├── smoke-test │ │ │ └── smoke-test-job.yaml │ │ │ └── store-gateway │ │ │ ├── store-gateway-pdb.yaml │ │ │ ├── store-gateway-statefulset.yaml │ │ │ ├── store-gateway-svc-headless.yaml │ │ │ └── store-gateway-svc.yaml │ │ ├── test-oss-values-generated │ │ └── mimir-distributed │ │ │ ├── charts │ │ │ └── minio │ │ │ │ └── templates │ │ │ │ ├── configmap.yaml │ │ │ │ ├── console-service.yaml │ │ │ │ ├── deployment.yaml │ │ │ │ ├── post-job.yaml │ │ │ │ ├── pvc.yaml │ │ │ │ ├── secrets.yaml │ │ │ │ ├── service.yaml │ │ │ │ └── serviceaccount.yaml │ │ │ └── templates │ │ │ ├── alertmanager │ │ │ ├── alertmanager-config.yaml │ │ │ ├── alertmanager-pdb.yaml │ │ │ ├── alertmanager-statefulset.yaml │ │ │ ├── alertmanager-svc-headless.yaml │ │ │ └── alertmanager-svc.yaml │ │ │ ├── chunks-cache │ │ │ ├── chunks-cache-pdb.yaml │ │ │ ├── chunks-cache-statefulset.yaml │ │ │ └── chunks-cache-svc-headless.yaml │ │ │ ├── compactor │ │ │ ├── compactor-pdb.yaml │ │ │ ├── compactor-statefulset.yaml │ │ │ └── compactor-svc.yaml │ │ │ ├── distributor │ │ │ ├── distributor-dep.yaml │ │ │ ├── distributor-pdb.yaml │ │ │ ├── distributor-svc-headless.yaml │ │ │ └── distributor-svc.yaml │ │ │ ├── gateway │ │ │ ├── gateway-dep.yaml │ │ │ ├── gateway-pdb.yaml │ │ │ ├── gateway-svc.yaml │ │ │ └── nginx-configmap.yaml │ │ │ ├── gossip-ring │ │ │ └── gossip-ring-svc.yaml │ │ │ ├── index-cache │ │ │ ├── index-cache-pdb.yaml │ │ │ ├── index-cache-statefulset.yaml │ │ │ └── index-cache-svc-headless.yaml │ │ │ ├── ingester │ │ │ ├── ingester-pdb.yaml │ │ │ ├── ingester-statefulset.yaml │ │ │ ├── ingester-svc-headless.yaml │ │ │ └── ingester-svc.yaml │ │ │ ├── kafka │ │ │ ├── kafka-pdb.yaml │ │ │ ├── kafka-statefulset.yaml │ │ │ ├── kafka-svc-headless.yaml │ │ │ └── kafka-svc.yaml │ │ │ ├── metadata-cache │ │ │ ├── metadata-cache-pdb.yaml │ │ │ ├── metadata-cache-statefulset.yaml │ │ │ └── metadata-cache-svc-headless.yaml │ │ │ ├── mimir-config.yaml │ │ │ ├── minio-secrets.yaml │ │ │ ├── minio │ │ │ └── create-bucket-job.yaml │ │ │ ├── overrides-exporter │ │ │ ├── overrides-exporter-dep.yaml │ │ │ ├── overrides-exporter-pdb.yaml │ │ │ └── overrides-exporter-svc.yaml │ │ │ ├── querier │ │ │ ├── querier-dep.yaml │ │ │ ├── querier-pdb.yaml │ │ │ └── querier-svc.yaml │ │ │ ├── query-frontend │ │ │ ├── query-frontend-dep.yaml │ │ │ ├── query-frontend-pdb.yaml │ │ │ └── query-frontend-svc.yaml │ │ │ ├── query-scheduler │ │ │ ├── query-scheduler-dep.yaml │ │ │ ├── query-scheduler-pdb.yaml │ │ │ ├── query-scheduler-svc-headless.yaml │ │ │ └── query-scheduler-svc.yaml │ │ │ ├── results-cache │ │ │ ├── results-cache-pdb.yaml │ │ │ ├── results-cache-statefulset.yaml │ │ │ └── results-cache-svc-headless.yaml │ │ │ ├── ruler │ │ │ ├── ruler-dep.yaml │ │ │ ├── ruler-pdb.yaml │ │ │ └── ruler-svc.yaml │ │ │ ├── runtime-configmap.yaml │ │ │ ├── serviceaccount.yaml │ │ │ ├── smoke-test │ │ │ └── smoke-test-job.yaml │ │ │ └── store-gateway │ │ │ ├── store-gateway-pdb.yaml │ │ │ ├── store-gateway-statefulset.yaml │ │ │ ├── store-gateway-svc-headless.yaml │ │ │ └── store-gateway-svc.yaml │ │ ├── test-requests-and-limits-values-generated │ │ └── mimir-distributed │ │ │ ├── charts │ │ │ ├── minio │ │ │ │ └── templates │ │ │ │ │ ├── configmap.yaml │ │ │ │ │ ├── console-service.yaml │ │ │ │ │ ├── deployment.yaml │ │ │ │ │ ├── post-job.yaml │ │ │ │ │ ├── pvc.yaml │ │ │ │ │ ├── secrets.yaml │ │ │ │ │ ├── service.yaml │ │ │ │ │ └── serviceaccount.yaml │ │ │ └── rollout_operator │ │ │ │ └── templates │ │ │ │ ├── deployment.yaml │ │ │ │ ├── no-downscale-webhook.yaml │ │ │ │ ├── pod-eviction-webhook.yaml │ │ │ │ ├── prepare-downscale-webhook.yaml │ │ │ │ ├── role.yaml │ │ │ │ ├── rolebinding.yaml │ │ │ │ ├── service.yaml │ │ │ │ ├── serviceaccount.yaml │ │ │ │ ├── webhook-clusterrole-binding.yaml │ │ │ │ ├── webhook-clusterrole.yaml │ │ │ │ ├── webhook-role-binding.yaml │ │ │ │ ├── webhook-role.yaml │ │ │ │ └── zone-aware-pod-disruption-budget-validating-webhook.yaml │ │ │ └── templates │ │ │ ├── alertmanager │ │ │ ├── alertmanager-config.yaml │ │ │ ├── alertmanager-pdb.yaml │ │ │ ├── alertmanager-statefulset.yaml │ │ │ ├── alertmanager-svc-headless.yaml │ │ │ └── alertmanager-svc.yaml │ │ │ ├── compactor │ │ │ ├── compactor-pdb.yaml │ │ │ ├── compactor-statefulset.yaml │ │ │ └── compactor-svc.yaml │ │ │ ├── distributor │ │ │ ├── distributor-dep.yaml │ │ │ ├── distributor-pdb.yaml │ │ │ ├── distributor-svc-headless.yaml │ │ │ └── distributor-svc.yaml │ │ │ ├── gateway │ │ │ ├── gateway-dep.yaml │ │ │ ├── gateway-pdb.yaml │ │ │ ├── gateway-svc.yaml │ │ │ └── nginx-configmap.yaml │ │ │ ├── gossip-ring │ │ │ └── gossip-ring-svc.yaml │ │ │ ├── ingester │ │ │ ├── ingester-pdb.yaml │ │ │ ├── ingester-statefulset.yaml │ │ │ ├── ingester-svc-headless.yaml │ │ │ └── ingester-svc.yaml │ │ │ ├── kafka │ │ │ ├── kafka-pdb.yaml │ │ │ ├── kafka-statefulset.yaml │ │ │ ├── kafka-svc-headless.yaml │ │ │ └── kafka-svc.yaml │ │ │ ├── mimir-config.yaml │ │ │ ├── minio │ │ │ └── create-bucket-job.yaml │ │ │ ├── overrides-exporter │ │ │ ├── overrides-exporter-dep.yaml │ │ │ ├── overrides-exporter-pdb.yaml │ │ │ └── overrides-exporter-svc.yaml │ │ │ ├── querier │ │ │ ├── querier-dep.yaml │ │ │ ├── querier-pdb.yaml │ │ │ └── querier-svc.yaml │ │ │ ├── query-frontend │ │ │ ├── query-frontend-dep.yaml │ │ │ ├── query-frontend-pdb.yaml │ │ │ └── query-frontend-svc.yaml │ │ │ ├── query-scheduler │ │ │ ├── query-scheduler-dep.yaml │ │ │ ├── query-scheduler-pdb.yaml │ │ │ ├── query-scheduler-svc-headless.yaml │ │ │ └── query-scheduler-svc.yaml │ │ │ ├── ruler │ │ │ ├── ruler-dep.yaml │ │ │ ├── ruler-pdb.yaml │ │ │ └── ruler-svc.yaml │ │ │ ├── runtime-configmap.yaml │ │ │ ├── serviceaccount.yaml │ │ │ ├── smoke-test │ │ │ └── smoke-test-job.yaml │ │ │ └── store-gateway │ │ │ ├── store-gateway-pdb.yaml │ │ │ ├── store-gateway-statefulset.yaml │ │ │ ├── store-gateway-svc-headless.yaml │ │ │ └── store-gateway-svc.yaml │ │ ├── test-revisionhistorylimit-values-generated │ │ └── mimir-distributed │ │ │ ├── charts │ │ │ ├── minio │ │ │ │ └── templates │ │ │ │ │ ├── configmap.yaml │ │ │ │ │ ├── console-service.yaml │ │ │ │ │ ├── deployment.yaml │ │ │ │ │ ├── post-job.yaml │ │ │ │ │ ├── pvc.yaml │ │ │ │ │ ├── secrets.yaml │ │ │ │ │ ├── service.yaml │ │ │ │ │ └── serviceaccount.yaml │ │ │ └── rollout_operator │ │ │ │ └── templates │ │ │ │ ├── deployment.yaml │ │ │ │ ├── no-downscale-webhook.yaml │ │ │ │ ├── pod-eviction-webhook.yaml │ │ │ │ ├── prepare-downscale-webhook.yaml │ │ │ │ ├── role.yaml │ │ │ │ ├── rolebinding.yaml │ │ │ │ ├── service.yaml │ │ │ │ ├── serviceaccount.yaml │ │ │ │ ├── webhook-clusterrole-binding.yaml │ │ │ │ ├── webhook-clusterrole.yaml │ │ │ │ ├── webhook-role-binding.yaml │ │ │ │ ├── webhook-role.yaml │ │ │ │ └── zone-aware-pod-disruption-budget-validating-webhook.yaml │ │ │ └── templates │ │ │ ├── alertmanager │ │ │ ├── alertmanager-config.yaml │ │ │ ├── alertmanager-pdb.yaml │ │ │ ├── alertmanager-statefulset.yaml │ │ │ ├── alertmanager-svc-headless.yaml │ │ │ └── alertmanager-svc.yaml │ │ │ ├── compactor │ │ │ ├── compactor-pdb.yaml │ │ │ ├── compactor-statefulset.yaml │ │ │ └── compactor-svc.yaml │ │ │ ├── distributor │ │ │ ├── distributor-dep.yaml │ │ │ ├── distributor-pdb.yaml │ │ │ ├── distributor-svc-headless.yaml │ │ │ └── distributor-svc.yaml │ │ │ ├── gateway │ │ │ ├── gateway-dep.yaml │ │ │ ├── gateway-pdb.yaml │ │ │ ├── gateway-svc.yaml │ │ │ └── nginx-configmap.yaml │ │ │ ├── gossip-ring │ │ │ └── gossip-ring-svc.yaml │ │ │ ├── ingester │ │ │ ├── ingester-pdb.yaml │ │ │ ├── ingester-statefulset.yaml │ │ │ ├── ingester-svc-headless.yaml │ │ │ └── ingester-svc.yaml │ │ │ ├── kafka │ │ │ ├── kafka-pdb.yaml │ │ │ ├── kafka-statefulset.yaml │ │ │ ├── kafka-svc-headless.yaml │ │ │ └── kafka-svc.yaml │ │ │ ├── mimir-config.yaml │ │ │ ├── minio │ │ │ └── create-bucket-job.yaml │ │ │ ├── overrides-exporter │ │ │ ├── overrides-exporter-dep.yaml │ │ │ ├── overrides-exporter-pdb.yaml │ │ │ └── overrides-exporter-svc.yaml │ │ │ ├── querier │ │ │ ├── querier-dep.yaml │ │ │ ├── querier-pdb.yaml │ │ │ └── querier-svc.yaml │ │ │ ├── query-frontend │ │ │ ├── query-frontend-dep.yaml │ │ │ ├── query-frontend-pdb.yaml │ │ │ └── query-frontend-svc.yaml │ │ │ ├── query-scheduler │ │ │ ├── query-scheduler-dep.yaml │ │ │ ├── query-scheduler-pdb.yaml │ │ │ ├── query-scheduler-svc-headless.yaml │ │ │ └── query-scheduler-svc.yaml │ │ │ ├── ruler │ │ │ ├── ruler-dep.yaml │ │ │ ├── ruler-pdb.yaml │ │ │ └── ruler-svc.yaml │ │ │ ├── runtime-configmap.yaml │ │ │ ├── serviceaccount.yaml │ │ │ ├── smoke-test │ │ │ └── smoke-test-job.yaml │ │ │ └── store-gateway │ │ │ ├── store-gateway-pdb.yaml │ │ │ ├── store-gateway-statefulset.yaml │ │ │ ├── store-gateway-svc-headless.yaml │ │ │ └── store-gateway-svc.yaml │ │ ├── test-ruler-dedicated-query-path-values-generated │ │ └── mimir-distributed │ │ │ ├── charts │ │ │ ├── minio │ │ │ │ └── templates │ │ │ │ │ ├── configmap.yaml │ │ │ │ │ ├── console-service.yaml │ │ │ │ │ ├── deployment.yaml │ │ │ │ │ ├── post-job.yaml │ │ │ │ │ ├── pvc.yaml │ │ │ │ │ ├── secrets.yaml │ │ │ │ │ ├── service.yaml │ │ │ │ │ └── serviceaccount.yaml │ │ │ └── rollout_operator │ │ │ │ └── templates │ │ │ │ ├── deployment.yaml │ │ │ │ ├── no-downscale-webhook.yaml │ │ │ │ ├── pod-eviction-webhook.yaml │ │ │ │ ├── prepare-downscale-webhook.yaml │ │ │ │ ├── role.yaml │ │ │ │ ├── rolebinding.yaml │ │ │ │ ├── service.yaml │ │ │ │ ├── serviceaccount.yaml │ │ │ │ ├── webhook-clusterrole-binding.yaml │ │ │ │ ├── webhook-clusterrole.yaml │ │ │ │ ├── webhook-role-binding.yaml │ │ │ │ ├── webhook-role.yaml │ │ │ │ └── zone-aware-pod-disruption-budget-validating-webhook.yaml │ │ │ └── templates │ │ │ ├── alertmanager │ │ │ ├── alertmanager-config.yaml │ │ │ ├── alertmanager-pdb.yaml │ │ │ ├── alertmanager-statefulset.yaml │ │ │ ├── alertmanager-svc-headless.yaml │ │ │ └── alertmanager-svc.yaml │ │ │ ├── compactor │ │ │ ├── compactor-pdb.yaml │ │ │ ├── compactor-statefulset.yaml │ │ │ └── compactor-svc.yaml │ │ │ ├── distributor │ │ │ ├── distributor-dep.yaml │ │ │ ├── distributor-pdb.yaml │ │ │ ├── distributor-svc-headless.yaml │ │ │ └── distributor-svc.yaml │ │ │ ├── gateway │ │ │ ├── gateway-dep.yaml │ │ │ ├── gateway-pdb.yaml │ │ │ ├── gateway-svc.yaml │ │ │ └── nginx-configmap.yaml │ │ │ ├── gossip-ring │ │ │ └── gossip-ring-svc.yaml │ │ │ ├── ingester │ │ │ ├── ingester-pdb.yaml │ │ │ ├── ingester-statefulset.yaml │ │ │ ├── ingester-svc-headless.yaml │ │ │ └── ingester-svc.yaml │ │ │ ├── kafka │ │ │ ├── kafka-pdb.yaml │ │ │ ├── kafka-statefulset.yaml │ │ │ ├── kafka-svc-headless.yaml │ │ │ └── kafka-svc.yaml │ │ │ ├── mimir-config.yaml │ │ │ ├── minio │ │ │ └── create-bucket-job.yaml │ │ │ ├── overrides-exporter │ │ │ ├── overrides-exporter-dep.yaml │ │ │ ├── overrides-exporter-pdb.yaml │ │ │ └── overrides-exporter-svc.yaml │ │ │ ├── querier │ │ │ ├── querier-dep.yaml │ │ │ ├── querier-pdb.yaml │ │ │ └── querier-svc.yaml │ │ │ ├── query-frontend │ │ │ ├── query-frontend-dep.yaml │ │ │ ├── query-frontend-pdb.yaml │ │ │ └── query-frontend-svc.yaml │ │ │ ├── query-scheduler │ │ │ ├── query-scheduler-dep.yaml │ │ │ ├── query-scheduler-pdb.yaml │ │ │ ├── query-scheduler-svc-headless.yaml │ │ │ └── query-scheduler-svc.yaml │ │ │ ├── ruler-querier │ │ │ ├── ruler-querier-dep.yaml │ │ │ ├── ruler-querier-pdb.yaml │ │ │ └── ruler-querier-svc.yaml │ │ │ ├── ruler-query-frontend │ │ │ ├── ruler-query-frontend-dep.yaml │ │ │ ├── ruler-query-frontend-pdb.yaml │ │ │ └── ruler-query-frontend-svc.yaml │ │ │ ├── ruler-query-scheduler │ │ │ ├── ruler-query-scheduler-dep.yaml │ │ │ ├── ruler-query-scheduler-pdb.yaml │ │ │ ├── ruler-query-scheduler-svc-headless.yaml │ │ │ └── ruler-query-scheduler-svc.yaml │ │ │ ├── ruler │ │ │ ├── ruler-dep.yaml │ │ │ ├── ruler-pdb.yaml │ │ │ └── ruler-svc.yaml │ │ │ ├── runtime-configmap.yaml │ │ │ ├── serviceaccount.yaml │ │ │ ├── smoke-test │ │ │ └── smoke-test-job.yaml │ │ │ └── store-gateway │ │ │ ├── store-gateway-pdb.yaml │ │ │ ├── store-gateway-statefulset.yaml │ │ │ ├── store-gateway-svc-headless.yaml │ │ │ └── store-gateway-svc.yaml │ │ └── test-vault-agent-values-generated │ │ └── mimir-distributed │ │ ├── charts │ │ ├── minio │ │ │ └── templates │ │ │ │ ├── configmap.yaml │ │ │ │ ├── console-service.yaml │ │ │ │ ├── deployment.yaml │ │ │ │ ├── post-job.yaml │ │ │ │ ├── pvc.yaml │ │ │ │ ├── secrets.yaml │ │ │ │ ├── service.yaml │ │ │ │ └── serviceaccount.yaml │ │ └── rollout_operator │ │ │ └── templates │ │ │ ├── deployment.yaml │ │ │ ├── no-downscale-webhook.yaml │ │ │ ├── pod-eviction-webhook.yaml │ │ │ ├── prepare-downscale-webhook.yaml │ │ │ ├── role.yaml │ │ │ ├── rolebinding.yaml │ │ │ ├── service.yaml │ │ │ ├── serviceaccount.yaml │ │ │ ├── webhook-clusterrole-binding.yaml │ │ │ ├── webhook-clusterrole.yaml │ │ │ ├── webhook-role-binding.yaml │ │ │ ├── webhook-role.yaml │ │ │ └── zone-aware-pod-disruption-budget-validating-webhook.yaml │ │ └── templates │ │ ├── alertmanager │ │ ├── alertmanager-config.yaml │ │ ├── alertmanager-pdb.yaml │ │ ├── alertmanager-statefulset.yaml │ │ ├── alertmanager-svc-headless.yaml │ │ └── alertmanager-svc.yaml │ │ ├── compactor │ │ ├── compactor-pdb.yaml │ │ ├── compactor-statefulset.yaml │ │ └── compactor-svc.yaml │ │ ├── distributor │ │ ├── distributor-dep.yaml │ │ ├── distributor-pdb.yaml │ │ ├── distributor-svc-headless.yaml │ │ └── distributor-svc.yaml │ │ ├── gateway │ │ ├── gateway-dep.yaml │ │ ├── gateway-pdb.yaml │ │ ├── gateway-svc.yaml │ │ └── nginx-configmap.yaml │ │ ├── gossip-ring │ │ └── gossip-ring-svc.yaml │ │ ├── ingester │ │ ├── ingester-pdb.yaml │ │ ├── ingester-statefulset.yaml │ │ ├── ingester-svc-headless.yaml │ │ └── ingester-svc.yaml │ │ ├── kafka │ │ ├── kafka-pdb.yaml │ │ ├── kafka-statefulset.yaml │ │ ├── kafka-svc-headless.yaml │ │ └── kafka-svc.yaml │ │ ├── mimir-config.yaml │ │ ├── minio │ │ └── create-bucket-job.yaml │ │ ├── overrides-exporter │ │ ├── overrides-exporter-dep.yaml │ │ ├── overrides-exporter-pdb.yaml │ │ └── overrides-exporter-svc.yaml │ │ ├── querier │ │ ├── querier-dep.yaml │ │ ├── querier-pdb.yaml │ │ └── querier-svc.yaml │ │ ├── query-frontend │ │ ├── query-frontend-dep.yaml │ │ ├── query-frontend-pdb.yaml │ │ └── query-frontend-svc.yaml │ │ ├── query-scheduler │ │ ├── query-scheduler-dep.yaml │ │ ├── query-scheduler-pdb.yaml │ │ ├── query-scheduler-svc-headless.yaml │ │ └── query-scheduler-svc.yaml │ │ ├── ruler │ │ ├── ruler-dep.yaml │ │ ├── ruler-pdb.yaml │ │ └── ruler-svc.yaml │ │ ├── runtime-configmap.yaml │ │ ├── serviceaccount.yaml │ │ ├── smoke-test │ │ └── smoke-test-job.yaml │ │ └── store-gateway │ │ ├── store-gateway-pdb.yaml │ │ ├── store-gateway-statefulset.yaml │ │ ├── store-gateway-svc-headless.yaml │ │ └── store-gateway-svc.yaml ├── k6 │ ├── README.md │ └── load-testing-with-k6.js ├── mimir-mixin-compiled-baremetal │ ├── alerts.yaml │ ├── dashboards │ │ ├── mimir-alertmanager-resources.json │ │ ├── mimir-alertmanager.json │ │ ├── mimir-compactor-resources.json │ │ ├── mimir-compactor.json │ │ ├── mimir-config.json │ │ ├── mimir-object-store.json │ │ ├── mimir-overrides.json │ │ ├── mimir-overview-networking.json │ │ ├── mimir-overview-resources.json │ │ ├── mimir-overview.json │ │ ├── mimir-queries.json │ │ ├── mimir-reads-networking.json │ │ ├── mimir-reads-resources.json │ │ ├── mimir-reads.json │ │ ├── mimir-remote-ruler-reads-networking.json │ │ ├── mimir-remote-ruler-reads-resources.json │ │ ├── mimir-remote-ruler-reads.json │ │ ├── mimir-rollout-progress.json │ │ ├── mimir-ruler.json │ │ ├── mimir-scaling.json │ │ ├── mimir-slow-queries.json │ │ ├── mimir-tenants.json │ │ ├── mimir-top-tenants.json │ │ ├── mimir-writes-networking.json │ │ ├── mimir-writes-resources.json │ │ └── mimir-writes.json │ └── rules.yaml ├── mimir-mixin-compiled-gem │ ├── alerts.yaml │ ├── dashboards │ │ ├── federation-frontend.json │ │ ├── mimir-alertmanager-resources.json │ │ ├── mimir-alertmanager.json │ │ ├── mimir-compactor-resources.json │ │ ├── mimir-compactor.json │ │ ├── mimir-config.json │ │ ├── mimir-object-store.json │ │ ├── mimir-overrides.json │ │ ├── mimir-overview-networking.json │ │ ├── mimir-overview-resources.json │ │ ├── mimir-overview.json │ │ ├── mimir-queries.json │ │ ├── mimir-reads-networking.json │ │ ├── mimir-reads-resources.json │ │ ├── mimir-reads.json │ │ ├── mimir-remote-ruler-reads-networking.json │ │ ├── mimir-remote-ruler-reads-resources.json │ │ ├── mimir-remote-ruler-reads.json │ │ ├── mimir-rollout-progress.json │ │ ├── mimir-ruler.json │ │ ├── mimir-scaling.json │ │ ├── mimir-slow-queries.json │ │ ├── mimir-tenants.json │ │ ├── mimir-top-tenants.json │ │ ├── mimir-writes-networking.json │ │ ├── mimir-writes-resources.json │ │ ├── mimir-writes.json │ │ └── rollout-operator.json │ └── rules.yaml ├── mimir-mixin-compiled │ ├── alerts.yaml │ ├── dashboards │ │ ├── mimir-alertmanager-resources.json │ │ ├── mimir-alertmanager.json │ │ ├── mimir-compactor-resources.json │ │ ├── mimir-compactor.json │ │ ├── mimir-config.json │ │ ├── mimir-object-store.json │ │ ├── mimir-overrides.json │ │ ├── mimir-overview-networking.json │ │ ├── mimir-overview-resources.json │ │ ├── mimir-overview.json │ │ ├── mimir-queries.json │ │ ├── mimir-reads-networking.json │ │ ├── mimir-reads-resources.json │ │ ├── mimir-reads.json │ │ ├── mimir-remote-ruler-reads-networking.json │ │ ├── mimir-remote-ruler-reads-resources.json │ │ ├── mimir-remote-ruler-reads.json │ │ ├── mimir-rollout-progress.json │ │ ├── mimir-ruler.json │ │ ├── mimir-scaling.json │ │ ├── mimir-slow-queries.json │ │ ├── mimir-tenants.json │ │ ├── mimir-top-tenants.json │ │ ├── mimir-writes-networking.json │ │ ├── mimir-writes-resources.json │ │ ├── mimir-writes.json │ │ └── rollout-operator.json │ └── rules.yaml ├── mimir-mixin-tests │ ├── .gitignore │ ├── run.sh │ ├── test-custom-labels-asserts.sh │ └── test-custom-labels.libsonnet ├── mimir-mixin-tools │ ├── screenshots │ │ ├── .gitignore │ │ ├── Dockerfile │ │ ├── go.mod │ │ ├── go.sum │ │ ├── main.go │ │ └── run.sh │ └── serve │ │ ├── .gitignore │ │ ├── provisioning-dashboards.yaml │ │ ├── provisioning-datasources.yaml │ │ └── run.sh ├── mimir-mixin │ ├── .gitignore │ ├── .lint │ ├── alerts.libsonnet │ ├── alerts │ │ ├── alertmanager.libsonnet │ │ ├── alerts-utils.libsonnet │ │ ├── alerts.libsonnet │ │ ├── autoscaling.libsonnet │ │ ├── blocks.libsonnet │ │ ├── compactor.libsonnet │ │ ├── continuous-test.libsonnet │ │ ├── distributor.libsonnet │ │ ├── gem.libsonnet │ │ └── ingest-storage.libsonnet │ ├── config.libsonnet │ ├── dashboards.libsonnet │ ├── dashboards │ │ ├── alertmanager-resources.libsonnet │ │ ├── alertmanager.libsonnet │ │ ├── block-builder.libsonnet │ │ ├── compactor-resources.libsonnet │ │ ├── compactor.libsonnet │ │ ├── config.libsonnet │ │ ├── dashboard-queries.libsonnet │ │ ├── dashboard-utils.libsonnet │ │ ├── federation-frontend.libsonnet │ │ ├── object-store.libsonnet │ │ ├── overrides.libsonnet │ │ ├── overview-networking.libsonnet │ │ ├── overview-resources.libsonnet │ │ ├── overview.libsonnet │ │ ├── queries.libsonnet │ │ ├── reads-networking.libsonnet │ │ ├── reads-resources.libsonnet │ │ ├── reads.libsonnet │ │ ├── remote-ruler-reads-networking.libsonnet │ │ ├── remote-ruler-reads-resources.libsonnet │ │ ├── remote-ruler-reads.libsonnet │ │ ├── rollout-progress.libsonnet │ │ ├── ruler.libsonnet │ │ ├── scaling.libsonnet │ │ ├── slow-queries.libsonnet │ │ ├── tenants.libsonnet │ │ ├── top-tenants.libsonnet │ │ ├── writes-networking.libsonnet │ │ ├── writes-resources.libsonnet │ │ └── writes.libsonnet │ ├── groups.libsonnet │ ├── jsonnetfile.json │ ├── jsonnetfile.lock.json │ ├── mixin-compiled-baremetal.libsonnet │ ├── mixin-compiled-gem.libsonnet │ ├── mixin-compiled.libsonnet │ ├── mixin.libsonnet │ └── recording_rules.libsonnet ├── mimir-rules-action │ ├── Dockerfile │ ├── README.md │ ├── action.yaml │ └── entrypoint.sh ├── mimir-tests │ ├── build.sh │ ├── run-conftest.sh │ ├── test-all-components-generated.yaml │ ├── test-all-components-with-custom-max-skew-generated.yaml │ ├── test-all-components-with-custom-max-skew.jsonnet │ ├── test-all-components-with-custom-runtime-config-generated.yaml │ ├── test-all-components-with-custom-runtime-config.jsonnet │ ├── test-all-components-with-deletion-protection-generated.yaml │ ├── test-all-components-with-deletion-protection.jsonnet │ ├── test-all-components-with-tsdb-head-early-compaction-generated.yaml │ ├── test-all-components-with-tsdb-head-early-compaction.jsonnet │ ├── test-all-components-without-pod-topology-constraints-generated.yaml │ ├── test-all-components-without-pod-topology-constraints.jsonnet │ ├── test-all-components.jsonnet │ ├── test-automated-downscale-generated.yaml │ ├── test-automated-downscale-v2-generated.yaml │ ├── test-automated-downscale-v2.jsonnet │ ├── test-automated-downscale.jsonnet │ ├── test-autoscaling-custom-target-utilization-generated.yaml │ ├── test-autoscaling-custom-target-utilization.jsonnet │ ├── test-autoscaling-generated.yaml │ ├── test-autoscaling.jsonnet │ ├── test-compactor-concurrent-rollout-generated.yaml │ ├── test-compactor-concurrent-rollout-max-unavailable-percent-generated.yaml │ ├── test-compactor-concurrent-rollout-max-unavailable-percent.jsonnet │ ├── test-compactor-concurrent-rollout.jsonnet │ ├── test-consul-generated.yaml │ ├── test-consul-multi-zone-generated.yaml │ ├── test-consul-multi-zone.jsonnet │ ├── test-consul-ruler-disabled-generated.yaml │ ├── test-consul-ruler-disabled.jsonnet │ ├── test-consul.jsonnet │ ├── test-continuous-test-generated.yaml │ ├── test-continuous-test.jsonnet │ ├── test-defaults-generated.yaml │ ├── test-defaults.jsonnet │ ├── test-env-vars-generated.yaml │ ├── test-env-vars.jsonnet │ ├── test-extra-runtime-config-generated.yaml │ ├── test-extra-runtime-config.jsonnet │ ├── test-helm-parity-generated.yaml │ ├── test-helm-parity.jsonnet │ ├── test-ingest-storage-autoscaling-custom-stabilization-window-generated.yaml │ ├── test-ingest-storage-autoscaling-custom-stabilization-window.jsonnet │ ├── test-ingest-storage-autoscaling-multiple-triggers-generated.yaml │ ├── test-ingest-storage-autoscaling-multiple-triggers.jsonnet │ ├── test-ingest-storage-autoscaling-one-trigger-generated.yaml │ ├── test-ingest-storage-autoscaling-one-trigger.jsonnet │ ├── test-ingest-storage-migration-step-0-generated.yaml │ ├── test-ingest-storage-migration-step-0.jsonnet │ ├── test-ingest-storage-migration-step-1-generated.yaml │ ├── test-ingest-storage-migration-step-1.jsonnet │ ├── test-ingest-storage-migration-step-10-generated.yaml │ ├── test-ingest-storage-migration-step-10.jsonnet │ ├── test-ingest-storage-migration-step-11-generated.yaml │ ├── test-ingest-storage-migration-step-11.jsonnet │ ├── test-ingest-storage-migration-step-2-generated.yaml │ ├── test-ingest-storage-migration-step-2.jsonnet │ ├── test-ingest-storage-migration-step-3-generated.yaml │ ├── test-ingest-storage-migration-step-3.jsonnet │ ├── test-ingest-storage-migration-step-4-generated.yaml │ ├── test-ingest-storage-migration-step-4.jsonnet │ ├── test-ingest-storage-migration-step-5a-generated.yaml │ ├── test-ingest-storage-migration-step-5a.jsonnet │ ├── test-ingest-storage-migration-step-5b-generated.yaml │ ├── test-ingest-storage-migration-step-5b.jsonnet │ ├── test-ingest-storage-migration-step-6-generated.yaml │ ├── test-ingest-storage-migration-step-6.jsonnet │ ├── test-ingest-storage-migration-step-7-generated.yaml │ ├── test-ingest-storage-migration-step-7.jsonnet │ ├── test-ingest-storage-migration-step-8-generated.yaml │ ├── test-ingest-storage-migration-step-8.jsonnet │ ├── test-ingest-storage-migration-step-9-generated.yaml │ ├── test-ingest-storage-migration-step-9.jsonnet │ ├── test-ingest-storage-migration-step-final-generated.yaml │ ├── test-ingest-storage-migration-step-final.jsonnet │ ├── test-memberlist-cluster-label-migration-step-0-before-generated.yaml │ ├── test-memberlist-cluster-label-migration-step-0-before.jsonnet │ ├── test-memberlist-cluster-label-migration-step-1-generated.yaml │ ├── test-memberlist-cluster-label-migration-step-1.jsonnet │ ├── test-memberlist-cluster-label-migration-step-2-generated.yaml │ ├── test-memberlist-cluster-label-migration-step-2.jsonnet │ ├── test-memberlist-cluster-label-migration-step-3-generated.yaml │ ├── test-memberlist-cluster-label-migration-step-3.jsonnet │ ├── test-memberlist-migration-step-0-before-generated.yaml │ ├── test-memberlist-migration-step-0-before.jsonnet │ ├── test-memberlist-migration-step-1-generated.yaml │ ├── test-memberlist-migration-step-1.jsonnet │ ├── test-memberlist-migration-step-2-generated.yaml │ ├── test-memberlist-migration-step-2.jsonnet │ ├── test-memberlist-migration-step-3-generated.yaml │ ├── test-memberlist-migration-step-3.jsonnet │ ├── test-memberlist-migration-step-4-generated.yaml │ ├── test-memberlist-migration-step-4.jsonnet │ ├── test-memberlist-migration-step-5-generated.yaml │ ├── test-memberlist-migration-step-5.jsonnet │ ├── test-memberlist-migration-step-6-final-generated.yaml │ ├── test-memberlist-migration-step-6-final.jsonnet │ ├── test-multi-az-read-path-generated.yaml │ ├── test-multi-az-read-path-migration-generated.yaml │ ├── test-multi-az-read-path-migration.jsonnet │ ├── test-multi-az-read-path.jsonnet │ ├── test-multi-az-write-path-generated.yaml │ ├── test-multi-az-write-path-migration-generated.yaml │ ├── test-multi-az-write-path-migration.jsonnet │ ├── test-multi-az-write-path.jsonnet │ ├── test-multi-zone-distributor-generated.yaml │ ├── test-multi-zone-generated.yaml │ ├── test-multi-zone-with-ongoing-migration-generated.yaml │ ├── test-multi-zone-with-ongoing-migration.jsonnet │ ├── test-multi-zone-with-store-gateway-automated-downscaling-generated.yaml │ ├── test-multi-zone-with-store-gateway-automated-downscaling.jsonnet │ ├── test-multi-zone.jsonnet │ ├── test-new-resource-scaled-object-generated.yaml │ ├── test-new-resource-scaled-object.jsonnet │ ├── test-node-selector-and-affinity-generated.yaml │ ├── test-node-selector-and-affinity.jsonnet │ ├── test-pvc-auto-deletion-generated.yaml │ ├── test-pvc-auto-deletion.jsonnet │ ├── test-query-scheduler-consul-ring-generated.yaml │ ├── test-query-scheduler-consul-ring.jsonnet │ ├── test-query-scheduler-memberlist-ring-and-ruler-remote-evaluation-generated.yaml │ ├── test-query-scheduler-memberlist-ring-and-ruler-remote-evaluation.jsonnet │ ├── test-query-scheduler-memberlist-ring-generated.yaml │ ├── test-query-scheduler-memberlist-ring-read-path-disabled-generated.yaml │ ├── test-query-scheduler-memberlist-ring-read-path-disabled.jsonnet │ ├── test-query-scheduler-memberlist-ring.jsonnet │ ├── test-query-sharding-generated.yaml │ ├── test-query-sharding.jsonnet │ ├── test-replica-template-generated.yaml │ ├── test-replica-template.jsonnet │ ├── test-ruler-remote-evaluation-generated.yaml │ ├── test-ruler-remote-evaluation-migration-generated.yaml │ ├── test-ruler-remote-evaluation-migration.jsonnet │ ├── test-ruler-remote-evaluation.jsonnet │ ├── test-shuffle-sharding-generated.yaml │ ├── test-shuffle-sharding-partitions-enabled-generated.yaml │ ├── test-shuffle-sharding-partitions-enabled.jsonnet │ ├── test-shuffle-sharding-read-path-disabled-generated.yaml │ ├── test-shuffle-sharding-read-path-disabled.jsonnet │ ├── test-shuffle-sharding.jsonnet │ ├── test-single-to-multi-zone-distributor-migration-generated.yaml │ ├── test-storage-azure-generated.yaml │ ├── test-storage-azure.jsonnet │ ├── test-storage-gcs-generated.yaml │ ├── test-storage-gcs.jsonnet │ ├── test-storage-s3-generated.yaml │ └── test-storage-s3.jsonnet ├── mimir │ ├── README.md │ ├── alertmanager.libsonnet │ ├── autoscaling.libsonnet │ ├── common.libsonnet │ ├── compactor.libsonnet │ ├── config.libsonnet │ ├── consul.libsonnet │ ├── continuous-test.libsonnet │ ├── deletion-protection.libsonnet │ ├── distributor.libsonnet │ ├── flusher-job-blocks.libsonnet │ ├── getting-started.sh │ ├── images.libsonnet │ ├── ingest-storage-ingester-autoscaling.libsonnet │ ├── ingest-storage-migration.libsonnet │ ├── ingest-storage.libsonnet │ ├── ingester-automated-downscale-v2.libsonnet │ ├── ingester-automated-downscale.libsonnet │ ├── ingester.libsonnet │ ├── jsonnetfile.json │ ├── jsonnetfile.lock.json │ ├── memberlist.libsonnet │ ├── memcached.libsonnet │ ├── mimir-flags-defaults.json │ ├── mimir-manifests.jsonnet.example │ ├── mimir.libsonnet │ ├── multi-zone-common.libsonnet │ ├── multi-zone-distributor.libsonnet │ ├── multi-zone-ingester.libsonnet │ ├── multi-zone-memberlist-bridge.libsonnet │ ├── multi-zone-memcached.libsonnet │ ├── multi-zone-querier.libsonnet │ ├── multi-zone-query-frontend.libsonnet │ ├── multi-zone-query-scheduler.libsonnet │ ├── multi-zone-ruler-remote-evaluation.libsonnet │ ├── multi-zone-ruler.libsonnet │ ├── multi-zone-store-gateway.libsonnet │ ├── overrides-exporter.libsonnet │ ├── pvc-auto-deletion.libsonnet │ ├── querier.libsonnet │ ├── query-frontend.libsonnet │ ├── query-scheduler.libsonnet │ ├── query-sharding.libsonnet │ ├── query-tee.libsonnet │ ├── rollout-operator.libsonnet │ ├── ruler-remote-evaluation.libsonnet │ ├── ruler.libsonnet │ ├── shuffle-sharding.libsonnet │ ├── store-gateway-automated-downscale.libsonnet │ ├── store-gateway.libsonnet │ └── tracing.libsonnet └── policies │ ├── common.rego │ ├── deployment_rollingupdate.rego │ ├── deployment_rollingupdate_test.rego │ ├── helm.yaml │ ├── jsonnet.yaml │ ├── poddisruptionbudget.rego │ ├── poddisruptionbudget_test.rego │ ├── policies.rego │ ├── policies_test.rego │ ├── security_context_test.rego │ ├── test_fixtures │ ├── deployment_rollingupdate │ │ ├── maxunavailable-non-zero.yaml │ │ ├── maxunavailable-zero.yaml │ │ ├── no-maxunavailable.yaml │ │ ├── no-rollingupdate.yaml │ │ ├── no-strategy.yaml │ │ └── non-deployment.yaml │ └── poddisruptionbudget │ │ ├── deployment-with-many-labels-and-pdb │ │ ├── deployment.yaml │ │ └── pdb.yaml │ │ ├── deployment-with-no-pdb │ │ └── deployment.yaml │ │ ├── deployment-with-pdb │ │ ├── deployment.yaml │ │ └── pdb.yaml │ │ ├── mismatched-deployment-and-pdb │ │ ├── deployment.yaml │ │ └── pdb.yaml │ │ ├── mismatched-statefulset-and-pdb │ │ ├── pdb.yaml │ │ └── statefulset.yaml │ │ ├── statefulset-with-no-pdb │ │ └── statefulset.yaml │ │ └── statefulset-with-pdb │ │ ├── pdb.yaml │ │ └── statefulset.yaml │ └── topology_spread_constraints_test.rego ├── packaging ├── deb │ └── debian-systemd │ │ └── Dockerfile ├── nfpm │ ├── mimir │ │ ├── config.yml │ │ ├── mimir.env │ │ ├── mimir.logrotate │ │ ├── mimir.service │ │ ├── postinstall.sh │ │ ├── preremove.sh │ │ └── runtime_config.yml │ ├── nfpm.jsonnet │ └── nfpm.sh └── rpm │ └── centos-systemd │ └── Dockerfile ├── pkg ├── CLAUDE.md ├── alertmanager │ ├── alertmanager.go │ ├── alertmanager_client.go │ ├── alertmanager_config.go │ ├── alertmanager_config_test.go │ ├── alertmanager_http.go │ ├── alertmanager_http_test.go │ ├── alertmanager_metrics.go │ ├── alertmanager_metrics_test.go │ ├── alertmanager_ring.go │ ├── alertmanager_ring_test.go │ ├── alertmanager_template.go │ ├── alertmanager_template_test.go │ ├── alertmanager_test.go │ ├── alertmanagerpb │ │ ├── alertmanager.pb.go │ │ └── alertmanager.proto │ ├── alertspb │ │ ├── alerts.pb.go │ │ ├── alerts.proto │ │ └── compat.go │ ├── alertstore │ │ ├── bucketclient │ │ │ ├── bucket_client.go │ │ │ └── bucket_client_test.go │ │ ├── config.go │ │ ├── local │ │ │ ├── store.go │ │ │ └── store_test.go │ │ ├── store.go │ │ └── store_test.go │ ├── api.go │ ├── api_grafana.go │ ├── api_grafana_test.go │ ├── api_test.go │ ├── config.go │ ├── config_test.go │ ├── distributor.go │ ├── distributor_test.go │ ├── merger │ │ ├── experimental_receivers.go │ │ ├── experimental_receivers_test.go │ │ ├── merger.go │ │ ├── v2_alert_groups.go │ │ ├── v2_alert_groups_test.go │ │ ├── v2_alerts.go │ │ ├── v2_alerts_test.go │ │ ├── v2_silence_id.go │ │ ├── v2_silence_id_test.go │ │ ├── v2_silences.go │ │ └── v2_silences_test.go │ ├── multitenant.go │ ├── multitenant_test.go │ ├── notify_hooks_notifier.go │ ├── notify_hooks_notifier_test.go │ ├── rate_limited_notifier.go │ ├── rate_limited_notifier_test.go │ ├── ring_status.gohtml │ ├── sender_test.go │ ├── state_persister.go │ ├── state_persister_test.go │ ├── state_replication.go │ ├── state_replication_test.go │ └── status.gohtml ├── api │ ├── api.go │ ├── api_test.go │ ├── error │ │ ├── error.go │ │ └── error_test.go │ ├── handlers.go │ ├── handlers_test.go │ ├── index.gohtml │ ├── memberlist_status.gohtml │ ├── protobuf_codec.go │ ├── protobuf_codec_test.go │ ├── static │ │ ├── bootstrap-5.1.3.bundle.min.js │ │ ├── bootstrap-5.1.3.min.css │ │ ├── bootstrap-icons-1.8.1.css │ │ ├── fonts │ │ │ ├── bootstrap-icons.woff │ │ │ └── bootstrap-icons.woff2 │ │ ├── mimir-icon.png │ │ └── mimir-styles.css │ ├── tenant.go │ └── tenant_test.go ├── blockbuilder │ ├── blockbuilder.go │ ├── blockbuilder_test.go │ ├── config.go │ ├── config_test.go │ ├── metrics.go │ ├── scheduler │ │ ├── config.go │ │ ├── jobs.go │ │ ├── jobs_test.go │ │ ├── metrics.go │ │ ├── scheduler.go │ │ └── scheduler_test.go │ ├── schedulerpb │ │ ├── client.go │ │ ├── client_test.go │ │ ├── scheduler.pb.go │ │ └── scheduler.proto │ ├── tsdb.go │ └── tsdb_test.go ├── cardinality │ ├── request.go │ └── request_test.go ├── compactor │ ├── SPLIT_MERGE_COMPACTOR.md │ ├── block_upload.go │ ├── block_upload_test.go │ ├── blocks_cleaner.go │ ├── blocks_cleaner_test.go │ ├── bucket_compactor.go │ ├── bucket_compactor_e2e_test.go │ ├── bucket_compactor_test.go │ ├── compactor.go │ ├── compactor_http.go │ ├── compactor_ring.go │ ├── compactor_tenants.gohtml │ ├── compactor_test.go │ ├── fixtures │ │ └── test-ooo-compaction │ │ │ ├── 01HNWYKRP02T1EW2AXEZXG12QA │ │ │ ├── chunks │ │ │ │ └── 000001 │ │ │ ├── index │ │ │ └── meta.json │ │ │ └── 01HNWYKS6MZWPPV0Q3FNEK4GHZ │ │ │ ├── chunks │ │ │ └── 000001 │ │ │ ├── index │ │ │ └── meta.json │ ├── job.go │ ├── job_sorting.go │ ├── job_sorting_test.go │ ├── job_test.go │ ├── label_remover_filter.go │ ├── label_remover_filter_test.go │ ├── planned_jobs.gohtml │ ├── planned_jobs_http.go │ ├── planned_jobs_http_test.go │ ├── shard_aware_deduplicate_filter.go │ ├── shard_aware_deduplicate_filter_test.go │ ├── split_merge_compactor.go │ ├── split_merge_compactor_test.go │ ├── split_merge_grouper.go │ ├── split_merge_grouper_test.go │ ├── split_merge_job.go │ ├── split_merge_job_test.go │ ├── split_merge_planner.go │ ├── split_merge_planner_test.go │ ├── status.gohtml │ ├── syncer_metrics.go │ ├── syncer_metrics_test.go │ ├── tenant_deletion_api.go │ └── tenant_deletion_api_test.go ├── continuoustest │ ├── client.go │ ├── client_test.go │ ├── config.go │ ├── ingest_storage_record.go │ ├── ingest_storage_record_test.go │ ├── manager.go │ ├── manager_test.go │ ├── metrics.go │ ├── otlp_writer.go │ ├── prometheus2_writer.go │ ├── prometheus_writer.go │ ├── util.go │ ├── util_test.go │ ├── write_read_series.go │ └── write_read_series_test.go ├── costattribution │ ├── active_tracker.go │ ├── active_tracker_test.go │ ├── costattributionmodel │ │ ├── labels.go │ │ └── labels_test.go │ ├── manager.go │ ├── manager_test.go │ ├── metrics.go │ ├── metrics_test.go │ ├── sample_tracker.go │ ├── sample_tracker_test.go │ └── testutils │ │ └── test_utils.go ├── distributor │ ├── distributor.go │ ├── distributor_ingest_storage_test.go │ ├── distributor_max_series_limit_test.go │ ├── distributor_ring.go │ ├── distributor_test.go │ ├── distributorpb │ │ ├── distributor.pb.go │ │ └── distributor.proto │ ├── errors.go │ ├── errors_test.go │ ├── ha_tracker.go │ ├── ha_tracker.pb.go │ ├── ha_tracker.proto │ ├── ha_tracker_http.go │ ├── ha_tracker_nop.go │ ├── ha_tracker_status.gohtml │ ├── ha_tracker_test.go │ ├── http_admin.go │ ├── http_server.go │ ├── influx.go │ ├── influx_test.go │ ├── influxpush │ │ ├── parser.go │ │ └── parser_test.go │ ├── ingester_client_pool.go │ ├── ingester_stats.gohtml │ ├── instance_count.go │ ├── instance_count_test.go │ ├── instance_limits.go │ ├── instance_limits_test.go │ ├── otel.go │ ├── otel_test.go │ ├── otlpappender │ │ ├── mimir_appender.go │ │ └── mimir_appender_test.go │ ├── push.go │ ├── push_test.go │ ├── query.go │ ├── query_ingest_storage_test.go │ ├── query_test.go │ ├── rate_strategy.go │ ├── rate_strategy_test.go │ ├── reactivelimiter.go │ ├── request.go │ ├── request_test.go │ ├── validate.go │ └── validate_test.go ├── flusher │ └── flusher.go ├── frontend │ ├── config.go │ ├── config_test.go │ ├── querymiddleware │ │ ├── astmapper │ │ │ ├── astmapper.go │ │ │ ├── astmapper_test.go │ │ │ ├── embedded.go │ │ │ ├── parallel.go │ │ │ ├── parallel_test.go │ │ │ ├── prom2_range_compat.go │ │ │ ├── prom2_range_compat_test.go │ │ │ ├── sharding.go │ │ │ ├── sharding_test.go │ │ │ ├── stats.go │ │ │ ├── subquery_spin_off.go │ │ │ ├── subquery_spin_off_stats.go │ │ │ └── subquery_spin_off_test.go │ │ ├── block_internal_functions.go │ │ ├── block_internal_functions_test.go │ │ ├── cardinality.go │ │ ├── cardinality_query_cache.go │ │ ├── cardinality_query_cache_test.go │ │ ├── cardinality_test.go │ │ ├── codec.go │ │ ├── codec_json.go │ │ ├── codec_json_test.go │ │ ├── codec_protobuf.go │ │ ├── codec_protobuf_test.go │ │ ├── codec_test.go │ │ ├── durations.go │ │ ├── durations_test.go │ │ ├── error_caching.go │ │ ├── error_caching_test.go │ │ ├── errors.go │ │ ├── errors_test.go │ │ ├── experimental_features.go │ │ ├── experimental_features_test.go │ │ ├── generic_query_cache.go │ │ ├── generic_query_cache_test.go │ │ ├── instrumentation.go │ │ ├── labels_query_cache.go │ │ ├── labels_query_cache_test.go │ │ ├── labels_query_optimizer.go │ │ ├── labels_query_optimizer_test.go │ │ ├── limits.go │ │ ├── limits_test.go │ │ ├── model.pb.go │ │ ├── model.pb.go.expdiff │ │ ├── model.proto │ │ ├── model_extra.go │ │ ├── model_extra_test.go │ │ ├── prom2_range_compat.go │ │ ├── prom2_range_compat_test.go │ │ ├── query_blocker.go │ │ ├── query_blocker_test.go │ │ ├── query_limiter.go │ │ ├── query_limiter_test.go │ │ ├── querysharding.go │ │ ├── querysharding_test.go │ │ ├── querysharding_test_utils_test.go │ │ ├── read_consistency.go │ │ ├── read_consistency_test.go │ │ ├── remote_read.go │ │ ├── remote_read_test.go │ │ ├── request_blocker.go │ │ ├── request_blocker_test.go │ │ ├── request_validation.go │ │ ├── request_validation_test.go │ │ ├── response_parsing_edge_cases_test.go │ │ ├── results_cache.go │ │ ├── results_cache_test.go │ │ ├── retry.go │ │ ├── retry_test.go │ │ ├── rewrite.go │ │ ├── roundtrip.go │ │ ├── roundtrip_test.go │ │ ├── running.go │ │ ├── running_test.go │ │ ├── shard_active_native_histogram_metrics.go │ │ ├── shard_active_native_histogram_metrics_test.go │ │ ├── shard_active_series.go │ │ ├── shard_active_series_response_decoder.go │ │ ├── shard_active_series_response_decoder_test.go │ │ ├── shard_active_series_test.go │ │ ├── shard_by_series_base.go │ │ ├── sharded_queryable.go │ │ ├── sharded_queryable_test.go │ │ ├── shardingtest │ │ │ ├── README.md │ │ │ └── correctness.go │ │ ├── spin_off_subqueries.go │ │ ├── spin_off_subqueries_queryable.go │ │ ├── spin_off_subqueries_test.go │ │ ├── split_and_cache.go │ │ ├── split_and_cache_test.go │ │ ├── stats.go │ │ ├── stats_test.go │ │ ├── step_align.go │ │ ├── step_align_test.go │ │ └── testdatagen │ │ │ └── datagen.go │ ├── transport │ │ ├── handler.go │ │ └── handler_test.go │ └── v2 │ │ ├── frontend.go │ │ ├── frontend_scheduler_adapter.go │ │ ├── frontend_scheduler_worker.go │ │ ├── frontend_test.go │ │ ├── frontendv2pb │ │ ├── frontend.pb.go │ │ ├── frontend.pb.go.expdiff │ │ ├── frontend.proto │ │ └── writer.go │ │ ├── remoteexec.go │ │ └── remoteexec_test.go ├── ingester │ ├── active_series.go │ ├── active_series_test.go │ ├── activeseries │ │ ├── active_labels.go │ │ ├── active_labels_test.go │ │ ├── active_native_histogram_postings.go │ │ ├── active_native_histogram_postings_test.go │ │ ├── active_postings.go │ │ ├── active_postings_test.go │ │ ├── active_series.go │ │ ├── active_series_test.go │ │ └── model │ │ │ ├── custom_trackers_config.go │ │ │ ├── custom_trackers_config_test.go │ │ │ ├── matchers.go │ │ │ ├── matchers_test.go │ │ │ └── testdata │ │ │ └── trackers.json │ ├── api.go │ ├── circuitbreaker.go │ ├── circuitbreaker_test.go │ ├── client │ │ ├── buffering_client.go │ │ ├── buffering_client_test.go │ │ ├── chunkcompat.go │ │ ├── client.go │ │ ├── client_test.go │ │ ├── compat.go │ │ ├── compat_test.go │ │ ├── custom.go │ │ ├── dep.go │ │ ├── ingester.pb.go │ │ ├── ingester.pb.go.expdiff │ │ ├── ingester.proto │ │ ├── metrics.go │ │ ├── mimir_mock_test.go │ │ ├── mimir_util.go │ │ ├── mimir_util_test.go │ │ ├── only_replica.go │ │ ├── only_replica_test.go │ │ ├── streaming.go │ │ └── streaming_test.go │ ├── downscale.go │ ├── downscale_test.go │ ├── errors.go │ ├── errors_test.go │ ├── ingester.go │ ├── ingester_activity.go │ ├── ingester_activity_test.go │ ├── ingester_early_compaction_test.go │ ├── ingester_ingest_storage_test.go │ ├── ingester_partition_ring.go │ ├── ingester_profiling.go │ ├── ingester_ring.go │ ├── ingester_ring_test.go │ ├── ingester_test.go │ ├── instance_limits.go │ ├── instance_limits_test.go │ ├── label_names_and_values.go │ ├── label_names_and_values_test.go │ ├── lifecycle_test.go │ ├── limiter.go │ ├── limiter_test.go │ ├── list_series_test.go │ ├── lookupplan │ │ ├── branch_and_bound.go │ │ ├── config.go │ │ ├── csv_test_data_test.go │ │ ├── metrics.go │ │ ├── mock_statistics_test.go │ │ ├── plan.go │ │ ├── plan_test.go │ │ ├── planner.go │ │ ├── planner_factory.go │ │ ├── planner_factory_test.go │ │ ├── planner_test.go │ │ ├── predicate.go │ │ ├── predicate_test.go │ │ ├── query_stats.go │ │ ├── query_stats_test.go │ │ ├── statistics.go │ │ ├── stats.go │ │ ├── stats_test.go │ │ ├── testdata │ │ │ ├── cardinality_estimation_test_cases.csv │ │ │ ├── filter_cost_test_cases.csv │ │ │ ├── index_lookup_cost_test_cases.csv │ │ │ ├── plan_cost_test_cases.csv │ │ │ └── planner_test_cases.csv │ │ └── testing │ │ │ ├── README.md │ │ │ ├── benchmarks_test.go │ │ │ └── comparison_test.go │ ├── metric_counter.go │ ├── metrics.go │ ├── metrics_test.go │ ├── mirror_querier.go │ ├── mirror_querier_test.go │ ├── owned_series.go │ ├── owned_series_test.go │ ├── planner_provider.go │ ├── planner_provider_test.go │ ├── reactivelimiter.go │ ├── reactivelimiter_test.go │ ├── shipper.go │ ├── shipper_test.go │ ├── stats.go │ ├── tenant_tsdb.gohtml │ ├── tenants.gohtml │ ├── tenants_http.go │ ├── tenants_http_test.go │ ├── user_metrics_metadata.go │ ├── user_metrics_metadata_test.go │ ├── user_tsdb.go │ └── user_tsdb_test.go ├── mimir │ ├── grpc_call_check.go │ ├── grpc_call_check_test.go │ ├── mimir.go │ ├── mimir_config_test.go │ ├── mimir_test.go │ ├── modules.go │ ├── modules_test.go │ ├── promexts.go │ ├── runtime_config.go │ ├── runtime_config_test.go │ ├── sanity_check.go │ ├── sanity_check_test.go │ ├── server_service.go │ ├── server_service_test.go │ ├── status.go │ └── status.gohtml ├── mimirpb │ ├── compat.go │ ├── compat_rw2.go │ ├── compat_rw2_test.go │ ├── compat_slice.go │ ├── compat_slice_test.go │ ├── compat_stringlabels.go │ ├── compat_test.go │ ├── custom.go │ ├── custom_test.go │ ├── errors.go │ ├── errors_test.go │ ├── fnv.go │ ├── mimir.pb.go │ ├── mimir.pb.go.expdiff │ ├── mimir.proto │ ├── prealloc_rw2.go │ ├── prealloc_rw2_test.go │ ├── query_response_extra.go │ ├── query_response_extra_test.go │ ├── series_sharding.go │ ├── series_sharding_test.go │ ├── split.go │ ├── split_test.go │ ├── symbols.go │ ├── symbols_test.go │ ├── testutil │ │ └── timeseries.go │ ├── timeseries.go │ ├── timeseries_test.go │ └── unmarshal_bench_test.go ├── mimirtool │ ├── analyze │ │ ├── grafana.go │ │ ├── grafana_test.go │ │ ├── prometheus.go │ │ └── ruler.go │ ├── backfill │ │ └── backfill.go │ ├── client │ │ ├── alerts.go │ │ ├── backfill.go │ │ ├── client.go │ │ ├── client_test.go │ │ ├── rules.go │ │ └── rules_test.go │ ├── commands │ │ ├── access_control.go │ │ ├── alerts.go │ │ ├── alerts_test.go │ │ ├── analyse.go │ │ ├── analyse_dashboards.go │ │ ├── analyse_grafana.go │ │ ├── analyse_grafana_test.go │ │ ├── analyse_prometheus.go │ │ ├── analyse_rulefiles.go │ │ ├── analyse_rulefiles_test.go │ │ ├── analyse_ruler.go │ │ ├── analyse_rules_test.go │ │ ├── backfill.go │ │ ├── bucket_validation.go │ │ ├── config.go │ │ ├── env_var.go │ │ ├── env_var_test.go │ │ ├── loadgen.go │ │ ├── logger.go │ │ ├── migrate.go │ │ ├── migrate_test.go │ │ ├── promql.go │ │ ├── push_gateway.go │ │ ├── remote_read.go │ │ ├── remote_read_test.go │ │ ├── rules.go │ │ ├── rules_test.go │ │ ├── runtimeconfig.go │ │ ├── runtimeconfig_test.go │ │ ├── template_render.go │ │ ├── template_render_test.go │ │ └── testdata │ │ │ ├── alertmanager_config.yaml │ │ │ ├── alertmanager_template.tmpl │ │ │ ├── apiserver.json │ │ │ ├── otherdir │ │ │ └── alertmanager_template.tmpl │ │ │ ├── prometheus_rules.yaml │ │ │ ├── runtimeconfig │ │ │ ├── invalid.yaml │ │ │ └── valid.yaml │ │ │ └── template │ │ │ ├── alert_data1.json │ │ │ ├── alert_data2.json │ │ │ ├── alertmanager_template1.tmpl │ │ │ └── alertmanager_template2.tmpl │ ├── config │ │ ├── convert.go │ │ ├── convert_test.go │ │ ├── cortex.go │ │ ├── descriptors │ │ │ ├── cortex-v1.11.0-flags-only.json │ │ │ ├── cortex-v1.11.0.json │ │ │ ├── gem-v1.7.0-flags-only.json │ │ │ ├── gem-v1.7.0.json │ │ │ ├── gem-v2.6.0-flags-only.json │ │ │ ├── gem-v2.6.0.json │ │ │ ├── mimir-v2.6.0-flags-only.json │ │ │ └── mimir-v2.6.0.json │ │ ├── gem.go │ │ ├── inspect.go │ │ ├── inspect_test.go │ │ ├── mapping.go │ │ ├── parameters.go │ │ ├── testdata │ │ │ ├── alertmanager-url-new.yaml │ │ │ ├── alertmanager-url-old.yaml │ │ │ ├── am-s3-invalid-url-old.yaml │ │ │ ├── am-s3-multiple-buckets-old.yaml │ │ │ ├── am-s3-url-new.yaml │ │ │ ├── am-s3-url-old.yaml │ │ │ ├── am-s3-url-with-endpoint-new.yaml │ │ │ ├── am-s3-url-with-endpoint-old.yaml │ │ │ ├── am-storage-precedence-new.yaml │ │ │ ├── am-storage-precedence-old.yaml │ │ │ ├── am_storage-s3-sse-new.yaml │ │ │ ├── am_storage-s3-sse-old.yaml │ │ │ ├── am_storage-s3-sse-repeated-new.yaml │ │ │ ├── am_storage-s3-sse-repeated-old.yaml │ │ │ ├── common-flags-new.txt │ │ │ ├── common-flags-old.txt │ │ │ ├── common-options-new.yaml │ │ │ ├── common-options-old.yaml │ │ │ ├── duration-list-new.yaml │ │ │ ├── duration-list-old.yaml │ │ │ ├── duration-slice-new.flags.txt │ │ │ ├── duration-slice-old.flags.txt │ │ │ ├── empty.txt │ │ │ ├── empty.yaml │ │ │ ├── flags-precedence-new.flags.txt │ │ │ ├── flags-precedence-old.flags.txt │ │ │ ├── frontend.memcached.addresses-existing-new.yaml │ │ │ ├── frontend.memcached.addresses-existing-old.yaml │ │ │ ├── frontend.memcached.addresses-new.yaml │ │ │ ├── frontend.memcached.addresses-old.yaml │ │ │ ├── gem │ │ │ │ ├── common-flags-new.txt │ │ │ │ ├── common-flags-old.txt │ │ │ │ ├── common-options-new.yaml │ │ │ │ ├── common-options-old.yaml │ │ │ │ ├── params-with-special-old-defaults-custom-values-new.yaml │ │ │ │ ├── params-with-special-old-defaults-custom-values-old.yaml │ │ │ │ ├── proxy-targets.yaml │ │ │ │ ├── ring-instance-id-new.flags.txt │ │ │ │ └── ring-instance-id-old.flags.txt │ │ │ ├── ingester-ring-new.yaml │ │ │ ├── ingester-ring-old.yaml │ │ │ ├── instance-interface-names-explicit-new.yaml │ │ │ ├── instance-interface-names-explicit-old.yaml │ │ │ ├── noop-flags-new.flags.txt │ │ │ ├── noop-flags-old.flags.txt │ │ │ ├── noop-new.yaml │ │ │ ├── noop-old.yaml │ │ │ ├── not-in-yaml-new.flags.txt │ │ │ ├── not-in-yaml-old.flags.txt │ │ │ ├── params-with-special-old-defaults-custom-values-new.yaml │ │ │ ├── params-with-special-old-defaults-custom-values-old.yaml │ │ │ ├── query-frontend-results-cache-new.yaml │ │ │ ├── query-frontend-results-cache-old.yaml │ │ │ ├── query-range-new.yaml │ │ │ ├── query-range-old.yaml │ │ │ ├── rename-new.yaml │ │ │ ├── rename-old.yaml │ │ │ ├── renamed-flags-new.flags.txt │ │ │ ├── renamed-flags-old.flags.txt │ │ │ ├── ring-instance-id-new.flags.txt │ │ │ ├── ring-instance-id-old.flags.txt │ │ │ ├── ruler-s3-non-trivial-1-url-new.yaml │ │ │ ├── ruler-s3-non-trivial-1-url-old.yaml │ │ │ ├── ruler-s3-non-trivial-2-url-new.yaml │ │ │ ├── ruler-s3-non-trivial-2-url-old.yaml │ │ │ ├── ruler-s3-non-trivial-3-url-new.yaml │ │ │ ├── ruler-s3-non-trivial-3-url-old.yaml │ │ │ ├── ruler-s3-url-new.yaml │ │ │ ├── ruler-s3-url-old.yaml │ │ │ ├── ruler-s3-url-with-secret-key-new.yaml │ │ │ ├── ruler-s3-url-with-secret-key-old.yaml │ │ │ ├── ruler.storage-old.yaml │ │ │ ├── ruler_storage-new.yaml │ │ │ ├── ruler_storage-old.yaml │ │ │ ├── ruler_storage-precedence-old.yaml │ │ │ ├── ruler_storage-s3-sse-new.yaml │ │ │ ├── ruler_storage-s3-sse-old.yaml │ │ │ ├── sharding-consul-new.yaml │ │ │ ├── sharding-consul-old.yaml │ │ │ ├── sharding-disabled-new.yaml │ │ │ ├── sharding-disabled-old.yaml │ │ │ ├── string-slice-new.flags.txt │ │ │ ├── string-slice-old.flags.txt │ │ │ ├── string-slice-single-new.flags.txt │ │ │ ├── string-slice-single-old.flags.txt │ │ │ ├── uncommon-flag-values.txt │ │ │ ├── unsupported-config.yaml │ │ │ ├── value-flags-new.flags.txt │ │ │ └── value-flags-old.flags.txt │ │ └── value.go │ ├── minisdk │ │ ├── board.go │ │ ├── custom-types.go │ │ ├── datasource.go │ │ ├── doc.go │ │ ├── panel.go │ │ ├── panel_test.go │ │ └── row.go │ ├── printer │ │ ├── printer.go │ │ └── printer_test.go │ ├── rules │ │ ├── compare.go │ │ ├── compare_test.go │ │ ├── parser.go │ │ ├── parser_test.go │ │ ├── rules.go │ │ ├── rules_test.go │ │ ├── rwrulefmt │ │ │ └── rulefmt.go │ │ └── testdata │ │ │ ├── basic_namespace.yaml │ │ │ ├── basic_namespace_repeated.yaml │ │ │ ├── loki_basic.yaml │ │ │ ├── loki_basic_failure.yaml │ │ │ ├── loki_basic_namespace.yaml │ │ │ ├── loki_multiple_namespace.yaml │ │ │ ├── mimir_federated_rules.yaml │ │ │ └── multiple_namespace.yaml │ └── version │ │ └── version.go ├── querier │ ├── api │ │ ├── DESIGN.md │ │ ├── api.go │ │ ├── consistency.go │ │ └── consistency_test.go │ ├── batch │ │ ├── batch.go │ │ ├── batch_test.go │ │ ├── chunk.go │ │ ├── chunk_test.go │ │ ├── merge.go │ │ ├── merge_test.go │ │ ├── non_overlapping.go │ │ ├── non_overlapping_test.go │ │ ├── stream.go │ │ └── stream_test.go │ ├── block.go │ ├── block_streaming.go │ ├── block_streaming_test.go │ ├── block_test.go │ ├── blocks_consistency_checker.go │ ├── blocks_consistency_checker_test.go │ ├── blocks_finder_bucket_index.go │ ├── blocks_finder_bucket_index_test.go │ ├── blocks_store_queryable.go │ ├── blocks_store_queryable_test.go │ ├── blocks_store_replicated_set.go │ ├── blocks_store_replicated_set_test.go │ ├── cardinality_analysis_handler.go │ ├── cardinality_analysis_handler_test.go │ ├── dispatcher.go │ ├── dispatcher_test.go │ ├── distributor_queryable.go │ ├── distributor_queryable_streaming.go │ ├── distributor_queryable_streaming_test.go │ ├── distributor_queryable_test.go │ ├── dummy.go │ ├── engine │ │ ├── config.go │ │ ├── query_tracker.go │ │ └── query_tracker_test.go │ ├── error_translate_queryable.go │ ├── error_translate_queryable_test.go │ ├── errors.go │ ├── errors_test.go │ ├── filter_queryables.go │ ├── filter_queryables_test.go │ ├── metadata_handler.go │ ├── metadata_handler_test.go │ ├── partitioner.go │ ├── partitioner_test.go │ ├── querier.go │ ├── querier_ring.go │ ├── querier_ring_test.go │ ├── querier_test.go │ ├── querierpb │ │ ├── querier.pb.go │ │ └── querier.proto │ ├── remote_read.go │ ├── remote_read_test.go │ ├── series_with_chunks.go │ ├── stats │ │ ├── query_metrics.go │ │ ├── stats.go │ │ ├── stats.pb.go │ │ ├── stats.proto │ │ ├── stats_test.go │ │ └── time_middleware.go │ ├── stats_renderer.go │ ├── stats_renderer_test.go │ ├── store_gateway_client.go │ ├── store_gateway_client_test.go │ ├── tenantfederation │ │ ├── merge_exemplar_queryable.go │ │ ├── merge_exemplar_queryable_test.go │ │ ├── merge_metadata.go │ │ ├── merge_metadata_test.go │ │ ├── merge_queryable.go │ │ ├── merge_queryable_test.go │ │ └── tenant_federation.go │ └── worker │ │ ├── processor_manager.go │ │ ├── scheduler_processor.go │ │ ├── scheduler_processor_test.go │ │ ├── util.go │ │ ├── util_test.go │ │ ├── worker.go │ │ └── worker_test.go ├── ruler │ ├── api.go │ ├── api_test.go │ ├── client_pool.go │ ├── client_pool_test.go │ ├── compat.go │ ├── compat_test.go │ ├── fixtures │ │ ├── rules_chain.yaml │ │ ├── rules_indeterminates.yaml │ │ ├── rules_multiple_independent.yaml │ │ ├── rules_self_and_same_name_reference.yaml │ │ ├── rules_self_reference.yaml │ │ └── rules_topological_sort_needed.json │ ├── grpc_roundtripper.go │ ├── http_roundtripper.go │ ├── lifecycle_test.go │ ├── manager.go │ ├── manager_metrics.go │ ├── manager_metrics_test.go │ ├── manager_test.go │ ├── mapper.go │ ├── mapper_test.go │ ├── memory_tracker_queryable.go │ ├── namespace_protection.go │ ├── namespace_protection_test.go │ ├── notifier.go │ ├── notifier │ │ ├── notifier_config.go │ │ └── notifier_config_test.go │ ├── notifier_test.go │ ├── pusher_mock_test.go │ ├── remotequerier.go │ ├── remotequerier_decoder.go │ ├── remotequerier_decoder_test.go │ ├── remotequerier_test.go │ ├── rule_concurrency.go │ ├── rule_concurrency_test.go │ ├── rule_groups.gohtml │ ├── rule_query_consistency.go │ ├── rule_query_consistency_test.go │ ├── ruler.go │ ├── ruler.pb.go │ ├── ruler.pb.go.expdiff │ ├── ruler.proto │ ├── ruler_ring.go │ ├── ruler_sync_queue.go │ ├── ruler_sync_queue_test.go │ ├── ruler_test.go │ ├── rulespb │ │ ├── compat.go │ │ ├── compat_test.go │ │ ├── custom.go │ │ ├── rules.pb.go │ │ └── rules.proto │ ├── rulestore │ │ ├── bucketclient │ │ │ ├── bucket_client.go │ │ │ └── bucket_client_test.go │ │ ├── config.go │ │ ├── config_test.go │ │ ├── local │ │ │ ├── local.go │ │ │ └── local_test.go │ │ └── store.go │ ├── service_discovery.go │ ├── service_discovery_test.go │ ├── storage.go │ ├── store_mock_test.go │ ├── tenant_federation.go │ ├── tenant_federation_test.go │ └── tenants.gohtml ├── scheduler │ ├── DESIGN.md │ ├── README.md │ ├── images │ │ └── request-queue-design-live-simulation.png │ ├── queue │ │ ├── multi_queuing_algorithm_tree_queue_benchmark_test.go │ │ ├── querier_connections.go │ │ ├── querier_connections_test.go │ │ ├── query_component_utilization.go │ │ ├── queue.go │ │ ├── queue_broker.go │ │ ├── queue_broker_test.go │ │ ├── queue_test.go │ │ ├── tenant_querier_shards.go │ │ ├── tenant_querier_shards_test.go │ │ └── tree │ │ │ ├── multi_algorithm_tree_queue.go │ │ │ ├── multi_algorithm_tree_queue_test.go │ │ │ ├── round_robin_queuing_algorithm.go │ │ │ ├── tenant_querier_queuing_algorithm.go │ │ │ ├── tree_queue_algo_querier_worker_queue_priority.go │ │ │ └── tree_queue_algo_querier_worker_queue_priority_test.go │ ├── scheduler.go │ ├── scheduler_test.go │ ├── schedulerdiscovery │ │ ├── config.go │ │ ├── config_test.go │ │ ├── discovery.go │ │ ├── ring.go │ │ └── ring_test.go │ └── schedulerpb │ │ ├── custom.go │ │ ├── scheduler.pb.go │ │ └── scheduler.proto ├── storage │ ├── bucket │ │ ├── azure │ │ │ ├── bucket_client.go │ │ │ ├── bucket_client_test.go │ │ │ └── config.go │ │ ├── bucket_util.go │ │ ├── bucket_util_test.go │ │ ├── client.go │ │ ├── client_mock.go │ │ ├── client_test.go │ │ ├── common │ │ │ └── http.go │ │ ├── delayed_bucket_client.go │ │ ├── error_injected_bucket_client.go │ │ ├── filesystem │ │ │ ├── bucket_client.go │ │ │ └── config.go │ │ ├── gcs │ │ │ ├── bucket_client.go │ │ │ └── config.go │ │ ├── prefixed_bucket_client.go │ │ ├── prefixed_bucket_client_test.go │ │ ├── s3 │ │ │ ├── bucket_client.go │ │ │ ├── config.go │ │ │ └── config_test.go │ │ ├── sse_bucket_client.go │ │ ├── sse_bucket_client_test.go │ │ ├── swift │ │ │ ├── bucket_client.go │ │ │ └── config.go │ │ └── user_bucket_client.go │ ├── chunk │ │ ├── chunk.go │ │ ├── chunk_test.go │ │ ├── factory.go │ │ ├── json_helpers.go │ │ └── prometheus_chunk.go │ ├── indexheader │ │ ├── binary_reader.go │ │ ├── encoding │ │ │ ├── encoding.go │ │ │ ├── encoding_test.go │ │ │ ├── factory.go │ │ │ ├── factory_test.go │ │ │ ├── reader.go │ │ │ └── reader_test.go │ │ ├── header.go │ │ ├── header_test.go │ │ ├── index │ │ │ ├── postings.go │ │ │ ├── postings_test.go │ │ │ ├── symbols.go │ │ │ └── symbols_test.go │ │ ├── indexheaderpb │ │ │ ├── sparse.pb.go │ │ │ └── sparse.proto │ │ ├── lazy_binary_reader.go │ │ ├── lazy_binary_reader_test.go │ │ ├── reader_benchmarks_test.go │ │ ├── reader_pool.go │ │ ├── reader_pool_test.go │ │ ├── snapshotter.go │ │ ├── snapshotter_test.go │ │ ├── stream_binary_reader.go │ │ ├── stream_binary_reader_test.go │ │ └── testdata │ │ │ ├── index_format_v1 │ │ │ ├── chunks │ │ │ │ └── .gitkeep │ │ │ ├── index │ │ │ └── meta.json │ │ │ └── index_format_v2 │ │ │ ├── chunks │ │ │ └── .gitkeep │ │ │ ├── index │ │ │ └── meta.json │ ├── ingest │ │ ├── DESIGN.md │ │ ├── INTERNALS.md │ │ ├── config.go │ │ ├── config_test.go │ │ ├── fetcher.go │ │ ├── fetcher_test.go │ │ ├── kafka_client_metrics.go │ │ ├── logger.go │ │ ├── partition_offset_client.go │ │ ├── partition_offset_client_test.go │ │ ├── partition_offset_reader.go │ │ ├── partition_offset_reader_test.go │ │ ├── partition_offset_watcher.go │ │ ├── partition_offset_watcher_test.go │ │ ├── pusher.go │ │ ├── pusher_metrics.go │ │ ├── pusher_test.go │ │ ├── reader.go │ │ ├── reader_client.go │ │ ├── reader_client_test.go │ │ ├── reader_test.go │ │ ├── util.go │ │ ├── util_test.go │ │ ├── version.go │ │ ├── version_test.go │ │ ├── writer.go │ │ ├── writer_client.go │ │ ├── writer_client_test.go │ │ └── writer_test.go │ ├── lazyquery │ │ ├── lazyquery.go │ │ └── lazyquery_test.go │ ├── series │ │ ├── memory_tracking_series_set.go │ │ ├── memory_tracking_series_set_test.go │ │ ├── series_set.go │ │ └── series_set_test.go │ ├── sharding │ │ ├── label.go │ │ └── label_test.go │ ├── soft_append_error_processor.go │ ├── soft_append_error_processor_test.go │ └── tsdb │ │ ├── block │ │ ├── block.go │ │ ├── block_generator.go │ │ ├── block_mock.go │ │ ├── block_test.go │ │ ├── fetcher.go │ │ ├── fetcher_test.go │ │ ├── global_markers.go │ │ ├── global_markers_bucket_client.go │ │ ├── global_markers_bucket_client_test.go │ │ ├── global_markers_test.go │ │ ├── index.go │ │ ├── index_test.go │ │ ├── markers.go │ │ ├── meta.go │ │ └── meta_test.go │ │ ├── bucketcache │ │ ├── caching_bucket.go │ │ ├── caching_bucket_config.go │ │ └── caching_bucket_test.go │ │ ├── bucketindex │ │ ├── index.go │ │ ├── index_test.go │ │ ├── loader.go │ │ ├── loader_test.go │ │ ├── storage.go │ │ ├── storage_test.go │ │ ├── updater.go │ │ └── updater_test.go │ │ ├── caching_config.go │ │ ├── caching_config_test.go │ │ ├── config.go │ │ ├── config_test.go │ │ ├── index_cache.go │ │ ├── index_cache_test.go │ │ ├── tenant_deletion_mark.go │ │ ├── tenant_deletion_mark_test.go │ │ ├── testutil │ │ └── objstore.go │ │ ├── users_scanner.go │ │ ├── users_scanner_test.go │ │ ├── util.go │ │ └── util_test.go ├── storegateway │ ├── blocks.gohtml │ ├── bucket.go │ ├── bucket_chunk_reader.go │ ├── bucket_chunk_reader_test.go │ ├── bucket_e2e_test.go │ ├── bucket_index_metadata_fetcher.go │ ├── bucket_index_metadata_fetcher_test.go │ ├── bucket_index_postings.go │ ├── bucket_index_postings_test.go │ ├── bucket_index_reader.go │ ├── bucket_store_metrics.go │ ├── bucket_store_server_test.go │ ├── bucket_stores.go │ ├── bucket_stores_test.go │ ├── bucket_test.go │ ├── dynamic_replication.go │ ├── dynamic_replication_test.go │ ├── error.go │ ├── fixtures │ │ └── test-query-block-with-ooo-chunks │ │ │ └── 01HNWXEBE3GSYWM2BX7FPFDEKT │ │ │ ├── chunks │ │ │ └── 000001 │ │ │ ├── index │ │ │ └── meta.json │ ├── gateway.go │ ├── gateway_blocks_http.go │ ├── gateway_prepare_shutdown_http.go │ ├── gateway_prepare_shutdown_http_test.go │ ├── gateway_ring.go │ ├── gateway_ring_http.go │ ├── gateway_ring_test.go │ ├── gateway_tenants_http.go │ ├── gateway_test.go │ ├── hintspb │ │ ├── custom.go │ │ ├── hints.pb.go │ │ └── hints.proto │ ├── indexcache │ │ ├── cache.go │ │ ├── cache_test.go │ │ ├── inmemory.go │ │ ├── inmemory_test.go │ │ ├── remote.go │ │ ├── remote_test.go │ │ └── tracing.go │ ├── io.go │ ├── limiter.go │ ├── limiter_test.go │ ├── metadata_fetcher_filters.go │ ├── metadata_fetcher_filters_test.go │ ├── metadata_fetcher_metrics.go │ ├── metadata_fetcher_metrics_test.go │ ├── partitioner.go │ ├── partitioner_test.go │ ├── postings_codec.go │ ├── postings_codec_test.go │ ├── prometheus_test.go │ ├── ring_status.gohtml │ ├── series_chunks.go │ ├── series_chunks_test.go │ ├── series_refs.go │ ├── series_refs_streaming.go │ ├── series_refs_streaming_test.go │ ├── series_refs_test.go │ ├── sharding_strategy.go │ ├── sharding_strategy_test.go │ ├── snappy_gob_codec.go │ ├── snappy_gob_codec_test.go │ ├── stats.go │ ├── stats_test.go │ ├── storegatewaypb │ │ ├── custom.go │ │ ├── gateway.pb.go │ │ └── gateway.proto │ ├── storepb │ │ ├── cache.pb.go │ │ ├── cache.pb.go.expdiff │ │ ├── cache.proto │ │ ├── custom.go │ │ ├── rpc.pb.go │ │ ├── rpc.pb.go.expdiff │ │ ├── rpc.proto │ │ ├── types.pb.go │ │ └── types.proto │ └── tenants.gohtml ├── streamingpromql │ ├── README.md │ ├── README_FUZZ_TESTING.md │ ├── benchmarks │ │ ├── README.md │ │ ├── benchmarks.go │ │ ├── comparison_test.go │ │ └── ingester.go │ ├── compat │ │ ├── errors.go │ │ ├── fallback_engine.go │ │ ├── fallback_engine_test.go │ │ ├── fallback_header.go │ │ └── fallback_header_test.go │ ├── config.go │ ├── engine.go │ ├── engine_concurrency_test.go │ ├── engine_fuzz_test.go │ ├── engine_test.go │ ├── evaluator.go │ ├── floats │ │ ├── kahan.go │ │ ├── kahan_test.go │ │ ├── quantile.go │ │ └── quantile_test.go │ ├── functions_test.go │ ├── operators │ │ ├── aggregations │ │ │ ├── README.md │ │ │ ├── aggregation.go │ │ │ ├── aggregation_test.go │ │ │ ├── aggregations_safety_test.go │ │ │ ├── avg.go │ │ │ ├── common.go │ │ │ ├── count.go │ │ │ ├── count_values.go │ │ │ ├── count_values_test.go │ │ │ ├── histogram_counter_reset_tracker.go │ │ │ ├── histogram_counter_reset_tracker_test.go │ │ │ ├── limitklimitratio │ │ │ │ ├── operator.go │ │ │ │ └── step_arguments.go │ │ │ ├── min_max.go │ │ │ ├── quantile.go │ │ │ ├── stddev_stdvar.go │ │ │ ├── sum.go │ │ │ └── topkbottomk │ │ │ │ ├── instant_query.go │ │ │ │ ├── instant_query_test.go │ │ │ │ ├── range_query.go │ │ │ │ ├── range_query_test.go │ │ │ │ ├── topk_bottomk.go │ │ │ │ └── topk_bottomk_test.go │ │ ├── binops │ │ │ ├── and_unless_binary_operation.go │ │ │ ├── and_unless_binary_operation_test.go │ │ │ ├── binary_operation.go │ │ │ ├── binary_operation_test.go │ │ │ ├── grouped_vector_vector_binary_operation.go │ │ │ ├── grouped_vector_vector_binary_operation_test.go │ │ │ ├── one_to_one_vector_vector_binary_operation.go │ │ │ ├── one_to_one_vector_vector_binary_operation_test.go │ │ │ ├── or_binary_operation.go │ │ │ ├── or_binary_operation_test.go │ │ │ ├── scalar_scalar_binary_operation.go │ │ │ └── vector_scalar_binary_operation.go │ │ ├── deduplicate_and_merge.go │ │ ├── deduplicate_and_merge_test.go │ │ ├── drop_name.go │ │ ├── drop_name_test.go │ │ ├── functions │ │ │ ├── absent.go │ │ │ ├── absent_over_time.go │ │ │ ├── absent_test.go │ │ │ ├── common.go │ │ │ ├── common_test.go │ │ │ ├── factories.go │ │ │ ├── factories_test.go │ │ │ ├── function_over_instant_vector.go │ │ │ ├── function_over_instant_vector_test.go │ │ │ ├── function_over_range_vector.go │ │ │ ├── functions.go │ │ │ ├── functions.pb.go │ │ │ ├── functions.proto │ │ │ ├── histogram_function.go │ │ │ ├── histogram_function_test.go │ │ │ ├── label.go │ │ │ ├── math.go │ │ │ ├── native_histograms.go │ │ │ ├── range_vectors.go │ │ │ ├── range_vectors_test.go │ │ │ ├── rate_increase.go │ │ │ ├── sort.go │ │ │ ├── sort_by_label.go │ │ │ ├── times.go │ │ │ └── timestamp.go │ │ ├── metric_names.go │ │ ├── operator_buffer.go │ │ ├── operator_buffer_test.go │ │ ├── scalars │ │ │ ├── instant_vector_to_scalar.go │ │ │ ├── scalar_constant.go │ │ │ ├── scalar_to_instant_vector.go │ │ │ └── unary_negation_scalar.go │ │ ├── selectors │ │ │ ├── extend_range_vector.go │ │ │ ├── instant_vector_selector.go │ │ │ ├── instant_vector_selector_test.go │ │ │ ├── range_vector_selector.go │ │ │ ├── range_vector_selector_test.go │ │ │ ├── selector.go │ │ │ └── selector_test.go │ │ ├── series_merging.go │ │ ├── series_merging_test.go │ │ ├── step_invariant_instant_vector_operator.go │ │ ├── step_invariant_scalar_operator.go │ │ ├── string.go │ │ ├── subquery.go │ │ ├── subquery_test.go │ │ ├── test_operator.go │ │ └── time.go │ ├── optimize │ │ ├── ast │ │ │ ├── collapse_constants.go │ │ │ ├── collapse_constants_test.go │ │ │ ├── propagate_matchers.go │ │ │ ├── propagate_matchers_test.go │ │ │ ├── prune_toggles.go │ │ │ ├── prune_toggles_test.go │ │ │ ├── reduce_matchers.go │ │ │ ├── reduce_matchers_test.go │ │ │ ├── reorder_histogram_aggregation.go │ │ │ ├── reorder_histogram_aggregation_test.go │ │ │ ├── sharding │ │ │ │ ├── concat.go │ │ │ │ ├── concat_test.go │ │ │ │ ├── optimization_pass.go │ │ │ │ ├── optimization_pass_test.go │ │ │ │ └── sharding_test.go │ │ │ ├── sort_labels_and_matchers.go │ │ │ ├── sort_labels_and_matchers_test.go │ │ │ └── util_test.go │ │ ├── inspect.go │ │ ├── interface.go │ │ └── plan │ │ │ ├── commonsubexpressionelimination │ │ │ ├── instant_vector_operator.go │ │ │ ├── instant_vector_operator_test.go │ │ │ ├── node.go │ │ │ ├── node.pb.go │ │ │ ├── node.proto │ │ │ ├── optimization_pass.go │ │ │ ├── optimization_pass_test.go │ │ │ ├── range_vector_operator.go │ │ │ ├── range_vector_operator_test.go │ │ │ ├── series_data_ring_buffer.go │ │ │ └── series_data_ring_buffer_test.go │ │ │ ├── eliminate_deduplicate_and_merge.go │ │ │ ├── eliminate_deduplicate_and_merge_test.go │ │ │ ├── narrow_selectors.go │ │ │ ├── narrow_selectors_test.go │ │ │ ├── remoteexec │ │ │ ├── executor.go │ │ │ ├── instant_vector_operator.go │ │ │ ├── instant_vector_operator_test.go │ │ │ ├── node.go │ │ │ ├── node.pb.go │ │ │ ├── node.proto │ │ │ ├── operators.go │ │ │ ├── operators_test.go │ │ │ ├── optimization_pass.go │ │ │ ├── optimization_pass_test.go │ │ │ ├── range_vector_operator.go │ │ │ ├── range_vector_operator_test.go │ │ │ ├── scalar_operator.go │ │ │ └── scalar_operator_test.go │ │ │ ├── skip_histogram_decoding.go │ │ │ └── skip_histogram_decoding_test.go │ ├── planning.go │ ├── planning │ │ ├── analysis │ │ │ ├── analysis.go │ │ │ └── analysis_test.go │ │ ├── core │ │ │ ├── aggregate_expression.go │ │ │ ├── aggregate_expression_test.go │ │ │ ├── binary_expression.go │ │ │ ├── binary_expression_test.go │ │ │ ├── conversions.go │ │ │ ├── core.go │ │ │ ├── core.pb.go │ │ │ ├── core.proto │ │ │ ├── deduplicate_and_merge.go │ │ │ ├── drop_name.go │ │ │ ├── function_call.go │ │ │ ├── function_call_test.go │ │ │ ├── matrix_selector.go │ │ │ ├── matrix_selector_test.go │ │ │ ├── number_literal.go │ │ │ ├── number_literal_test.go │ │ │ ├── selectors.go │ │ │ ├── step_invariant_expression.go │ │ │ ├── string_literal.go │ │ │ ├── string_literal_test.go │ │ │ ├── subquery.go │ │ │ ├── subquery_test.go │ │ │ ├── unary_expression.go │ │ │ ├── unary_expression_test.go │ │ │ ├── utils_test.go │ │ │ ├── vector_selector.go │ │ │ └── vector_selector_test.go │ │ ├── materialize.go │ │ ├── operators.go │ │ ├── plan.go │ │ ├── plan.pb.go │ │ ├── plan.proto │ │ └── plan_test.go │ ├── planning_test.go │ ├── query.go │ ├── test.go │ ├── testdata │ │ ├── README.md │ │ ├── fuzz │ │ │ └── data │ │ │ │ ├── seed-data.test │ │ │ │ └── seed-queries.test │ │ ├── ours-only │ │ │ ├── anchored.test │ │ │ ├── collision.test │ │ │ └── functions.test │ │ ├── ours │ │ │ ├── aggregators.test │ │ │ ├── anchored.test │ │ │ ├── at_modifier.test │ │ │ ├── binary_operators.test │ │ │ ├── common_subexpression_elimination.test │ │ │ ├── functions.test │ │ │ ├── histograms.test │ │ │ ├── limit.test │ │ │ ├── literals.test │ │ │ ├── name_label_dropping.test │ │ │ ├── name_label_dropping_histograms.test │ │ │ ├── native_histograms.test │ │ │ ├── reduce_matchers.test │ │ │ ├── selectors.test │ │ │ ├── smoothed.test │ │ │ ├── staleness.test │ │ │ └── subqueries.test │ │ └── upstream │ │ │ ├── README.md │ │ │ ├── aggregators.test │ │ │ ├── at_modifier.test │ │ │ ├── collision.test │ │ │ ├── duration_expression.test │ │ │ ├── extended_vectors.test │ │ │ ├── functions.test │ │ │ ├── histograms.test │ │ │ ├── info.test.disabled │ │ │ ├── limit.test │ │ │ ├── literals.test │ │ │ ├── name_label_dropping.test │ │ │ ├── native_histograms.test │ │ │ ├── operators.test │ │ │ ├── range_queries.test │ │ │ ├── selectors.test │ │ │ ├── staleness.test │ │ │ ├── subquery.test │ │ │ ├── trig_functions.test │ │ │ └── type_and_unit.test.disabled │ ├── testdata_in_sync_test.go │ ├── testutils │ │ ├── compat_fixup_labels_slice.go │ │ ├── compat_fixup_labels_stringlabels.go │ │ ├── utils.go │ │ └── utils_test.go │ └── types │ │ ├── data.go │ │ ├── data_test.go │ │ ├── fpoint_ring_buffer.go │ │ ├── functions.go │ │ ├── hpoint_ring_buffer.go │ │ ├── limiting_pool.go │ │ ├── limiting_pool_test.go │ │ ├── operator.go │ │ ├── pool.go │ │ ├── pool_test.go │ │ ├── ring_buffer_test.go │ │ └── stats.go ├── usagestats │ ├── middleware.go │ ├── report.go │ ├── report_test.go │ ├── reporter.go │ ├── reporter_test.go │ ├── seed.go │ ├── seed_test.go │ ├── stats.go │ └── stats_test.go ├── usagetracker │ ├── clock │ │ ├── minutes.go │ │ └── minutes_test.go │ ├── partition_handler.go │ ├── partition_handler_test.go │ ├── tenantshard │ │ ├── map.go │ │ ├── map_nonsimd.go │ │ ├── map_nonsimd_test.go │ │ └── map_test.go │ ├── tenantshard_bench_test.go │ ├── tracker.go │ ├── tracker_instance_ring.go │ ├── tracker_partition_ring.go │ ├── tracker_store.go │ ├── tracker_store_bench_test.go │ ├── tracker_store_collector.go │ ├── tracker_store_snapshot.go │ ├── tracker_store_test.go │ ├── tracker_test.go │ ├── usagetrackerclient │ │ ├── client.go │ │ ├── client_test.go │ │ └── grpc_client_pool.go │ └── usagetrackerpb │ │ ├── usagetracker.pb.go │ │ └── usagetracker.proto ├── util │ ├── active_groups.go │ ├── active_groups_test.go │ ├── active_user.go │ ├── active_user_test.go │ ├── activitytracker │ │ ├── activity_tracker.go │ │ └── activity_tracker_test.go │ ├── allow_list.go │ ├── allow_list_test.go │ ├── atomicfs │ │ ├── fsync.go │ │ └── fsync_test.go │ ├── bench │ │ ├── query_loader.go │ │ └── query_loader_test.go │ ├── chunkinfologger │ │ ├── chunkinfologger.go │ │ ├── chunkinfologger_test.go │ │ ├── debugheader.go │ │ └── debugheader_test.go │ ├── closer.go │ ├── config.go │ ├── configdoc │ │ ├── fieldcategory.go │ │ └── hidden.go │ ├── extprom │ │ └── tx_gauge.go │ ├── extract │ │ └── extract.go │ ├── fs │ │ └── dir.go │ ├── globalerror │ │ ├── grpc.go │ │ ├── grpc_test.go │ │ ├── histogram.go │ │ ├── user.go │ │ └── user_test.go │ ├── grpc.go │ ├── grpc_test.go │ ├── grpcencoding │ │ └── s2 │ │ │ ├── s2.go │ │ │ └── s2_test.go │ ├── grpcstats │ │ ├── bytes_tracker.go │ │ └── bytes_tracker_test.go │ ├── gziphandler │ │ ├── doc.go │ │ ├── gzip.go │ │ ├── gzip_go18.go │ │ ├── gzip_go18_test.go │ │ └── gzip_test.go │ ├── http.go │ ├── http_test.go │ ├── httpgrpcutil │ │ ├── carrier.go │ │ └── grpc_roundtripper.go │ ├── instrumentation │ │ └── metrics.go │ ├── labels.go │ ├── labels_test.go │ ├── limiter │ │ ├── errors.go │ │ ├── memory_consumption.go │ │ ├── memory_consumption_test.go │ │ ├── memory_tracker_middleware.go │ │ ├── query_limiter.go │ │ ├── query_limiter_test.go │ │ ├── unlimited_memory_consumption_tracker.go │ │ ├── utilization.go │ │ └── utilization_test.go │ ├── listblocks │ │ └── listblocks.go │ ├── log │ │ ├── experimental.go │ │ ├── log.go │ │ ├── log_test.go │ │ ├── rate_limit.go │ │ ├── rate_limit_test.go │ │ ├── sampler.go │ │ ├── sampler_test.go │ │ ├── slogadapter.go │ │ ├── slogadapter_test.go │ │ └── wrappers.go │ ├── matchers.go │ ├── matchers_test.go │ ├── math │ │ ├── digits.go │ │ ├── digits_test.go │ │ ├── rate.go │ │ └── rate_test.go │ ├── merger.go │ ├── merger_test.go │ ├── metrics.go │ ├── modelutil │ │ ├── merger.go │ │ └── merger_test.go │ ├── net │ │ ├── firewall_dialer.go │ │ └── firewall_dialer_test.go │ ├── noauth │ │ └── no_auth.go │ ├── objtools │ │ ├── abs.go │ │ ├── bucket.go │ │ ├── gcs.go │ │ └── s3.go │ ├── pool │ │ ├── bucketed_pool.go │ │ ├── bucketed_pool_test.go │ │ ├── fast_releasing_pool.go │ │ ├── fast_releasing_pool_test.go │ │ ├── pool.go │ │ ├── pool_test.go │ │ └── tracking.go │ ├── process │ │ ├── collector.go │ │ └── collector_test.go │ ├── promqlext │ │ └── promqlext.go │ ├── promtest │ │ └── histogram.go │ ├── propagation │ │ ├── middleware.go │ │ ├── middleware_test.go │ │ ├── propagation.go │ │ └── propagation_test.go │ ├── reactivelimiter │ │ ├── prioritizer.go │ │ └── reactivelimiter.go │ ├── requestbuffers.go │ ├── requestbuffers_test.go │ ├── ring_config.go │ ├── rw2util │ │ ├── rw2util.go │ │ └── rw2util_test.go │ ├── shard.go │ ├── shard_test.go │ ├── shutdownmarker │ │ ├── shutdown_marker.go │ │ └── shutdown_marker_test.go │ ├── slice_operations.go │ ├── slice_operations_test.go │ ├── spanlogger │ │ └── spanlogger.go │ ├── strings.go │ ├── sync │ │ ├── wait_with_timeout.go │ │ └── wait_with_timeout_test.go │ ├── test │ │ ├── capture.go │ │ ├── chunk_iterator.go │ │ ├── collect.go │ │ ├── comparison.go │ │ ├── copy.go │ │ ├── histogram.go │ │ ├── histogram_test.go │ │ ├── leak.go │ │ ├── logger.go │ │ ├── metrics.go │ │ ├── shape.go │ │ ├── tb.go │ │ ├── tsdb.go │ │ ├── unindent.go │ │ └── unindent_test.go │ ├── testkafka │ │ ├── cluster.go │ │ └── message.go │ ├── time.go │ ├── time_test.go │ ├── usage │ │ └── usage.go │ ├── validation │ │ ├── blocked_query.go │ │ ├── blocked_request.go │ │ ├── discarded_metrics.go │ │ ├── exporter │ │ │ ├── exporter.go │ │ │ ├── exporter_test.go │ │ │ ├── ring.go │ │ │ └── ring_test.go │ │ ├── label_value_length_over_limit_strategy.go │ │ ├── label_value_length_over_limit_strategy_test.go │ │ ├── limited_query.go │ │ ├── limits.go │ │ ├── limits_mock.go │ │ ├── limits_test.go │ │ ├── notifications_limit_flag.go │ │ ├── notifications_limit_flag_test.go │ │ ├── otel_translation_strategy.go │ │ ├── otel_translation_strategy_test.go │ │ ├── separate_metrics.go │ │ ├── user_limits_handler.go │ │ └── user_limits_handler_test.go │ ├── version │ │ ├── info.go │ │ ├── info_handler.go │ │ └── info_handler_test.go │ └── yaml.go └── vault │ ├── auth.go │ ├── auth_test.go │ ├── vault.go │ └── vault_test.go ├── renovate.json5 ├── tools ├── README.md ├── add-license │ ├── .gitignore │ └── main.go ├── apply-expected-diffs.sh ├── benchmark-query-engine │ ├── README.md │ ├── compare.sh │ └── main.go ├── check-for-disabled-but-supported-mqe-test-cases │ ├── README.md │ └── main.go ├── check-merge-conflicts.sh ├── check-rules.sh ├── cleanup-white-noise.sh ├── compaction-planner │ ├── .gitignore │ └── main.go ├── config-descriptor-extract-flag-defaults.jq ├── config-inspector │ ├── .gitignore │ └── main.go ├── copyblocks │ ├── .gitignore │ ├── Dockerfile │ ├── README.md │ └── main.go ├── copyprefix │ ├── .gitignore │ ├── README.md │ └── main.go ├── decode-protobuf-query-result │ ├── README.md │ └── main.go ├── delete-objects │ ├── .gitignore │ ├── README.md │ └── main.go ├── diagram │ ├── cortex-architecture.drawio │ └── readme.md ├── doc-generator │ ├── .gitignore │ ├── main.go │ ├── parse │ │ ├── parser.go │ │ ├── root_blocks.go │ │ ├── util.go │ │ └── util_test.go │ └── write │ │ ├── writer.go │ │ └── writer_test.go ├── find-diff-or-untracked.sh ├── find-unpooled-slice-creation.sh ├── flush-memcached.sh ├── format-promql-test.sh ├── git-worktree-volumes.sh ├── github-next-pr-number.sh ├── grpcurl-query-ingesters │ ├── .gitignore │ ├── README.md │ ├── download-chunks-from-ingesters-query.json │ ├── download-chunks-from-ingesters.sh │ ├── main.go │ └── response.go ├── grpcurl-query-store-gateways │ ├── .gitignore │ ├── README.md │ ├── download-chunks-from-store-gateways-query.json │ ├── download-chunks-from-store-gateways.sh │ ├── main.go │ └── response.go ├── image-tag ├── kafkatool │ ├── brokers.go │ ├── brokers_test.go │ ├── consumer_group.go │ ├── consumer_group_test.go │ ├── create_partitions.go │ ├── create_partitions_test.go │ ├── dump.go │ ├── dump_test.go │ ├── main.go │ ├── offsets.go │ ├── offsets_test.go │ ├── util.go │ └── util_test.go ├── lint-buffer-holder │ └── main.go ├── lint-runbooks.sh ├── lint-sorted │ └── main.go ├── list-deduplicated-blocks │ ├── .gitignore │ └── main.go ├── listblocks │ ├── .gitignore │ ├── README.md │ └── main.go ├── mark-blocks │ ├── .gitignore │ ├── README.md │ ├── main.go │ └── main_test.go ├── markblocks │ └── README.md ├── migrate-ingester-statefulsets.sh ├── packaging │ └── test-packages ├── pre-pull-images │ ├── .gitignore │ └── main.go ├── promql-generator │ ├── README.md │ ├── promql-generator.go │ └── sample_series.json ├── query-bucket-index │ ├── README.md │ └── main.go ├── query-step-alignment-analysis │ ├── .gitignore │ └── main.go ├── querytee │ ├── instant_query_transform.go │ ├── instant_query_transform_test.go │ ├── proxy.go │ ├── proxy_backend.go │ ├── proxy_backend_test.go │ ├── proxy_endpoint.go │ ├── proxy_endpoint_test.go │ ├── proxy_metrics.go │ ├── proxy_test.go │ ├── response_comparator.go │ └── response_comparator_test.go ├── release │ ├── check-changelog.sh │ ├── common.sh │ ├── create-draft-release-notes.sh │ ├── create-draft-release.sh │ ├── create-pr-to-merge-release-branch-to-main.sh │ ├── merge-approved-pr-branch-to-main.sh │ ├── notify-changelog-cut.sh │ └── tag-release.sh ├── splitblocks │ ├── .gitignore │ ├── README.md │ ├── main.go │ └── main_test.go ├── tenant-injector │ ├── .gitignore │ └── main.go ├── trafficdump │ ├── .gitignore │ ├── Makefile │ ├── main.go │ ├── model.go │ ├── parser.go │ ├── processor.go │ └── streams.go ├── tsdb-chunks │ ├── .gitignore │ ├── main.go │ └── main_test.go ├── tsdb-compact │ ├── .gitignore │ └── main.go ├── tsdb-gaps │ ├── README.md │ └── main.go ├── tsdb-index-header │ ├── README.md │ ├── analyze.go │ ├── main.go │ ├── print.go │ ├── print_test.go │ ├── util.go │ └── util_test.go ├── tsdb-index-health │ ├── .gitignore │ ├── main.go │ └── main_test.go ├── tsdb-index-toc │ ├── .gitignore │ └── main.go ├── tsdb-labels │ ├── .gitignore │ └── main.go ├── tsdb-print-chunk │ ├── .gitignore │ ├── main.go │ └── main_test.go ├── tsdb-series │ ├── .gitignore │ └── main.go ├── tsdb-symbols │ ├── .gitignore │ └── main.go ├── ulidtime │ ├── .gitignore │ └── main.go ├── undelete-blocks │ ├── .gitignore │ ├── README.md │ ├── main.go │ └── main_test.go ├── usage-tracker-load-generator │ ├── .gitignore │ ├── Dockerfile │ ├── main.go │ └── main_test.go └── wal-reader │ ├── .gitignore │ └── main.go └── vendor ├── cel.dev └── expr │ ├── .bazelversion │ ├── .gitattributes │ ├── .gitignore │ ├── BUILD.bazel │ ├── CODE_OF_CONDUCT.md │ ├── CONTRIBUTING.md │ ├── GOVERNANCE.md │ ├── LICENSE │ ├── MAINTAINERS.md │ ├── MODULE.bazel │ ├── README.md │ ├── WORKSPACE │ ├── WORKSPACE.bzlmod │ ├── checked.pb.go │ ├── cloudbuild.yaml │ ├── eval.pb.go │ ├── explain.pb.go │ ├── regen_go_proto.sh │ ├── regen_go_proto_canonical_protos.sh │ ├── syntax.pb.go │ └── value.pb.go ├── cloud.google.com └── go │ ├── LICENSE │ ├── auth │ ├── CHANGES.md │ ├── LICENSE │ ├── README.md │ ├── auth.go │ ├── credentials │ │ ├── compute.go │ │ ├── detect.go │ │ ├── doc.go │ │ ├── filetypes.go │ │ ├── internal │ │ │ ├── externalaccount │ │ │ │ ├── aws_provider.go │ │ │ │ ├── executable_provider.go │ │ │ │ ├── externalaccount.go │ │ │ │ ├── file_provider.go │ │ │ │ ├── info.go │ │ │ │ ├── programmatic_provider.go │ │ │ │ ├── url_provider.go │ │ │ │ └── x509_provider.go │ │ │ ├── externalaccountuser │ │ │ │ └── externalaccountuser.go │ │ │ ├── gdch │ │ │ │ └── gdch.go │ │ │ ├── impersonate │ │ │ │ ├── idtoken.go │ │ │ │ └── impersonate.go │ │ │ └── stsexchange │ │ │ │ └── sts_exchange.go │ │ └── selfsignedjwt.go │ ├── grpctransport │ │ ├── dial_socketopt.go │ │ ├── directpath.go │ │ ├── grpctransport.go │ │ └── pool.go │ ├── httptransport │ │ ├── httptransport.go │ │ └── transport.go │ ├── internal │ │ ├── compute │ │ │ ├── compute.go │ │ │ ├── manufacturer.go │ │ │ ├── manufacturer_linux.go │ │ │ └── manufacturer_windows.go │ │ ├── credsfile │ │ │ ├── credsfile.go │ │ │ ├── filetype.go │ │ │ └── parse.go │ │ ├── internal.go │ │ ├── jwt │ │ │ └── jwt.go │ │ ├── retry │ │ │ └── retry.go │ │ ├── transport │ │ │ ├── cba.go │ │ │ ├── cert │ │ │ │ ├── default_cert.go │ │ │ │ ├── enterprise_cert.go │ │ │ │ ├── secureconnect_cert.go │ │ │ │ └── workload_cert.go │ │ │ ├── headers │ │ │ │ └── headers.go │ │ │ ├── s2a.go │ │ │ └── transport.go │ │ ├── trustboundary │ │ │ ├── external_accounts_config_providers.go │ │ │ └── trust_boundary.go │ │ └── version.go │ ├── oauth2adapt │ │ ├── CHANGES.md │ │ ├── LICENSE │ │ └── oauth2adapt.go │ └── threelegged.go │ ├── compute │ └── metadata │ │ ├── CHANGES.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── log.go │ │ ├── metadata.go │ │ ├── retry.go │ │ ├── retry_linux.go │ │ ├── syscheck.go │ │ ├── syscheck_linux.go │ │ └── syscheck_windows.go │ ├── iam │ ├── CHANGES.md │ ├── LICENSE │ ├── README.md │ ├── apiv1 │ │ └── iampb │ │ │ ├── iam_policy.pb.go │ │ │ ├── iam_policy_grpc.pb.go │ │ │ ├── options.pb.go │ │ │ ├── policy.pb.go │ │ │ └── resource_policy_member.pb.go │ └── iam.go │ ├── internal │ ├── .repo-metadata-full.json │ ├── README.md │ ├── annotate.go │ ├── gen_info.sh │ ├── optional │ │ └── optional.go │ ├── retry.go │ ├── trace │ │ └── trace.go │ └── version │ │ ├── update_version.sh │ │ └── version.go │ ├── monitoring │ ├── LICENSE │ ├── apiv3 │ │ └── v2 │ │ │ ├── alert_policy_client.go │ │ │ ├── auxiliary.go │ │ │ ├── auxiliary_go123.go │ │ │ ├── doc.go │ │ │ ├── gapic_metadata.json │ │ │ ├── group_client.go │ │ │ ├── helpers.go │ │ │ ├── metric_client.go │ │ │ ├── monitoringpb │ │ │ ├── alert.pb.go │ │ │ ├── alert_service.pb.go │ │ │ ├── common.pb.go │ │ │ ├── dropped_labels.pb.go │ │ │ ├── group.pb.go │ │ │ ├── group_service.pb.go │ │ │ ├── metric.pb.go │ │ │ ├── metric_service.pb.go │ │ │ ├── mutation_record.pb.go │ │ │ ├── notification.pb.go │ │ │ ├── notification_service.pb.go │ │ │ ├── query_service.pb.go │ │ │ ├── service.pb.go │ │ │ ├── service_service.pb.go │ │ │ ├── snooze.pb.go │ │ │ ├── snooze_service.pb.go │ │ │ ├── span_context.pb.go │ │ │ ├── uptime.pb.go │ │ │ └── uptime_service.pb.go │ │ │ ├── notification_channel_client.go │ │ │ ├── query_client.go │ │ │ ├── service_monitoring_client.go │ │ │ ├── snooze_client.go │ │ │ ├── uptime_check_client.go │ │ │ └── version.go │ └── internal │ │ └── version.go │ └── storage │ ├── .repo-metadata.json │ ├── CHANGES.md │ ├── LICENSE │ ├── README.md │ ├── TESTING.md │ ├── acl.go │ ├── bucket.go │ ├── client.go │ ├── contexts.go │ ├── copy.go │ ├── doc.go │ ├── dynamic_delay.go │ ├── emulator_test.sh │ ├── experimental │ └── experimental.go │ ├── grpc_client.go │ ├── grpc_dp.go │ ├── grpc_metrics.go │ ├── grpc_reader.go │ ├── grpc_reader_multi_range.go │ ├── grpc_writer.go │ ├── hmac.go │ ├── http_client.go │ ├── iam.go │ ├── internal │ ├── apiv2 │ │ ├── .repo-metadata.json │ │ ├── auxiliary.go │ │ ├── auxiliary_go123.go │ │ ├── doc.go │ │ ├── gapic_metadata.json │ │ ├── helpers.go │ │ ├── storage_client.go │ │ ├── storagepb │ │ │ ├── storage.pb.go │ │ │ └── storage_grpc.pb.go │ │ └── version.go │ ├── experimental.go │ └── version.go │ ├── invoke.go │ ├── notifications.go │ ├── option.go │ ├── post_policy_v4.go │ ├── reader.go │ ├── storage.go │ ├── storage.replay │ ├── trace.go │ └── writer.go ├── github.com ├── Azure │ └── azure-sdk-for-go │ │ └── sdk │ │ ├── azcore │ │ ├── CHANGELOG.md │ │ ├── LICENSE.txt │ │ ├── README.md │ │ ├── arm │ │ │ ├── internal │ │ │ │ └── resource │ │ │ │ │ ├── resource_identifier.go │ │ │ │ │ └── resource_type.go │ │ │ ├── policy │ │ │ │ └── policy.go │ │ │ └── runtime │ │ │ │ ├── pipeline.go │ │ │ │ ├── policy_bearer_token.go │ │ │ │ ├── policy_register_rp.go │ │ │ │ ├── policy_trace_namespace.go │ │ │ │ └── runtime.go │ │ ├── ci.yml │ │ ├── cloud │ │ │ ├── cloud.go │ │ │ └── doc.go │ │ ├── core.go │ │ ├── doc.go │ │ ├── errors.go │ │ ├── etag.go │ │ ├── internal │ │ │ ├── exported │ │ │ │ ├── exported.go │ │ │ │ ├── pipeline.go │ │ │ │ ├── request.go │ │ │ │ └── response_error.go │ │ │ ├── log │ │ │ │ └── log.go │ │ │ ├── pollers │ │ │ │ ├── async │ │ │ │ │ └── async.go │ │ │ │ ├── body │ │ │ │ │ └── body.go │ │ │ │ ├── fake │ │ │ │ │ └── fake.go │ │ │ │ ├── loc │ │ │ │ │ └── loc.go │ │ │ │ ├── op │ │ │ │ │ └── op.go │ │ │ │ ├── poller.go │ │ │ │ └── util.go │ │ │ └── shared │ │ │ │ ├── constants.go │ │ │ │ └── shared.go │ │ ├── log │ │ │ ├── doc.go │ │ │ └── log.go │ │ ├── policy │ │ │ ├── doc.go │ │ │ └── policy.go │ │ ├── runtime │ │ │ ├── doc.go │ │ │ ├── errors.go │ │ │ ├── pager.go │ │ │ ├── pipeline.go │ │ │ ├── policy_api_version.go │ │ │ ├── policy_bearer_token.go │ │ │ ├── policy_body_download.go │ │ │ ├── policy_http_header.go │ │ │ ├── policy_http_trace.go │ │ │ ├── policy_include_response.go │ │ │ ├── policy_key_credential.go │ │ │ ├── policy_logging.go │ │ │ ├── policy_request_id.go │ │ │ ├── policy_retry.go │ │ │ ├── policy_sas_credential.go │ │ │ ├── policy_telemetry.go │ │ │ ├── poller.go │ │ │ ├── request.go │ │ │ ├── response.go │ │ │ ├── transport_default_dialer_other.go │ │ │ ├── transport_default_dialer_wasm.go │ │ │ └── transport_default_http_client.go │ │ ├── streaming │ │ │ ├── doc.go │ │ │ └── progress.go │ │ ├── to │ │ │ ├── doc.go │ │ │ └── to.go │ │ └── tracing │ │ │ ├── constants.go │ │ │ └── tracing.go │ │ ├── azidentity │ │ ├── .gitignore │ │ ├── BREAKING_CHANGES.md │ │ ├── CHANGELOG.md │ │ ├── LICENSE.txt │ │ ├── MIGRATION.md │ │ ├── README.md │ │ ├── TOKEN_CACHING.MD │ │ ├── TROUBLESHOOTING.md │ │ ├── assets.json │ │ ├── authentication_record.go │ │ ├── azidentity.go │ │ ├── azure_cli_credential.go │ │ ├── azure_developer_cli_credential.go │ │ ├── azure_pipelines_credential.go │ │ ├── azure_powershell_credential.go │ │ ├── chained_token_credential.go │ │ ├── ci.yml │ │ ├── client_assertion_credential.go │ │ ├── client_certificate_credential.go │ │ ├── client_secret_credential.go │ │ ├── confidential_client.go │ │ ├── default_azure_credential.go │ │ ├── developer_credential_util.go │ │ ├── device_code_credential.go │ │ ├── environment_credential.go │ │ ├── errors.go │ │ ├── go.work │ │ ├── interactive_browser_credential.go │ │ ├── internal │ │ │ └── cache.go │ │ ├── logging.go │ │ ├── managed-identity-matrix.json │ │ ├── managed_identity_client.go │ │ ├── managed_identity_credential.go │ │ ├── on_behalf_of_credential.go │ │ ├── public_client.go │ │ ├── test-resources-post.ps1 │ │ ├── test-resources-pre.ps1 │ │ ├── test-resources.bicep │ │ ├── username_password_credential.go │ │ ├── version.go │ │ └── workload_identity.go │ │ ├── internal │ │ ├── LICENSE.txt │ │ ├── diag │ │ │ ├── diag.go │ │ │ └── doc.go │ │ ├── errorinfo │ │ │ ├── doc.go │ │ │ └── errorinfo.go │ │ ├── exported │ │ │ └── exported.go │ │ ├── log │ │ │ ├── doc.go │ │ │ └── log.go │ │ ├── poller │ │ │ └── util.go │ │ ├── temporal │ │ │ └── resource.go │ │ └── uuid │ │ │ ├── doc.go │ │ │ └── uuid.go │ │ └── storage │ │ └── azblob │ │ ├── CHANGELOG.md │ │ ├── LICENSE.txt │ │ ├── README.md │ │ ├── appendblob │ │ ├── client.go │ │ ├── models.go │ │ └── responses.go │ │ ├── assets.json │ │ ├── blob │ │ ├── client.go │ │ ├── constants.go │ │ ├── models.go │ │ ├── responses.go │ │ ├── retry_reader.go │ │ └── utils.go │ │ ├── bloberror │ │ └── error_codes.go │ │ ├── blockblob │ │ ├── chunkwriting.go │ │ ├── client.go │ │ ├── constants.go │ │ ├── models.go │ │ └── responses.go │ │ ├── ci.yml │ │ ├── client.go │ │ ├── common.go │ │ ├── constants.go │ │ ├── container │ │ ├── batch_builder.go │ │ ├── client.go │ │ ├── constants.go │ │ ├── models.go │ │ └── responses.go │ │ ├── doc.go │ │ ├── internal │ │ ├── base │ │ │ └── clients.go │ │ ├── exported │ │ │ ├── access_conditions.go │ │ │ ├── access_policy.go │ │ │ ├── blob_batch.go │ │ │ ├── exported.go │ │ │ ├── log_events.go │ │ │ ├── set_expiry.go │ │ │ ├── shared_key_credential.go │ │ │ ├── transfer_validation_option.go │ │ │ ├── user_delegation_credential.go │ │ │ └── version.go │ │ ├── generated │ │ │ ├── appendblob_client.go │ │ │ ├── autorest.md │ │ │ ├── blob_client.go │ │ │ ├── block_blob_client.go │ │ │ ├── build.go │ │ │ ├── constants.go │ │ │ ├── container_client.go │ │ │ ├── models.go │ │ │ ├── pageblob_client.go │ │ │ ├── service_client.go │ │ │ ├── zz_appendblob_client.go │ │ │ ├── zz_blob_client.go │ │ │ ├── zz_blockblob_client.go │ │ │ ├── zz_constants.go │ │ │ ├── zz_container_client.go │ │ │ ├── zz_models.go │ │ │ ├── zz_models_serde.go │ │ │ ├── zz_options.go │ │ │ ├── zz_pageblob_client.go │ │ │ ├── zz_responses.go │ │ │ ├── zz_service_client.go │ │ │ ├── zz_time_rfc1123.go │ │ │ ├── zz_time_rfc3339.go │ │ │ └── zz_xml_helper.go │ │ └── shared │ │ │ ├── batch_transfer.go │ │ │ ├── buffer_manager.go │ │ │ ├── bytes_writer.go │ │ │ ├── challenge_policy.go │ │ │ ├── mmf_unix.go │ │ │ ├── mmf_windows.go │ │ │ ├── section_writer.go │ │ │ └── shared.go │ │ ├── log.go │ │ ├── migrationguide.md │ │ ├── models.go │ │ ├── pageblob │ │ ├── client.go │ │ ├── constants.go │ │ ├── models.go │ │ └── responses.go │ │ ├── responses.go │ │ ├── sas │ │ ├── account.go │ │ ├── query_params.go │ │ ├── service.go │ │ └── url_parts.go │ │ ├── service │ │ ├── batch_builder.go │ │ ├── client.go │ │ ├── constants.go │ │ ├── models.go │ │ └── responses.go │ │ └── test-resources.json ├── AzureAD │ └── microsoft-authentication-library-for-go │ │ ├── LICENSE │ │ └── apps │ │ ├── cache │ │ └── cache.go │ │ ├── confidential │ │ └── confidential.go │ │ ├── errors │ │ ├── error_design.md │ │ └── errors.go │ │ ├── internal │ │ ├── base │ │ │ ├── base.go │ │ │ └── storage │ │ │ │ ├── items.go │ │ │ │ ├── partitioned_storage.go │ │ │ │ └── storage.go │ │ ├── exported │ │ │ └── exported.go │ │ ├── json │ │ │ ├── design.md │ │ │ ├── json.go │ │ │ ├── mapslice.go │ │ │ ├── marshal.go │ │ │ ├── struct.go │ │ │ └── types │ │ │ │ └── time │ │ │ │ └── time.go │ │ ├── local │ │ │ └── server.go │ │ ├── oauth │ │ │ ├── oauth.go │ │ │ ├── ops │ │ │ │ ├── accesstokens │ │ │ │ │ ├── accesstokens.go │ │ │ │ │ ├── apptype_string.go │ │ │ │ │ └── tokens.go │ │ │ │ ├── authority │ │ │ │ │ ├── authority.go │ │ │ │ │ └── authorizetype_string.go │ │ │ │ ├── internal │ │ │ │ │ ├── comm │ │ │ │ │ │ ├── comm.go │ │ │ │ │ │ └── compress.go │ │ │ │ │ └── grant │ │ │ │ │ │ └── grant.go │ │ │ │ ├── ops.go │ │ │ │ └── wstrust │ │ │ │ │ ├── defs │ │ │ │ │ ├── endpointtype_string.go │ │ │ │ │ ├── mex_document_definitions.go │ │ │ │ │ ├── saml_assertion_definitions.go │ │ │ │ │ ├── version_string.go │ │ │ │ │ ├── wstrust_endpoint.go │ │ │ │ │ └── wstrust_mex_document.go │ │ │ │ │ └── wstrust.go │ │ │ └── resolvers.go │ │ ├── options │ │ │ └── options.go │ │ ├── shared │ │ │ └── shared.go │ │ └── version │ │ │ └── version.go │ │ ├── managedidentity │ │ ├── azure_ml.go │ │ ├── cloud_shell.go │ │ ├── managedidentity.go │ │ └── servicefabric.go │ │ └── public │ │ └── public.go ├── DmitriyVTitov │ └── size │ │ ├── .gitignore │ │ ├── LICENSE │ │ ├── README.md │ │ └── size.go ├── GoogleCloudPlatform │ └── opentelemetry-operations-go │ │ ├── detectors │ │ └── gcp │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── app_engine.go │ │ │ ├── bms.go │ │ │ ├── detector.go │ │ │ ├── faas.go │ │ │ ├── gce.go │ │ │ └── gke.go │ │ ├── exporter │ │ └── metric │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── cloudmonitoring.go │ │ │ ├── constants.go │ │ │ ├── error.go │ │ │ ├── metric.go │ │ │ ├── option.go │ │ │ └── version.go │ │ └── internal │ │ └── resourcemapping │ │ ├── LICENSE │ │ └── resourcemapping.go ├── Masterminds │ ├── goutils │ │ ├── .travis.yml │ │ ├── CHANGELOG.md │ │ ├── LICENSE.txt │ │ ├── README.md │ │ ├── appveyor.yml │ │ ├── cryptorandomstringutils.go │ │ ├── randomstringutils.go │ │ ├── stringutils.go │ │ └── wordutils.go │ ├── semver │ │ └── v3 │ │ │ ├── .gitignore │ │ │ ├── .golangci.yml │ │ │ ├── CHANGELOG.md │ │ │ ├── LICENSE.txt │ │ │ ├── Makefile │ │ │ ├── README.md │ │ │ ├── collection.go │ │ │ ├── constraints.go │ │ │ ├── doc.go │ │ │ ├── fuzz.go │ │ │ └── version.go │ └── sprig │ │ └── v3 │ │ ├── .gitignore │ │ ├── CHANGELOG.md │ │ ├── LICENSE.txt │ │ ├── Makefile │ │ ├── README.md │ │ ├── crypto.go │ │ ├── date.go │ │ ├── defaults.go │ │ ├── dict.go │ │ ├── doc.go │ │ ├── functions.go │ │ ├── list.go │ │ ├── network.go │ │ ├── numeric.go │ │ ├── reflect.go │ │ ├── regex.go │ │ ├── semver.go │ │ ├── strings.go │ │ └── url.go ├── alecthomas │ ├── chroma │ │ └── v2 │ │ │ ├── .editorconfig │ │ │ ├── .gitignore │ │ │ ├── .golangci.yml │ │ │ ├── .goreleaser.yml │ │ │ ├── Bitfile │ │ │ ├── COPYING │ │ │ ├── Dockerfile │ │ │ ├── Makefile │ │ │ ├── README.md │ │ │ ├── biome.json │ │ │ ├── chroma.jpg │ │ │ ├── coalesce.go │ │ │ ├── colour.go │ │ │ ├── delegate.go │ │ │ ├── doc.go │ │ │ ├── emitters.go │ │ │ ├── formatter.go │ │ │ ├── formatters │ │ │ ├── api.go │ │ │ ├── html │ │ │ │ └── html.go │ │ │ ├── json.go │ │ │ ├── svg │ │ │ │ ├── font_liberation_mono.go │ │ │ │ └── svg.go │ │ │ ├── tokens.go │ │ │ ├── tty_indexed.go │ │ │ └── tty_truecolour.go │ │ │ ├── iterator.go │ │ │ ├── lexer.go │ │ │ ├── lexers │ │ │ ├── README.md │ │ │ ├── caddyfile.go │ │ │ ├── cl.go │ │ │ ├── dns.go │ │ │ ├── emacs.go │ │ │ ├── embedded │ │ │ │ ├── abap.xml │ │ │ │ ├── abnf.xml │ │ │ │ ├── actionscript.xml │ │ │ │ ├── actionscript_3.xml │ │ │ │ ├── ada.xml │ │ │ │ ├── agda.xml │ │ │ │ ├── al.xml │ │ │ │ ├── alloy.xml │ │ │ │ ├── angular2.xml │ │ │ │ ├── antlr.xml │ │ │ │ ├── apacheconf.xml │ │ │ │ ├── apl.xml │ │ │ │ ├── applescript.xml │ │ │ │ ├── arangodb_aql.xml │ │ │ │ ├── arduino.xml │ │ │ │ ├── armasm.xml │ │ │ │ ├── atl.xml │ │ │ │ ├── autohotkey.xml │ │ │ │ ├── autoit.xml │ │ │ │ ├── awk.xml │ │ │ │ ├── ballerina.xml │ │ │ │ ├── bash.xml │ │ │ │ ├── bash_session.xml │ │ │ │ ├── batchfile.xml │ │ │ │ ├── beef.xml │ │ │ │ ├── bibtex.xml │ │ │ │ ├── bicep.xml │ │ │ │ ├── blitzbasic.xml │ │ │ │ ├── bnf.xml │ │ │ │ ├── bqn.xml │ │ │ │ ├── brainfuck.xml │ │ │ │ ├── c#.xml │ │ │ │ ├── c++.xml │ │ │ │ ├── c.xml │ │ │ │ ├── cap_n_proto.xml │ │ │ │ ├── cassandra_cql.xml │ │ │ │ ├── ceylon.xml │ │ │ │ ├── cfengine3.xml │ │ │ │ ├── cfstatement.xml │ │ │ │ ├── chaiscript.xml │ │ │ │ ├── chapel.xml │ │ │ │ ├── cheetah.xml │ │ │ │ ├── clojure.xml │ │ │ │ ├── cmake.xml │ │ │ │ ├── cobol.xml │ │ │ │ ├── coffeescript.xml │ │ │ │ ├── common_lisp.xml │ │ │ │ ├── coq.xml │ │ │ │ ├── core.xml │ │ │ │ ├── crystal.xml │ │ │ │ ├── css.xml │ │ │ │ ├── csv.xml │ │ │ │ ├── cue.xml │ │ │ │ ├── cython.xml │ │ │ │ ├── d.xml │ │ │ │ ├── dart.xml │ │ │ │ ├── dax.xml │ │ │ │ ├── desktop_entry.xml │ │ │ │ ├── diff.xml │ │ │ │ ├── django_jinja.xml │ │ │ │ ├── dns.xml │ │ │ │ ├── docker.xml │ │ │ │ ├── dtd.xml │ │ │ │ ├── dylan.xml │ │ │ │ ├── ebnf.xml │ │ │ │ ├── elixir.xml │ │ │ │ ├── elm.xml │ │ │ │ ├── emacslisp.xml │ │ │ │ ├── erlang.xml │ │ │ │ ├── factor.xml │ │ │ │ ├── fennel.xml │ │ │ │ ├── fish.xml │ │ │ │ ├── forth.xml │ │ │ │ ├── fortran.xml │ │ │ │ ├── fortranfixed.xml │ │ │ │ ├── fsharp.xml │ │ │ │ ├── gas.xml │ │ │ │ ├── gdscript.xml │ │ │ │ ├── gdscript3.xml │ │ │ │ ├── gherkin.xml │ │ │ │ ├── gleam.xml │ │ │ │ ├── glsl.xml │ │ │ │ ├── gnuplot.xml │ │ │ │ ├── go_template.xml │ │ │ │ ├── graphql.xml │ │ │ │ ├── groff.xml │ │ │ │ ├── groovy.xml │ │ │ │ ├── handlebars.xml │ │ │ │ ├── hare.xml │ │ │ │ ├── haskell.xml │ │ │ │ ├── hcl.xml │ │ │ │ ├── hexdump.xml │ │ │ │ ├── hlb.xml │ │ │ │ ├── hlsl.xml │ │ │ │ ├── holyc.xml │ │ │ │ ├── html.xml │ │ │ │ ├── hy.xml │ │ │ │ ├── idris.xml │ │ │ │ ├── igor.xml │ │ │ │ ├── ini.xml │ │ │ │ ├── io.xml │ │ │ │ ├── iscdhcpd.xml │ │ │ │ ├── j.xml │ │ │ │ ├── janet.xml │ │ │ │ ├── java.xml │ │ │ │ ├── javascript.xml │ │ │ │ ├── json.xml │ │ │ │ ├── jsonata.xml │ │ │ │ ├── jsonnet.xml │ │ │ │ ├── julia.xml │ │ │ │ ├── jungle.xml │ │ │ │ ├── kotlin.xml │ │ │ │ ├── lean.xml │ │ │ │ ├── lighttpd_configuration_file.xml │ │ │ │ ├── llvm.xml │ │ │ │ ├── lox.xml │ │ │ │ ├── lua.xml │ │ │ │ ├── makefile.xml │ │ │ │ ├── mako.xml │ │ │ │ ├── mason.xml │ │ │ │ ├── materialize_sql_dialect.xml │ │ │ │ ├── mathematica.xml │ │ │ │ ├── matlab.xml │ │ │ │ ├── mcfunction.xml │ │ │ │ ├── meson.xml │ │ │ │ ├── metal.xml │ │ │ │ ├── minizinc.xml │ │ │ │ ├── mlir.xml │ │ │ │ ├── modula-2.xml │ │ │ │ ├── mojo.xml │ │ │ │ ├── monkeyc.xml │ │ │ │ ├── moonscript.xml │ │ │ │ ├── morrowindscript.xml │ │ │ │ ├── myghty.xml │ │ │ │ ├── mysql.xml │ │ │ │ ├── nasm.xml │ │ │ │ ├── natural.xml │ │ │ │ ├── ndisasm.xml │ │ │ │ ├── newspeak.xml │ │ │ │ ├── nginx_configuration_file.xml │ │ │ │ ├── nim.xml │ │ │ │ ├── nix.xml │ │ │ │ ├── nsis.xml │ │ │ │ ├── nu.xml │ │ │ │ ├── objective-c.xml │ │ │ │ ├── objectpascal.xml │ │ │ │ ├── ocaml.xml │ │ │ │ ├── octave.xml │ │ │ │ ├── odin.xml │ │ │ │ ├── onesenterprise.xml │ │ │ │ ├── openedge_abl.xml │ │ │ │ ├── openscad.xml │ │ │ │ ├── org_mode.xml │ │ │ │ ├── pacmanconf.xml │ │ │ │ ├── perl.xml │ │ │ │ ├── php.xml │ │ │ │ ├── pig.xml │ │ │ │ ├── pkgconfig.xml │ │ │ │ ├── pl_pgsql.xml │ │ │ │ ├── plaintext.xml │ │ │ │ ├── plutus_core.xml │ │ │ │ ├── pony.xml │ │ │ │ ├── postgresql_sql_dialect.xml │ │ │ │ ├── postscript.xml │ │ │ │ ├── povray.xml │ │ │ │ ├── powerquery.xml │ │ │ │ ├── powershell.xml │ │ │ │ ├── prolog.xml │ │ │ │ ├── promela.xml │ │ │ │ ├── promql.xml │ │ │ │ ├── properties.xml │ │ │ │ ├── protocol_buffer.xml │ │ │ │ ├── prql.xml │ │ │ │ ├── psl.xml │ │ │ │ ├── puppet.xml │ │ │ │ ├── python.xml │ │ │ │ ├── python_2.xml │ │ │ │ ├── qbasic.xml │ │ │ │ ├── qml.xml │ │ │ │ ├── r.xml │ │ │ │ ├── racket.xml │ │ │ │ ├── ragel.xml │ │ │ │ ├── react.xml │ │ │ │ ├── reasonml.xml │ │ │ │ ├── reg.xml │ │ │ │ ├── rego.xml │ │ │ │ ├── rexx.xml │ │ │ │ ├── rpgle.xml │ │ │ │ ├── rpm_spec.xml │ │ │ │ ├── ruby.xml │ │ │ │ ├── rust.xml │ │ │ │ ├── sas.xml │ │ │ │ ├── sass.xml │ │ │ │ ├── scala.xml │ │ │ │ ├── scheme.xml │ │ │ │ ├── scilab.xml │ │ │ │ ├── scss.xml │ │ │ │ ├── sed.xml │ │ │ │ ├── sieve.xml │ │ │ │ ├── smali.xml │ │ │ │ ├── smalltalk.xml │ │ │ │ ├── smarty.xml │ │ │ │ ├── snbt.xml │ │ │ │ ├── snobol.xml │ │ │ │ ├── solidity.xml │ │ │ │ ├── sourcepawn.xml │ │ │ │ ├── sparql.xml │ │ │ │ ├── sql.xml │ │ │ │ ├── squidconf.xml │ │ │ │ ├── standard_ml.xml │ │ │ │ ├── stas.xml │ │ │ │ ├── stylus.xml │ │ │ │ ├── swift.xml │ │ │ │ ├── systemd.xml │ │ │ │ ├── systemverilog.xml │ │ │ │ ├── tablegen.xml │ │ │ │ ├── tal.xml │ │ │ │ ├── tasm.xml │ │ │ │ ├── tcl.xml │ │ │ │ ├── tcsh.xml │ │ │ │ ├── termcap.xml │ │ │ │ ├── terminfo.xml │ │ │ │ ├── terraform.xml │ │ │ │ ├── tex.xml │ │ │ │ ├── thrift.xml │ │ │ │ ├── toml.xml │ │ │ │ ├── tradingview.xml │ │ │ │ ├── transact-sql.xml │ │ │ │ ├── turing.xml │ │ │ │ ├── turtle.xml │ │ │ │ ├── twig.xml │ │ │ │ ├── typescript.xml │ │ │ │ ├── typoscript.xml │ │ │ │ ├── typoscriptcssdata.xml │ │ │ │ ├── typoscripthtmldata.xml │ │ │ │ ├── typst.xml │ │ │ │ ├── ucode.xml │ │ │ │ ├── v.xml │ │ │ │ ├── v_shell.xml │ │ │ │ ├── vala.xml │ │ │ │ ├── vb_net.xml │ │ │ │ ├── verilog.xml │ │ │ │ ├── vhdl.xml │ │ │ │ ├── vhs.xml │ │ │ │ ├── viml.xml │ │ │ │ ├── vue.xml │ │ │ │ ├── wdte.xml │ │ │ │ ├── webgpu_shading_language.xml │ │ │ │ ├── webvtt.xml │ │ │ │ ├── whiley.xml │ │ │ │ ├── xml.xml │ │ │ │ ├── xorg.xml │ │ │ │ ├── yaml.xml │ │ │ │ ├── yang.xml │ │ │ │ ├── z80_assembly.xml │ │ │ │ ├── zed.xml │ │ │ │ └── zig.xml │ │ │ ├── gemtext.go │ │ │ ├── genshi.go │ │ │ ├── go.go │ │ │ ├── haxe.go │ │ │ ├── html.go │ │ │ ├── http.go │ │ │ ├── lexers.go │ │ │ ├── markdown.go │ │ │ ├── mysql.go │ │ │ ├── php.go │ │ │ ├── raku.go │ │ │ ├── rst.go │ │ │ ├── svelte.go │ │ │ ├── typoscript.go │ │ │ └── zed.go │ │ │ ├── mutators.go │ │ │ ├── pygments-lexers.txt │ │ │ ├── quick │ │ │ └── quick.go │ │ │ ├── regexp.go │ │ │ ├── registry.go │ │ │ ├── remap.go │ │ │ ├── renovate.json5 │ │ │ ├── serialise.go │ │ │ ├── style.go │ │ │ ├── styles │ │ │ ├── abap.xml │ │ │ ├── algol.xml │ │ │ ├── algol_nu.xml │ │ │ ├── api.go │ │ │ ├── arduino.xml │ │ │ ├── autumn.xml │ │ │ ├── average.xml │ │ │ ├── base16-snazzy.xml │ │ │ ├── borland.xml │ │ │ ├── bw.xml │ │ │ ├── catppuccin-frappe.xml │ │ │ ├── catppuccin-latte.xml │ │ │ ├── catppuccin-macchiato.xml │ │ │ ├── catppuccin-mocha.xml │ │ │ ├── colorful.xml │ │ │ ├── compat.go │ │ │ ├── doom-one.xml │ │ │ ├── doom-one2.xml │ │ │ ├── dracula.xml │ │ │ ├── emacs.xml │ │ │ ├── evergarden.xml │ │ │ ├── friendly.xml │ │ │ ├── fruity.xml │ │ │ ├── github-dark.xml │ │ │ ├── github.xml │ │ │ ├── gruvbox-light.xml │ │ │ ├── gruvbox.xml │ │ │ ├── hr_high_contrast.xml │ │ │ ├── hrdark.xml │ │ │ ├── igor.xml │ │ │ ├── lovelace.xml │ │ │ ├── manni.xml │ │ │ ├── modus-operandi.xml │ │ │ ├── modus-vivendi.xml │ │ │ ├── monokai.xml │ │ │ ├── monokailight.xml │ │ │ ├── murphy.xml │ │ │ ├── native.xml │ │ │ ├── nord.xml │ │ │ ├── nordic.xml │ │ │ ├── onedark.xml │ │ │ ├── onesenterprise.xml │ │ │ ├── paraiso-dark.xml │ │ │ ├── paraiso-light.xml │ │ │ ├── pastie.xml │ │ │ ├── perldoc.xml │ │ │ ├── pygments.xml │ │ │ ├── rainbow_dash.xml │ │ │ ├── rose-pine-dawn.xml │ │ │ ├── rose-pine-moon.xml │ │ │ ├── rose-pine.xml │ │ │ ├── rpgle.xml │ │ │ ├── rrt.xml │ │ │ ├── solarized-dark.xml │ │ │ ├── solarized-dark256.xml │ │ │ ├── solarized-light.xml │ │ │ ├── swapoff.xml │ │ │ ├── tango.xml │ │ │ ├── tokyonight-day.xml │ │ │ ├── tokyonight-moon.xml │ │ │ ├── tokyonight-night.xml │ │ │ ├── tokyonight-storm.xml │ │ │ ├── trac.xml │ │ │ ├── vim.xml │ │ │ ├── vs.xml │ │ │ ├── vulcan.xml │ │ │ ├── witchhazel.xml │ │ │ ├── xcode-dark.xml │ │ │ └── xcode.xml │ │ │ ├── table.py │ │ │ ├── tokentype_enumer.go │ │ │ └── types.go │ ├── kingpin │ │ └── v2 │ │ │ ├── .travis.yml │ │ │ ├── COPYING │ │ │ ├── README.md │ │ │ ├── actions.go │ │ │ ├── app.go │ │ │ ├── args.go │ │ │ ├── cmd.go │ │ │ ├── completions.go │ │ │ ├── doc.go │ │ │ ├── envar.go │ │ │ ├── flags.go │ │ │ ├── global.go │ │ │ ├── guesswidth.go │ │ │ ├── guesswidth_unix.go │ │ │ ├── model.go │ │ │ ├── parser.go │ │ │ ├── parsers.go │ │ │ ├── templates.go │ │ │ ├── usage.go │ │ │ ├── values.go │ │ │ ├── values.json │ │ │ └── values_generated.go │ └── units │ │ ├── COPYING │ │ ├── README.md │ │ ├── bytes.go │ │ ├── doc.go │ │ ├── renovate.json5 │ │ ├── si.go │ │ └── util.go ├── armon │ └── go-metrics │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── LICENSE │ │ ├── README.md │ │ ├── const_unix.go │ │ ├── const_windows.go │ │ ├── inmem.go │ │ ├── inmem_endpoint.go │ │ ├── inmem_signal.go │ │ ├── metrics.go │ │ ├── sink.go │ │ ├── start.go │ │ ├── statsd.go │ │ └── statsite.go ├── at-wat │ └── mqtt-go │ │ ├── LICENSE │ │ ├── MIGRATION.md │ │ ├── README.md │ │ ├── atomic.go │ │ ├── client.go │ │ ├── codecov.yml │ │ ├── conn.go │ │ ├── connack.go │ │ ├── connect.go │ │ ├── dialer.go │ │ ├── disconnect.go │ │ ├── docker-compose.yml │ │ ├── error.go │ │ ├── filter.go │ │ ├── keepalive.go │ │ ├── message.go │ │ ├── mqtt.go │ │ ├── packet.go │ │ ├── pingreq.go │ │ ├── pingresp.go │ │ ├── puback.go │ │ ├── pubcomp.go │ │ ├── publish.go │ │ ├── pubrec.go │ │ ├── pubrel.go │ │ ├── reconnclient.go │ │ ├── retryclient.go │ │ ├── serve.go │ │ ├── serveasync.go │ │ ├── servemux.go │ │ ├── suback.go │ │ ├── subscribe.go │ │ ├── subscriptions.go │ │ ├── uniqid.go │ │ ├── unsuback.go │ │ └── unsubscribe.go ├── aws │ ├── aws-sdk-go-v2 │ │ ├── LICENSE.txt │ │ ├── NOTICE.txt │ │ ├── aws │ │ │ ├── accountid_endpoint_mode.go │ │ │ ├── checksum.go │ │ │ ├── config.go │ │ │ ├── context.go │ │ │ ├── credential_cache.go │ │ │ ├── credentials.go │ │ │ ├── defaults │ │ │ │ ├── auto.go │ │ │ │ ├── configuration.go │ │ │ │ ├── defaults.go │ │ │ │ └── doc.go │ │ │ ├── defaultsmode.go │ │ │ ├── doc.go │ │ │ ├── endpoints.go │ │ │ ├── errors.go │ │ │ ├── from_ptr.go │ │ │ ├── go_module_metadata.go │ │ │ ├── logging.go │ │ │ ├── logging_generate.go │ │ │ ├── middleware │ │ │ │ ├── metadata.go │ │ │ │ ├── middleware.go │ │ │ │ ├── osname.go │ │ │ │ ├── osname_go115.go │ │ │ │ ├── recursion_detection.go │ │ │ │ ├── request_id.go │ │ │ │ ├── request_id_retriever.go │ │ │ │ └── user_agent.go │ │ │ ├── protocol │ │ │ │ ├── query │ │ │ │ │ ├── array.go │ │ │ │ │ ├── encoder.go │ │ │ │ │ ├── map.go │ │ │ │ │ ├── middleware.go │ │ │ │ │ ├── object.go │ │ │ │ │ └── value.go │ │ │ │ ├── restjson │ │ │ │ │ └── decoder_util.go │ │ │ │ └── xml │ │ │ │ │ └── error_utils.go │ │ │ ├── ratelimit │ │ │ │ ├── none.go │ │ │ │ ├── token_bucket.go │ │ │ │ └── token_rate_limit.go │ │ │ ├── request.go │ │ │ ├── retry │ │ │ │ ├── adaptive.go │ │ │ │ ├── adaptive_ratelimit.go │ │ │ │ ├── adaptive_token_bucket.go │ │ │ │ ├── attempt_metrics.go │ │ │ │ ├── doc.go │ │ │ │ ├── errors.go │ │ │ │ ├── jitter_backoff.go │ │ │ │ ├── metadata.go │ │ │ │ ├── middleware.go │ │ │ │ ├── retry.go │ │ │ │ ├── retryable_error.go │ │ │ │ ├── standard.go │ │ │ │ ├── throttle_error.go │ │ │ │ └── timeout_error.go │ │ │ ├── retryer.go │ │ │ ├── runtime.go │ │ │ ├── signer │ │ │ │ ├── internal │ │ │ │ │ └── v4 │ │ │ │ │ │ ├── cache.go │ │ │ │ │ │ ├── const.go │ │ │ │ │ │ ├── header_rules.go │ │ │ │ │ │ ├── headers.go │ │ │ │ │ │ ├── hmac.go │ │ │ │ │ │ ├── host.go │ │ │ │ │ │ ├── scope.go │ │ │ │ │ │ ├── time.go │ │ │ │ │ │ └── util.go │ │ │ │ └── v4 │ │ │ │ │ ├── middleware.go │ │ │ │ │ ├── presign_middleware.go │ │ │ │ │ ├── stream.go │ │ │ │ │ └── v4.go │ │ │ ├── to_ptr.go │ │ │ ├── transport │ │ │ │ └── http │ │ │ │ │ ├── client.go │ │ │ │ │ ├── content_type.go │ │ │ │ │ ├── response_error.go │ │ │ │ │ ├── response_error_middleware.go │ │ │ │ │ └── timeout_read_closer.go │ │ │ ├── types.go │ │ │ └── version.go │ │ ├── config │ │ │ ├── CHANGELOG.md │ │ │ ├── LICENSE.txt │ │ │ ├── auth_scheme_preference.go │ │ │ ├── config.go │ │ │ ├── defaultsmode.go │ │ │ ├── doc.go │ │ │ ├── env_config.go │ │ │ ├── generate.go │ │ │ ├── go_module_metadata.go │ │ │ ├── load_options.go │ │ │ ├── local.go │ │ │ ├── provider.go │ │ │ ├── resolve.go │ │ │ ├── resolve_bearer_token.go │ │ │ ├── resolve_credentials.go │ │ │ └── shared_config.go │ │ ├── credentials │ │ │ ├── CHANGELOG.md │ │ │ ├── LICENSE.txt │ │ │ ├── doc.go │ │ │ ├── ec2rolecreds │ │ │ │ ├── doc.go │ │ │ │ └── provider.go │ │ │ ├── endpointcreds │ │ │ │ ├── internal │ │ │ │ │ └── client │ │ │ │ │ │ ├── auth.go │ │ │ │ │ │ ├── client.go │ │ │ │ │ │ ├── endpoints.go │ │ │ │ │ │ └── middleware.go │ │ │ │ └── provider.go │ │ │ ├── go_module_metadata.go │ │ │ ├── processcreds │ │ │ │ ├── doc.go │ │ │ │ └── provider.go │ │ │ ├── ssocreds │ │ │ │ ├── doc.go │ │ │ │ ├── sso_cached_token.go │ │ │ │ ├── sso_credentials_provider.go │ │ │ │ └── sso_token_provider.go │ │ │ ├── static_provider.go │ │ │ └── stscreds │ │ │ │ ├── assume_role_provider.go │ │ │ │ └── web_identity_provider.go │ │ ├── feature │ │ │ └── ec2 │ │ │ │ └── imds │ │ │ │ ├── CHANGELOG.md │ │ │ │ ├── LICENSE.txt │ │ │ │ ├── api_client.go │ │ │ │ ├── api_op_GetDynamicData.go │ │ │ │ ├── api_op_GetIAMInfo.go │ │ │ │ ├── api_op_GetInstanceIdentityDocument.go │ │ │ │ ├── api_op_GetMetadata.go │ │ │ │ ├── api_op_GetRegion.go │ │ │ │ ├── api_op_GetToken.go │ │ │ │ ├── api_op_GetUserData.go │ │ │ │ ├── auth.go │ │ │ │ ├── doc.go │ │ │ │ ├── endpoints.go │ │ │ │ ├── go_module_metadata.go │ │ │ │ ├── internal │ │ │ │ └── config │ │ │ │ │ └── resolvers.go │ │ │ │ ├── request_middleware.go │ │ │ │ └── token_provider.go │ │ ├── internal │ │ │ ├── auth │ │ │ │ ├── auth.go │ │ │ │ ├── scheme.go │ │ │ │ └── smithy │ │ │ │ │ ├── bearer_token_adapter.go │ │ │ │ │ ├── bearer_token_signer_adapter.go │ │ │ │ │ ├── credentials_adapter.go │ │ │ │ │ ├── smithy.go │ │ │ │ │ └── v4signer_adapter.go │ │ │ ├── configsources │ │ │ │ ├── CHANGELOG.md │ │ │ │ ├── LICENSE.txt │ │ │ │ ├── config.go │ │ │ │ ├── endpoints.go │ │ │ │ └── go_module_metadata.go │ │ │ ├── context │ │ │ │ └── context.go │ │ │ ├── endpoints │ │ │ │ ├── awsrulesfn │ │ │ │ │ ├── arn.go │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── generate.go │ │ │ │ │ ├── host.go │ │ │ │ │ ├── partition.go │ │ │ │ │ ├── partitions.go │ │ │ │ │ └── partitions.json │ │ │ │ ├── endpoints.go │ │ │ │ └── v2 │ │ │ │ │ ├── CHANGELOG.md │ │ │ │ │ ├── LICENSE.txt │ │ │ │ │ ├── endpoints.go │ │ │ │ │ └── go_module_metadata.go │ │ │ ├── ini │ │ │ │ ├── CHANGELOG.md │ │ │ │ ├── LICENSE.txt │ │ │ │ ├── errors.go │ │ │ │ ├── go_module_metadata.go │ │ │ │ ├── ini.go │ │ │ │ ├── parse.go │ │ │ │ ├── sections.go │ │ │ │ ├── strings.go │ │ │ │ ├── token.go │ │ │ │ ├── tokenize.go │ │ │ │ └── value.go │ │ │ ├── middleware │ │ │ │ └── middleware.go │ │ │ ├── rand │ │ │ │ └── rand.go │ │ │ ├── sdk │ │ │ │ ├── interfaces.go │ │ │ │ └── time.go │ │ │ ├── sdkio │ │ │ │ └── byte.go │ │ │ ├── shareddefaults │ │ │ │ └── shared_config.go │ │ │ ├── strings │ │ │ │ └── strings.go │ │ │ ├── sync │ │ │ │ └── singleflight │ │ │ │ │ ├── LICENSE │ │ │ │ │ ├── docs.go │ │ │ │ │ └── singleflight.go │ │ │ └── timeconv │ │ │ │ └── duration.go │ │ └── service │ │ │ ├── internal │ │ │ ├── accept-encoding │ │ │ │ ├── CHANGELOG.md │ │ │ │ ├── LICENSE.txt │ │ │ │ ├── accept_encoding_gzip.go │ │ │ │ ├── doc.go │ │ │ │ └── go_module_metadata.go │ │ │ └── presigned-url │ │ │ │ ├── CHANGELOG.md │ │ │ │ ├── LICENSE.txt │ │ │ │ ├── context.go │ │ │ │ ├── doc.go │ │ │ │ ├── go_module_metadata.go │ │ │ │ └── middleware.go │ │ │ ├── s3 │ │ │ ├── LICENSE.txt │ │ │ └── types │ │ │ │ ├── enums.go │ │ │ │ ├── errors.go │ │ │ │ └── types.go │ │ │ ├── sso │ │ │ ├── CHANGELOG.md │ │ │ ├── LICENSE.txt │ │ │ ├── api_client.go │ │ │ ├── api_op_GetRoleCredentials.go │ │ │ ├── api_op_ListAccountRoles.go │ │ │ ├── api_op_ListAccounts.go │ │ │ ├── api_op_Logout.go │ │ │ ├── auth.go │ │ │ ├── deserializers.go │ │ │ ├── doc.go │ │ │ ├── endpoints.go │ │ │ ├── generated.json │ │ │ ├── go_module_metadata.go │ │ │ ├── internal │ │ │ │ └── endpoints │ │ │ │ │ └── endpoints.go │ │ │ ├── options.go │ │ │ ├── serializers.go │ │ │ ├── types │ │ │ │ ├── errors.go │ │ │ │ └── types.go │ │ │ └── validators.go │ │ │ ├── ssooidc │ │ │ ├── CHANGELOG.md │ │ │ ├── LICENSE.txt │ │ │ ├── api_client.go │ │ │ ├── api_op_CreateToken.go │ │ │ ├── api_op_CreateTokenWithIAM.go │ │ │ ├── api_op_RegisterClient.go │ │ │ ├── api_op_StartDeviceAuthorization.go │ │ │ ├── auth.go │ │ │ ├── deserializers.go │ │ │ ├── doc.go │ │ │ ├── endpoints.go │ │ │ ├── generated.json │ │ │ ├── go_module_metadata.go │ │ │ ├── internal │ │ │ │ └── endpoints │ │ │ │ │ └── endpoints.go │ │ │ ├── options.go │ │ │ ├── serializers.go │ │ │ ├── types │ │ │ │ ├── enums.go │ │ │ │ ├── errors.go │ │ │ │ └── types.go │ │ │ └── validators.go │ │ │ └── sts │ │ │ ├── CHANGELOG.md │ │ │ ├── LICENSE.txt │ │ │ ├── api_client.go │ │ │ ├── api_op_AssumeRole.go │ │ │ ├── api_op_AssumeRoleWithSAML.go │ │ │ ├── api_op_AssumeRoleWithWebIdentity.go │ │ │ ├── api_op_AssumeRoot.go │ │ │ ├── api_op_DecodeAuthorizationMessage.go │ │ │ ├── api_op_GetAccessKeyInfo.go │ │ │ ├── api_op_GetCallerIdentity.go │ │ │ ├── api_op_GetFederationToken.go │ │ │ ├── api_op_GetSessionToken.go │ │ │ ├── auth.go │ │ │ ├── deserializers.go │ │ │ ├── doc.go │ │ │ ├── endpoints.go │ │ │ ├── generated.json │ │ │ ├── go_module_metadata.go │ │ │ ├── internal │ │ │ └── endpoints │ │ │ │ └── endpoints.go │ │ │ ├── options.go │ │ │ ├── serializers.go │ │ │ ├── types │ │ │ ├── errors.go │ │ │ └── types.go │ │ │ └── validators.go │ ├── aws-sdk-go │ │ ├── LICENSE.txt │ │ ├── NOTICE.txt │ │ ├── aws │ │ │ ├── arn │ │ │ │ └── arn.go │ │ │ ├── auth │ │ │ │ └── bearer │ │ │ │ │ └── token.go │ │ │ ├── awserr │ │ │ │ ├── error.go │ │ │ │ └── types.go │ │ │ ├── awsutil │ │ │ │ ├── copy.go │ │ │ │ ├── equal.go │ │ │ │ ├── path_value.go │ │ │ │ ├── prettify.go │ │ │ │ └── string_value.go │ │ │ ├── client │ │ │ │ ├── client.go │ │ │ │ ├── default_retryer.go │ │ │ │ ├── logger.go │ │ │ │ ├── metadata │ │ │ │ │ └── client_info.go │ │ │ │ └── no_op_retryer.go │ │ │ ├── config.go │ │ │ ├── context_1_5.go │ │ │ ├── context_1_9.go │ │ │ ├── context_background_1_5.go │ │ │ ├── context_background_1_7.go │ │ │ ├── context_sleep.go │ │ │ ├── convert_types.go │ │ │ ├── corehandlers │ │ │ │ ├── awsinternal.go │ │ │ │ ├── handlers.go │ │ │ │ ├── param_validator.go │ │ │ │ └── user_agent.go │ │ │ ├── credentials │ │ │ │ ├── chain_provider.go │ │ │ │ ├── context_background_go1.5.go │ │ │ │ ├── context_background_go1.7.go │ │ │ │ ├── context_go1.5.go │ │ │ │ ├── context_go1.9.go │ │ │ │ ├── credentials.go │ │ │ │ ├── ec2rolecreds │ │ │ │ │ └── ec2_role_provider.go │ │ │ │ ├── endpointcreds │ │ │ │ │ └── provider.go │ │ │ │ ├── env_provider.go │ │ │ │ ├── example.ini │ │ │ │ ├── processcreds │ │ │ │ │ └── provider.go │ │ │ │ ├── shared_credentials_provider.go │ │ │ │ ├── ssocreds │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── os.go │ │ │ │ │ ├── os_windows.go │ │ │ │ │ ├── provider.go │ │ │ │ │ ├── sso_cached_token.go │ │ │ │ │ └── token_provider.go │ │ │ │ ├── static_provider.go │ │ │ │ └── stscreds │ │ │ │ │ ├── assume_role_provider.go │ │ │ │ │ └── web_identity_provider.go │ │ │ ├── csm │ │ │ │ ├── doc.go │ │ │ │ ├── enable.go │ │ │ │ ├── metric.go │ │ │ │ ├── metric_chan.go │ │ │ │ ├── metric_exception.go │ │ │ │ └── reporter.go │ │ │ ├── defaults │ │ │ │ ├── defaults.go │ │ │ │ └── shared_config.go │ │ │ ├── doc.go │ │ │ ├── ec2metadata │ │ │ │ ├── api.go │ │ │ │ ├── service.go │ │ │ │ └── token_provider.go │ │ │ ├── endpoints │ │ │ │ ├── decode.go │ │ │ │ ├── defaults.go │ │ │ │ ├── dep_service_ids.go │ │ │ │ ├── doc.go │ │ │ │ ├── endpoints.go │ │ │ │ ├── legacy_regions.go │ │ │ │ ├── v3model.go │ │ │ │ └── v3model_codegen.go │ │ │ ├── errors.go │ │ │ ├── jsonvalue.go │ │ │ ├── logger.go │ │ │ ├── request │ │ │ │ ├── connection_reset_error.go │ │ │ │ ├── handlers.go │ │ │ │ ├── http_request.go │ │ │ │ ├── offset_reader.go │ │ │ │ ├── request.go │ │ │ │ ├── request_1_7.go │ │ │ │ ├── request_1_8.go │ │ │ │ ├── request_context.go │ │ │ │ ├── request_context_1_6.go │ │ │ │ ├── request_pagination.go │ │ │ │ ├── retryer.go │ │ │ │ ├── timeout_read_closer.go │ │ │ │ ├── validation.go │ │ │ │ └── waiter.go │ │ │ ├── session │ │ │ │ ├── credentials.go │ │ │ │ ├── custom_transport.go │ │ │ │ ├── custom_transport_go1.12.go │ │ │ │ ├── custom_transport_go1.5.go │ │ │ │ ├── custom_transport_go1.6.go │ │ │ │ ├── doc.go │ │ │ │ ├── env_config.go │ │ │ │ ├── session.go │ │ │ │ └── shared_config.go │ │ │ ├── signer │ │ │ │ └── v4 │ │ │ │ │ ├── header_rules.go │ │ │ │ │ ├── options.go │ │ │ │ │ ├── request_context_go1.5.go │ │ │ │ │ ├── request_context_go1.7.go │ │ │ │ │ ├── stream.go │ │ │ │ │ ├── uri_path.go │ │ │ │ │ └── v4.go │ │ │ ├── types.go │ │ │ ├── url.go │ │ │ ├── url_1_7.go │ │ │ └── version.go │ │ ├── internal │ │ │ ├── context │ │ │ │ └── background_go1.5.go │ │ │ ├── ini │ │ │ │ ├── ast.go │ │ │ │ ├── comma_token.go │ │ │ │ ├── comment_token.go │ │ │ │ ├── doc.go │ │ │ │ ├── empty_token.go │ │ │ │ ├── expression.go │ │ │ │ ├── fuzz.go │ │ │ │ ├── ini.go │ │ │ │ ├── ini_lexer.go │ │ │ │ ├── ini_parser.go │ │ │ │ ├── literal_tokens.go │ │ │ │ ├── newline_token.go │ │ │ │ ├── number_helper.go │ │ │ │ ├── op_tokens.go │ │ │ │ ├── parse_error.go │ │ │ │ ├── parse_stack.go │ │ │ │ ├── sep_tokens.go │ │ │ │ ├── skipper.go │ │ │ │ ├── statement.go │ │ │ │ ├── value_util.go │ │ │ │ ├── visitor.go │ │ │ │ ├── walker.go │ │ │ │ └── ws_token.go │ │ │ ├── sdkio │ │ │ │ ├── byte.go │ │ │ │ ├── io_go1.6.go │ │ │ │ └── io_go1.7.go │ │ │ ├── sdkmath │ │ │ │ ├── floor.go │ │ │ │ └── floor_go1.9.go │ │ │ ├── sdkrand │ │ │ │ ├── locked_source.go │ │ │ │ ├── read.go │ │ │ │ └── read_1_5.go │ │ │ ├── sdkuri │ │ │ │ └── path.go │ │ │ ├── shareddefaults │ │ │ │ ├── ecs_container.go │ │ │ │ ├── shared_config.go │ │ │ │ ├── shared_config_resolve_home.go │ │ │ │ └── shared_config_resolve_home_go1.12.go │ │ │ ├── strings │ │ │ │ └── strings.go │ │ │ └── sync │ │ │ │ └── singleflight │ │ │ │ ├── LICENSE │ │ │ │ └── singleflight.go │ │ ├── private │ │ │ └── protocol │ │ │ │ ├── host.go │ │ │ │ ├── host_prefix.go │ │ │ │ ├── idempotency.go │ │ │ │ ├── json │ │ │ │ └── jsonutil │ │ │ │ │ ├── build.go │ │ │ │ │ └── unmarshal.go │ │ │ │ ├── jsonrpc │ │ │ │ ├── jsonrpc.go │ │ │ │ └── unmarshal_error.go │ │ │ │ ├── jsonvalue.go │ │ │ │ ├── payload.go │ │ │ │ ├── protocol.go │ │ │ │ ├── query │ │ │ │ ├── build.go │ │ │ │ ├── queryutil │ │ │ │ │ └── queryutil.go │ │ │ │ ├── unmarshal.go │ │ │ │ └── unmarshal_error.go │ │ │ │ ├── rest │ │ │ │ ├── build.go │ │ │ │ ├── payload.go │ │ │ │ └── unmarshal.go │ │ │ │ ├── restjson │ │ │ │ ├── restjson.go │ │ │ │ └── unmarshal_error.go │ │ │ │ ├── timestamp.go │ │ │ │ ├── unmarshal.go │ │ │ │ ├── unmarshal_error.go │ │ │ │ └── xml │ │ │ │ └── xmlutil │ │ │ │ ├── build.go │ │ │ │ ├── sort.go │ │ │ │ ├── unmarshal.go │ │ │ │ └── xml_to_struct.go │ │ └── service │ │ │ ├── sns │ │ │ ├── api.go │ │ │ ├── doc.go │ │ │ ├── errors.go │ │ │ └── service.go │ │ │ ├── sso │ │ │ ├── api.go │ │ │ ├── doc.go │ │ │ ├── errors.go │ │ │ ├── service.go │ │ │ └── ssoiface │ │ │ │ └── interface.go │ │ │ ├── ssooidc │ │ │ ├── api.go │ │ │ ├── doc.go │ │ │ ├── errors.go │ │ │ └── service.go │ │ │ └── sts │ │ │ ├── api.go │ │ │ ├── customizations.go │ │ │ ├── doc.go │ │ │ ├── errors.go │ │ │ ├── service.go │ │ │ └── stsiface │ │ │ └── interface.go │ └── smithy-go │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── CHANGELOG.md │ │ ├── CODE_OF_CONDUCT.md │ │ ├── CONTRIBUTING.md │ │ ├── LICENSE │ │ ├── Makefile │ │ ├── NOTICE │ │ ├── README.md │ │ ├── auth │ │ ├── auth.go │ │ ├── bearer │ │ │ ├── docs.go │ │ │ ├── middleware.go │ │ │ ├── token.go │ │ │ └── token_cache.go │ │ ├── identity.go │ │ ├── option.go │ │ └── scheme_id.go │ │ ├── changelog-template.json │ │ ├── context │ │ └── suppress_expired.go │ │ ├── doc.go │ │ ├── document.go │ │ ├── document │ │ ├── doc.go │ │ ├── document.go │ │ └── errors.go │ │ ├── encoding │ │ ├── doc.go │ │ ├── encoding.go │ │ ├── httpbinding │ │ │ ├── encode.go │ │ │ ├── header.go │ │ │ ├── path_replace.go │ │ │ ├── query.go │ │ │ └── uri.go │ │ ├── json │ │ │ ├── array.go │ │ │ ├── constants.go │ │ │ ├── decoder_util.go │ │ │ ├── encoder.go │ │ │ ├── escape.go │ │ │ ├── object.go │ │ │ └── value.go │ │ └── xml │ │ │ ├── array.go │ │ │ ├── constants.go │ │ │ ├── doc.go │ │ │ ├── element.go │ │ │ ├── encoder.go │ │ │ ├── error_utils.go │ │ │ ├── escape.go │ │ │ ├── map.go │ │ │ ├── value.go │ │ │ └── xml_decoder.go │ │ ├── endpoints │ │ └── endpoint.go │ │ ├── errors.go │ │ ├── go_module_metadata.go │ │ ├── internal │ │ └── sync │ │ │ └── singleflight │ │ │ ├── LICENSE │ │ │ ├── docs.go │ │ │ └── singleflight.go │ │ ├── io │ │ ├── byte.go │ │ ├── doc.go │ │ ├── reader.go │ │ └── ringbuffer.go │ │ ├── local-mod-replace.sh │ │ ├── logging │ │ └── logger.go │ │ ├── metrics │ │ ├── metrics.go │ │ └── nop.go │ │ ├── middleware │ │ ├── context.go │ │ ├── doc.go │ │ ├── logging.go │ │ ├── metadata.go │ │ ├── middleware.go │ │ ├── ordered_group.go │ │ ├── stack.go │ │ ├── stack_values.go │ │ ├── step_build.go │ │ ├── step_deserialize.go │ │ ├── step_finalize.go │ │ ├── step_initialize.go │ │ └── step_serialize.go │ │ ├── modman.toml │ │ ├── private │ │ └── requestcompression │ │ │ ├── gzip.go │ │ │ ├── middleware_capture_request_compression.go │ │ │ └── request_compression.go │ │ ├── properties.go │ │ ├── ptr │ │ ├── doc.go │ │ ├── from_ptr.go │ │ ├── gen_scalars.go │ │ └── to_ptr.go │ │ ├── rand │ │ ├── doc.go │ │ ├── rand.go │ │ └── uuid.go │ │ ├── time │ │ └── time.go │ │ ├── tracing │ │ ├── context.go │ │ ├── nop.go │ │ └── tracing.go │ │ ├── transport │ │ └── http │ │ │ ├── auth.go │ │ │ ├── auth_schemes.go │ │ │ ├── checksum_middleware.go │ │ │ ├── client.go │ │ │ ├── doc.go │ │ │ ├── headerlist.go │ │ │ ├── host.go │ │ │ ├── interceptor.go │ │ │ ├── interceptor_middleware.go │ │ │ ├── internal │ │ │ └── io │ │ │ │ └── safe.go │ │ │ ├── md5_checksum.go │ │ │ ├── metrics.go │ │ │ ├── middleware_close_response_body.go │ │ │ ├── middleware_content_length.go │ │ │ ├── middleware_header_comment.go │ │ │ ├── middleware_headers.go │ │ │ ├── middleware_http_logging.go │ │ │ ├── middleware_metadata.go │ │ │ ├── middleware_min_proto.go │ │ │ ├── properties.go │ │ │ ├── request.go │ │ │ ├── response.go │ │ │ ├── time.go │ │ │ ├── url.go │ │ │ └── user_agent.go │ │ └── validation.go ├── bboreham │ └── go-loser │ │ ├── .gitignore │ │ ├── LICENSE │ │ ├── README.md │ │ └── tree.go ├── benbjohnson │ └── clock │ │ ├── LICENSE │ │ ├── README.md │ │ ├── clock.go │ │ └── context.go ├── beorn7 │ └── perks │ │ ├── LICENSE │ │ └── quantile │ │ ├── exampledata.txt │ │ └── stream.go ├── bits-and-blooms │ └── bitset │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── LICENSE │ │ ├── README.md │ │ ├── SECURITY.md │ │ ├── azure-pipelines.yml │ │ ├── bitset.go │ │ ├── bitset_iter.go │ │ ├── pext.gen.go │ │ ├── popcnt.go │ │ └── select.go ├── cenkalti │ └── backoff │ │ ├── v4 │ │ ├── .gitignore │ │ ├── LICENSE │ │ ├── README.md │ │ ├── backoff.go │ │ ├── context.go │ │ ├── exponential.go │ │ ├── retry.go │ │ ├── ticker.go │ │ ├── timer.go │ │ └── tries.go │ │ └── v5 │ │ ├── .gitignore │ │ ├── CHANGELOG.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── backoff.go │ │ ├── error.go │ │ ├── exponential.go │ │ ├── retry.go │ │ ├── ticker.go │ │ └── timer.go ├── cespare │ └── xxhash │ │ └── v2 │ │ ├── LICENSE.txt │ │ ├── README.md │ │ ├── testall.sh │ │ ├── xxhash.go │ │ ├── xxhash_amd64.s │ │ ├── xxhash_arm64.s │ │ ├── xxhash_asm.go │ │ ├── xxhash_other.go │ │ ├── xxhash_safe.go │ │ └── xxhash_unsafe.go ├── cncf │ └── xds │ │ └── go │ │ ├── LICENSE │ │ ├── udpa │ │ ├── annotations │ │ │ ├── migrate.pb.go │ │ │ ├── migrate.pb.validate.go │ │ │ ├── security.pb.go │ │ │ ├── security.pb.validate.go │ │ │ ├── sensitive.pb.go │ │ │ ├── sensitive.pb.validate.go │ │ │ ├── status.pb.go │ │ │ ├── status.pb.validate.go │ │ │ ├── versioning.pb.go │ │ │ └── versioning.pb.validate.go │ │ └── type │ │ │ └── v1 │ │ │ ├── typed_struct.pb.go │ │ │ └── typed_struct.pb.validate.go │ │ └── xds │ │ ├── annotations │ │ └── v3 │ │ │ ├── migrate.pb.go │ │ │ ├── migrate.pb.validate.go │ │ │ ├── security.pb.go │ │ │ ├── security.pb.validate.go │ │ │ ├── sensitive.pb.go │ │ │ ├── sensitive.pb.validate.go │ │ │ ├── status.pb.go │ │ │ ├── status.pb.validate.go │ │ │ ├── versioning.pb.go │ │ │ └── versioning.pb.validate.go │ │ ├── core │ │ └── v3 │ │ │ ├── authority.pb.go │ │ │ ├── authority.pb.validate.go │ │ │ ├── cidr.pb.go │ │ │ ├── cidr.pb.validate.go │ │ │ ├── collection_entry.pb.go │ │ │ ├── collection_entry.pb.validate.go │ │ │ ├── context_params.pb.go │ │ │ ├── context_params.pb.validate.go │ │ │ ├── extension.pb.go │ │ │ ├── extension.pb.validate.go │ │ │ ├── resource.pb.go │ │ │ ├── resource.pb.validate.go │ │ │ ├── resource_locator.pb.go │ │ │ ├── resource_locator.pb.validate.go │ │ │ ├── resource_name.pb.go │ │ │ └── resource_name.pb.validate.go │ │ ├── data │ │ └── orca │ │ │ └── v3 │ │ │ ├── orca_load_report.pb.go │ │ │ └── orca_load_report.pb.validate.go │ │ ├── service │ │ └── orca │ │ │ └── v3 │ │ │ ├── orca.pb.go │ │ │ ├── orca.pb.validate.go │ │ │ └── orca_grpc.pb.go │ │ └── type │ │ ├── matcher │ │ └── v3 │ │ │ ├── cel.pb.go │ │ │ ├── cel.pb.validate.go │ │ │ ├── domain.pb.go │ │ │ ├── domain.pb.validate.go │ │ │ ├── http_inputs.pb.go │ │ │ ├── http_inputs.pb.validate.go │ │ │ ├── ip.pb.go │ │ │ ├── ip.pb.validate.go │ │ │ ├── matcher.pb.go │ │ │ ├── matcher.pb.validate.go │ │ │ ├── range.pb.go │ │ │ ├── range.pb.validate.go │ │ │ ├── regex.pb.go │ │ │ ├── regex.pb.validate.go │ │ │ ├── string.pb.go │ │ │ └── string.pb.validate.go │ │ └── v3 │ │ ├── cel.pb.go │ │ ├── cel.pb.validate.go │ │ ├── range.pb.go │ │ ├── range.pb.validate.go │ │ ├── typed_struct.pb.go │ │ └── typed_struct.pb.validate.go ├── coreos │ ├── go-semver │ │ ├── LICENSE │ │ ├── NOTICE │ │ └── semver │ │ │ ├── semver.go │ │ │ └── sort.go │ └── go-systemd │ │ └── v22 │ │ ├── LICENSE │ │ ├── NOTICE │ │ ├── activation │ │ ├── files_unix.go │ │ ├── files_windows.go │ │ ├── listeners.go │ │ └── packetconns.go │ │ └── journal │ │ ├── journal.go │ │ ├── journal_unix.go │ │ └── journal_windows.go ├── cortexproject │ └── promqlsmith │ │ ├── .gitignore │ │ ├── .go-version │ │ ├── .golangci.yml │ │ ├── LICENSE │ │ ├── Makefile │ │ ├── README.md │ │ ├── opts.go │ │ ├── promqlsmith.go │ │ └── walk.go ├── davecgh │ └── go-spew │ │ ├── LICENSE │ │ └── spew │ │ ├── bypass.go │ │ ├── bypasssafe.go │ │ ├── common.go │ │ ├── config.go │ │ ├── doc.go │ │ ├── dump.go │ │ ├── format.go │ │ └── spew.go ├── dennwc │ └── varint │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── LICENSE │ │ ├── README.md │ │ ├── proto.go │ │ └── varint.go ├── dgraph-io │ └── ristretto │ │ ├── .deepsource.toml │ │ ├── .go-version │ │ ├── .golangci.yml │ │ ├── CHANGELOG.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── cache.go │ │ ├── policy.go │ │ ├── ring.go │ │ ├── sketch.go │ │ ├── store.go │ │ ├── ttl.go │ │ └── z │ │ ├── LICENSE │ │ ├── README.md │ │ ├── allocator.go │ │ ├── bbloom.go │ │ ├── btree.go │ │ ├── buffer.go │ │ ├── calloc.go │ │ ├── calloc_32bit.go │ │ ├── calloc_64bit.go │ │ ├── calloc_jemalloc.go │ │ ├── calloc_nojemalloc.go │ │ ├── file.go │ │ ├── file_default.go │ │ ├── file_linux.go │ │ ├── flags.go │ │ ├── histogram.go │ │ ├── mmap.go │ │ ├── mmap_darwin.go │ │ ├── mmap_linux.go │ │ ├── mmap_plan9.go │ │ ├── mmap_unix.go │ │ ├── mmap_windows.go │ │ ├── mremap_linux.go │ │ ├── mremap_linux_arm64.go │ │ ├── rtutil.go │ │ ├── rtutil.s │ │ ├── simd │ │ ├── baseline.go │ │ ├── search.go │ │ ├── search_amd64.s │ │ └── stub_search_amd64.go │ │ └── z.go ├── dlclark │ └── regexp2 │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── ATTRIB │ │ ├── LICENSE │ │ ├── README.md │ │ ├── fastclock.go │ │ ├── match.go │ │ ├── regexp.go │ │ ├── replace.go │ │ ├── runner.go │ │ ├── syntax │ │ ├── charclass.go │ │ ├── code.go │ │ ├── escape.go │ │ ├── fuzz.go │ │ ├── parser.go │ │ ├── prefix.go │ │ ├── replacerdata.go │ │ ├── tree.go │ │ └── writer.go │ │ └── testoutput1 ├── docker │ └── go-units │ │ ├── CONTRIBUTING.md │ │ ├── LICENSE │ │ ├── MAINTAINERS │ │ ├── README.md │ │ ├── circle.yml │ │ ├── duration.go │ │ ├── size.go │ │ └── ulimit.go ├── dustin │ └── go-humanize │ │ ├── .travis.yml │ │ ├── LICENSE │ │ ├── README.markdown │ │ ├── big.go │ │ ├── bigbytes.go │ │ ├── bytes.go │ │ ├── comma.go │ │ ├── commaf.go │ │ ├── ftoa.go │ │ ├── humanize.go │ │ ├── number.go │ │ ├── ordinals.go │ │ ├── si.go │ │ └── times.go ├── ebitengine │ └── purego │ │ ├── .gitignore │ │ ├── LICENSE │ │ ├── README.md │ │ ├── abi_amd64.h │ │ ├── abi_arm64.h │ │ ├── abi_loong64.h │ │ ├── cgo.go │ │ ├── dlerror.go │ │ ├── dlfcn.go │ │ ├── dlfcn_android.go │ │ ├── dlfcn_darwin.go │ │ ├── dlfcn_freebsd.go │ │ ├── dlfcn_linux.go │ │ ├── dlfcn_netbsd.go │ │ ├── dlfcn_nocgo_freebsd.go │ │ ├── dlfcn_nocgo_linux.go │ │ ├── dlfcn_nocgo_netbsd.go │ │ ├── dlfcn_playground.go │ │ ├── dlfcn_stubs.s │ │ ├── func.go │ │ ├── gen.go │ │ ├── go_runtime.go │ │ ├── internal │ │ ├── cgo │ │ │ ├── dlfcn_cgo_unix.go │ │ │ ├── empty.go │ │ │ └── syscall_cgo_unix.go │ │ ├── fakecgo │ │ │ ├── abi_amd64.h │ │ │ ├── abi_arm64.h │ │ │ ├── abi_loong64.h │ │ │ ├── asm_amd64.s │ │ │ ├── asm_arm64.s │ │ │ ├── asm_loong64.s │ │ │ ├── callbacks.go │ │ │ ├── doc.go │ │ │ ├── freebsd.go │ │ │ ├── go_darwin_amd64.go │ │ │ ├── go_darwin_arm64.go │ │ │ ├── go_freebsd_amd64.go │ │ │ ├── go_freebsd_arm64.go │ │ │ ├── go_libinit.go │ │ │ ├── go_linux_amd64.go │ │ │ ├── go_linux_arm64.go │ │ │ ├── go_linux_loong64.go │ │ │ ├── go_netbsd.go │ │ │ ├── go_setenv.go │ │ │ ├── go_util.go │ │ │ ├── iscgo.go │ │ │ ├── libcgo.go │ │ │ ├── libcgo_darwin.go │ │ │ ├── libcgo_freebsd.go │ │ │ ├── libcgo_linux.go │ │ │ ├── libcgo_netbsd.go │ │ │ ├── netbsd.go │ │ │ ├── setenv.go │ │ │ ├── symbols.go │ │ │ ├── symbols_darwin.go │ │ │ ├── symbols_freebsd.go │ │ │ ├── symbols_linux.go │ │ │ ├── symbols_netbsd.go │ │ │ ├── trampolines_amd64.s │ │ │ ├── trampolines_arm64.s │ │ │ ├── trampolines_loong64.s │ │ │ └── trampolines_stubs.s │ │ └── strings │ │ │ └── strings.go │ │ ├── is_ios.go │ │ ├── nocgo.go │ │ ├── struct_amd64.go │ │ ├── struct_arm64.go │ │ ├── struct_loong64.go │ │ ├── struct_other.go │ │ ├── sys_amd64.s │ │ ├── sys_arm64.s │ │ ├── sys_loong64.s │ │ ├── sys_unix_arm64.s │ │ ├── sys_unix_loong64.s │ │ ├── syscall.go │ │ ├── syscall_cgo_linux.go │ │ ├── syscall_sysv.go │ │ ├── syscall_windows.go │ │ ├── zcallback_amd64.s │ │ ├── zcallback_arm64.s │ │ └── zcallback_loong64.s ├── edsrzf │ └── mmap-go │ │ ├── .gitignore │ │ ├── LICENSE │ │ ├── README.md │ │ ├── mmap.go │ │ ├── mmap_plan9.go │ │ ├── mmap_unix.go │ │ ├── mmap_wasm.go │ │ └── mmap_windows.go ├── efficientgo │ └── core │ │ ├── COPYRIGHT │ │ ├── LICENSE │ │ ├── errcapture │ │ ├── do.go │ │ └── doc.go │ │ ├── errors │ │ ├── doc.go │ │ ├── errors.go │ │ └── stacktrace.go │ │ ├── logerrcapture │ │ ├── do.go │ │ └── doc.go │ │ ├── merrors │ │ ├── doc.go │ │ └── merrors.go │ │ └── testutil │ │ ├── doc.go │ │ ├── internal │ │ └── difflib.go │ │ ├── testorbench.go │ │ └── testutil.go ├── envoyproxy │ ├── go-control-plane │ │ └── envoy │ │ │ ├── LICENSE │ │ │ ├── admin │ │ │ └── v3 │ │ │ │ ├── certs.pb.go │ │ │ │ ├── certs.pb.validate.go │ │ │ │ ├── certs_vtproto.pb.go │ │ │ │ ├── clusters.pb.go │ │ │ │ ├── clusters.pb.validate.go │ │ │ │ ├── clusters_vtproto.pb.go │ │ │ │ ├── config_dump.pb.go │ │ │ │ ├── config_dump.pb.validate.go │ │ │ │ ├── config_dump_shared.pb.go │ │ │ │ ├── config_dump_shared.pb.validate.go │ │ │ │ ├── config_dump_shared_vtproto.pb.go │ │ │ │ ├── config_dump_vtproto.pb.go │ │ │ │ ├── init_dump.pb.go │ │ │ │ ├── init_dump.pb.validate.go │ │ │ │ ├── init_dump_vtproto.pb.go │ │ │ │ ├── listeners.pb.go │ │ │ │ ├── listeners.pb.validate.go │ │ │ │ ├── listeners_vtproto.pb.go │ │ │ │ ├── memory.pb.go │ │ │ │ ├── memory.pb.validate.go │ │ │ │ ├── memory_vtproto.pb.go │ │ │ │ ├── metrics.pb.go │ │ │ │ ├── metrics.pb.validate.go │ │ │ │ ├── metrics_vtproto.pb.go │ │ │ │ ├── mutex_stats.pb.go │ │ │ │ ├── mutex_stats.pb.validate.go │ │ │ │ ├── mutex_stats_vtproto.pb.go │ │ │ │ ├── server_info.pb.go │ │ │ │ ├── server_info.pb.validate.go │ │ │ │ ├── server_info_vtproto.pb.go │ │ │ │ ├── tap.pb.go │ │ │ │ ├── tap.pb.validate.go │ │ │ │ └── tap_vtproto.pb.go │ │ │ ├── annotations │ │ │ ├── deprecation.pb.go │ │ │ ├── deprecation.pb.validate.go │ │ │ ├── resource.pb.go │ │ │ ├── resource.pb.validate.go │ │ │ └── resource_vtproto.pb.go │ │ │ ├── config │ │ │ ├── accesslog │ │ │ │ └── v3 │ │ │ │ │ ├── accesslog.pb.go │ │ │ │ │ ├── accesslog.pb.validate.go │ │ │ │ │ └── accesslog_vtproto.pb.go │ │ │ ├── bootstrap │ │ │ │ └── v3 │ │ │ │ │ ├── bootstrap.pb.go │ │ │ │ │ ├── bootstrap.pb.validate.go │ │ │ │ │ └── bootstrap_vtproto.pb.go │ │ │ ├── cluster │ │ │ │ └── v3 │ │ │ │ │ ├── circuit_breaker.pb.go │ │ │ │ │ ├── circuit_breaker.pb.validate.go │ │ │ │ │ ├── circuit_breaker_vtproto.pb.go │ │ │ │ │ ├── cluster.pb.go │ │ │ │ │ ├── cluster.pb.validate.go │ │ │ │ │ ├── cluster_vtproto.pb.go │ │ │ │ │ ├── filter.pb.go │ │ │ │ │ ├── filter.pb.validate.go │ │ │ │ │ ├── filter_vtproto.pb.go │ │ │ │ │ ├── outlier_detection.pb.go │ │ │ │ │ ├── outlier_detection.pb.validate.go │ │ │ │ │ └── outlier_detection_vtproto.pb.go │ │ │ ├── common │ │ │ │ └── matcher │ │ │ │ │ └── v3 │ │ │ │ │ ├── matcher.pb.go │ │ │ │ │ ├── matcher.pb.validate.go │ │ │ │ │ └── matcher_vtproto.pb.go │ │ │ ├── core │ │ │ │ └── v3 │ │ │ │ │ ├── address.pb.go │ │ │ │ │ ├── address.pb.validate.go │ │ │ │ │ ├── address_vtproto.pb.go │ │ │ │ │ ├── backoff.pb.go │ │ │ │ │ ├── backoff.pb.validate.go │ │ │ │ │ ├── backoff_vtproto.pb.go │ │ │ │ │ ├── base.pb.go │ │ │ │ │ ├── base.pb.validate.go │ │ │ │ │ ├── base_vtproto.pb.go │ │ │ │ │ ├── config_source.pb.go │ │ │ │ │ ├── config_source.pb.validate.go │ │ │ │ │ ├── config_source_vtproto.pb.go │ │ │ │ │ ├── event_service_config.pb.go │ │ │ │ │ ├── event_service_config.pb.validate.go │ │ │ │ │ ├── event_service_config_vtproto.pb.go │ │ │ │ │ ├── extension.pb.go │ │ │ │ │ ├── extension.pb.validate.go │ │ │ │ │ ├── extension_vtproto.pb.go │ │ │ │ │ ├── grpc_method_list.pb.go │ │ │ │ │ ├── grpc_method_list.pb.validate.go │ │ │ │ │ ├── grpc_method_list_vtproto.pb.go │ │ │ │ │ ├── grpc_service.pb.go │ │ │ │ │ ├── grpc_service.pb.validate.go │ │ │ │ │ ├── grpc_service_vtproto.pb.go │ │ │ │ │ ├── health_check.pb.go │ │ │ │ │ ├── health_check.pb.validate.go │ │ │ │ │ ├── health_check_vtproto.pb.go │ │ │ │ │ ├── http_service.pb.go │ │ │ │ │ ├── http_service.pb.validate.go │ │ │ │ │ ├── http_service_vtproto.pb.go │ │ │ │ │ ├── http_uri.pb.go │ │ │ │ │ ├── http_uri.pb.validate.go │ │ │ │ │ ├── http_uri_vtproto.pb.go │ │ │ │ │ ├── protocol.pb.go │ │ │ │ │ ├── protocol.pb.validate.go │ │ │ │ │ ├── protocol_vtproto.pb.go │ │ │ │ │ ├── proxy_protocol.pb.go │ │ │ │ │ ├── proxy_protocol.pb.validate.go │ │ │ │ │ ├── proxy_protocol_vtproto.pb.go │ │ │ │ │ ├── resolver.pb.go │ │ │ │ │ ├── resolver.pb.validate.go │ │ │ │ │ ├── resolver_vtproto.pb.go │ │ │ │ │ ├── socket_cmsg_headers.pb.go │ │ │ │ │ ├── socket_cmsg_headers.pb.validate.go │ │ │ │ │ ├── socket_cmsg_headers_vtproto.pb.go │ │ │ │ │ ├── socket_option.pb.go │ │ │ │ │ ├── socket_option.pb.validate.go │ │ │ │ │ ├── socket_option_vtproto.pb.go │ │ │ │ │ ├── substitution_format_string.pb.go │ │ │ │ │ ├── substitution_format_string.pb.validate.go │ │ │ │ │ ├── substitution_format_string_vtproto.pb.go │ │ │ │ │ ├── udp_socket_config.pb.go │ │ │ │ │ ├── udp_socket_config.pb.validate.go │ │ │ │ │ └── udp_socket_config_vtproto.pb.go │ │ │ ├── endpoint │ │ │ │ └── v3 │ │ │ │ │ ├── endpoint.pb.go │ │ │ │ │ ├── endpoint.pb.validate.go │ │ │ │ │ ├── endpoint_components.pb.go │ │ │ │ │ ├── endpoint_components.pb.validate.go │ │ │ │ │ ├── endpoint_components_vtproto.pb.go │ │ │ │ │ ├── endpoint_vtproto.pb.go │ │ │ │ │ ├── load_report.pb.go │ │ │ │ │ ├── load_report.pb.validate.go │ │ │ │ │ └── load_report_vtproto.pb.go │ │ │ ├── listener │ │ │ │ └── v3 │ │ │ │ │ ├── api_listener.pb.go │ │ │ │ │ ├── api_listener.pb.validate.go │ │ │ │ │ ├── api_listener_vtproto.pb.go │ │ │ │ │ ├── listener.pb.go │ │ │ │ │ ├── listener.pb.validate.go │ │ │ │ │ ├── listener_components.pb.go │ │ │ │ │ ├── listener_components.pb.validate.go │ │ │ │ │ ├── listener_components_vtproto.pb.go │ │ │ │ │ ├── listener_vtproto.pb.go │ │ │ │ │ ├── quic_config.pb.go │ │ │ │ │ ├── quic_config.pb.validate.go │ │ │ │ │ ├── quic_config_vtproto.pb.go │ │ │ │ │ ├── udp_listener_config.pb.go │ │ │ │ │ ├── udp_listener_config.pb.validate.go │ │ │ │ │ └── udp_listener_config_vtproto.pb.go │ │ │ ├── metrics │ │ │ │ └── v3 │ │ │ │ │ ├── metrics_service.pb.go │ │ │ │ │ ├── metrics_service.pb.validate.go │ │ │ │ │ ├── metrics_service_vtproto.pb.go │ │ │ │ │ ├── stats.pb.go │ │ │ │ │ ├── stats.pb.validate.go │ │ │ │ │ └── stats_vtproto.pb.go │ │ │ ├── overload │ │ │ │ └── v3 │ │ │ │ │ ├── overload.pb.go │ │ │ │ │ ├── overload.pb.validate.go │ │ │ │ │ └── overload_vtproto.pb.go │ │ │ ├── rbac │ │ │ │ └── v3 │ │ │ │ │ ├── rbac.pb.go │ │ │ │ │ ├── rbac.pb.validate.go │ │ │ │ │ └── rbac_vtproto.pb.go │ │ │ ├── route │ │ │ │ └── v3 │ │ │ │ │ ├── route.pb.go │ │ │ │ │ ├── route.pb.validate.go │ │ │ │ │ ├── route_components.pb.go │ │ │ │ │ ├── route_components.pb.validate.go │ │ │ │ │ ├── route_components_vtproto.pb.go │ │ │ │ │ ├── route_vtproto.pb.go │ │ │ │ │ ├── scoped_route.pb.go │ │ │ │ │ ├── scoped_route.pb.validate.go │ │ │ │ │ └── scoped_route_vtproto.pb.go │ │ │ ├── tap │ │ │ │ └── v3 │ │ │ │ │ ├── common.pb.go │ │ │ │ │ ├── common.pb.validate.go │ │ │ │ │ └── common_vtproto.pb.go │ │ │ └── trace │ │ │ │ └── v3 │ │ │ │ ├── datadog.pb.go │ │ │ │ ├── datadog.pb.validate.go │ │ │ │ ├── datadog_vtproto.pb.go │ │ │ │ ├── dynamic_ot.pb.go │ │ │ │ ├── dynamic_ot.pb.validate.go │ │ │ │ ├── dynamic_ot_vtproto.pb.go │ │ │ │ ├── http_tracer.pb.go │ │ │ │ ├── http_tracer.pb.validate.go │ │ │ │ ├── http_tracer_vtproto.pb.go │ │ │ │ ├── lightstep.pb.go │ │ │ │ ├── lightstep.pb.validate.go │ │ │ │ ├── lightstep_vtproto.pb.go │ │ │ │ ├── opentelemetry.pb.go │ │ │ │ ├── opentelemetry.pb.validate.go │ │ │ │ ├── opentelemetry_vtproto.pb.go │ │ │ │ ├── service.pb.go │ │ │ │ ├── service.pb.validate.go │ │ │ │ ├── service_vtproto.pb.go │ │ │ │ ├── skywalking.pb.go │ │ │ │ ├── skywalking.pb.validate.go │ │ │ │ ├── skywalking_vtproto.pb.go │ │ │ │ ├── trace.pb.go │ │ │ │ ├── trace.pb.validate.go │ │ │ │ ├── xray.pb.go │ │ │ │ ├── xray.pb.validate.go │ │ │ │ ├── xray_vtproto.pb.go │ │ │ │ ├── zipkin.pb.go │ │ │ │ ├── zipkin.pb.validate.go │ │ │ │ └── zipkin_vtproto.pb.go │ │ │ ├── data │ │ │ └── accesslog │ │ │ │ └── v3 │ │ │ │ ├── accesslog.pb.go │ │ │ │ ├── accesslog.pb.validate.go │ │ │ │ └── accesslog_vtproto.pb.go │ │ │ ├── extensions │ │ │ ├── clusters │ │ │ │ └── aggregate │ │ │ │ │ └── v3 │ │ │ │ │ ├── cluster.pb.go │ │ │ │ │ ├── cluster.pb.validate.go │ │ │ │ │ └── cluster_vtproto.pb.go │ │ │ ├── filters │ │ │ │ ├── common │ │ │ │ │ └── fault │ │ │ │ │ │ └── v3 │ │ │ │ │ │ ├── fault.pb.go │ │ │ │ │ │ ├── fault.pb.validate.go │ │ │ │ │ │ └── fault_vtproto.pb.go │ │ │ │ ├── http │ │ │ │ │ ├── fault │ │ │ │ │ │ └── v3 │ │ │ │ │ │ │ ├── fault.pb.go │ │ │ │ │ │ │ ├── fault.pb.validate.go │ │ │ │ │ │ │ └── fault_vtproto.pb.go │ │ │ │ │ ├── rbac │ │ │ │ │ │ └── v3 │ │ │ │ │ │ │ ├── rbac.pb.go │ │ │ │ │ │ │ ├── rbac.pb.validate.go │ │ │ │ │ │ │ └── rbac_vtproto.pb.go │ │ │ │ │ └── router │ │ │ │ │ │ └── v3 │ │ │ │ │ │ ├── router.pb.go │ │ │ │ │ │ ├── router.pb.validate.go │ │ │ │ │ │ └── router_vtproto.pb.go │ │ │ │ └── network │ │ │ │ │ └── http_connection_manager │ │ │ │ │ └── v3 │ │ │ │ │ ├── http_connection_manager.pb.go │ │ │ │ │ ├── http_connection_manager.pb.validate.go │ │ │ │ │ └── http_connection_manager_vtproto.pb.go │ │ │ ├── load_balancing_policies │ │ │ │ ├── client_side_weighted_round_robin │ │ │ │ │ └── v3 │ │ │ │ │ │ ├── client_side_weighted_round_robin.pb.go │ │ │ │ │ │ ├── client_side_weighted_round_robin.pb.validate.go │ │ │ │ │ │ └── client_side_weighted_round_robin_vtproto.pb.go │ │ │ │ ├── common │ │ │ │ │ └── v3 │ │ │ │ │ │ ├── common.pb.go │ │ │ │ │ │ ├── common.pb.validate.go │ │ │ │ │ │ └── common_vtproto.pb.go │ │ │ │ ├── least_request │ │ │ │ │ └── v3 │ │ │ │ │ │ ├── least_request.pb.go │ │ │ │ │ │ ├── least_request.pb.validate.go │ │ │ │ │ │ └── least_request_vtproto.pb.go │ │ │ │ ├── pick_first │ │ │ │ │ └── v3 │ │ │ │ │ │ ├── pick_first.pb.go │ │ │ │ │ │ ├── pick_first.pb.validate.go │ │ │ │ │ │ └── pick_first_vtproto.pb.go │ │ │ │ ├── ring_hash │ │ │ │ │ └── v3 │ │ │ │ │ │ ├── ring_hash.pb.go │ │ │ │ │ │ ├── ring_hash.pb.validate.go │ │ │ │ │ │ └── ring_hash_vtproto.pb.go │ │ │ │ └── wrr_locality │ │ │ │ │ └── v3 │ │ │ │ │ ├── wrr_locality.pb.go │ │ │ │ │ ├── wrr_locality.pb.validate.go │ │ │ │ │ └── wrr_locality_vtproto.pb.go │ │ │ ├── rbac │ │ │ │ └── audit_loggers │ │ │ │ │ └── stream │ │ │ │ │ └── v3 │ │ │ │ │ ├── stream.pb.go │ │ │ │ │ ├── stream.pb.validate.go │ │ │ │ │ └── stream_vtproto.pb.go │ │ │ └── transport_sockets │ │ │ │ └── tls │ │ │ │ └── v3 │ │ │ │ ├── cert.pb.go │ │ │ │ ├── cert.pb.validate.go │ │ │ │ ├── common.pb.go │ │ │ │ ├── common.pb.validate.go │ │ │ │ ├── common_vtproto.pb.go │ │ │ │ ├── secret.pb.go │ │ │ │ ├── secret.pb.validate.go │ │ │ │ ├── secret_vtproto.pb.go │ │ │ │ ├── tls.pb.go │ │ │ │ ├── tls.pb.validate.go │ │ │ │ ├── tls_spiffe_validator_config.pb.go │ │ │ │ ├── tls_spiffe_validator_config.pb.validate.go │ │ │ │ ├── tls_spiffe_validator_config_vtproto.pb.go │ │ │ │ └── tls_vtproto.pb.go │ │ │ ├── service │ │ │ ├── discovery │ │ │ │ └── v3 │ │ │ │ │ ├── ads.pb.go │ │ │ │ │ ├── ads.pb.validate.go │ │ │ │ │ ├── ads_grpc.pb.go │ │ │ │ │ ├── ads_vtproto.pb.go │ │ │ │ │ ├── discovery.pb.go │ │ │ │ │ ├── discovery.pb.validate.go │ │ │ │ │ └── discovery_vtproto.pb.go │ │ │ ├── load_stats │ │ │ │ └── v3 │ │ │ │ │ ├── lrs.pb.go │ │ │ │ │ ├── lrs.pb.validate.go │ │ │ │ │ ├── lrs_grpc.pb.go │ │ │ │ │ └── lrs_vtproto.pb.go │ │ │ └── status │ │ │ │ └── v3 │ │ │ │ ├── csds.pb.go │ │ │ │ ├── csds.pb.validate.go │ │ │ │ ├── csds_grpc.pb.go │ │ │ │ └── csds_vtproto.pb.go │ │ │ └── type │ │ │ ├── http │ │ │ └── v3 │ │ │ │ ├── cookie.pb.go │ │ │ │ ├── cookie.pb.validate.go │ │ │ │ ├── cookie_vtproto.pb.go │ │ │ │ ├── path_transformation.pb.go │ │ │ │ ├── path_transformation.pb.validate.go │ │ │ │ └── path_transformation_vtproto.pb.go │ │ │ ├── matcher │ │ │ └── v3 │ │ │ │ ├── address.pb.go │ │ │ │ ├── address.pb.validate.go │ │ │ │ ├── address_vtproto.pb.go │ │ │ │ ├── filter_state.pb.go │ │ │ │ ├── filter_state.pb.validate.go │ │ │ │ ├── filter_state_vtproto.pb.go │ │ │ │ ├── http_inputs.pb.go │ │ │ │ ├── http_inputs.pb.validate.go │ │ │ │ ├── http_inputs_vtproto.pb.go │ │ │ │ ├── metadata.pb.go │ │ │ │ ├── metadata.pb.validate.go │ │ │ │ ├── metadata_vtproto.pb.go │ │ │ │ ├── node.pb.go │ │ │ │ ├── node.pb.validate.go │ │ │ │ ├── node_vtproto.pb.go │ │ │ │ ├── number.pb.go │ │ │ │ ├── number.pb.validate.go │ │ │ │ ├── number_vtproto.pb.go │ │ │ │ ├── path.pb.go │ │ │ │ ├── path.pb.validate.go │ │ │ │ ├── path_vtproto.pb.go │ │ │ │ ├── regex.pb.go │ │ │ │ ├── regex.pb.validate.go │ │ │ │ ├── regex_vtproto.pb.go │ │ │ │ ├── status_code_input.pb.go │ │ │ │ ├── status_code_input.pb.validate.go │ │ │ │ ├── status_code_input_vtproto.pb.go │ │ │ │ ├── string.pb.go │ │ │ │ ├── string.pb.validate.go │ │ │ │ ├── string_vtproto.pb.go │ │ │ │ ├── struct.pb.go │ │ │ │ ├── struct.pb.validate.go │ │ │ │ ├── struct_vtproto.pb.go │ │ │ │ ├── value.pb.go │ │ │ │ ├── value.pb.validate.go │ │ │ │ └── value_vtproto.pb.go │ │ │ ├── metadata │ │ │ └── v3 │ │ │ │ ├── metadata.pb.go │ │ │ │ ├── metadata.pb.validate.go │ │ │ │ └── metadata_vtproto.pb.go │ │ │ ├── tracing │ │ │ └── v3 │ │ │ │ ├── custom_tag.pb.go │ │ │ │ ├── custom_tag.pb.validate.go │ │ │ │ └── custom_tag_vtproto.pb.go │ │ │ └── v3 │ │ │ ├── hash_policy.pb.go │ │ │ ├── hash_policy.pb.validate.go │ │ │ ├── hash_policy_vtproto.pb.go │ │ │ ├── http.pb.go │ │ │ ├── http.pb.validate.go │ │ │ ├── http_status.pb.go │ │ │ ├── http_status.pb.validate.go │ │ │ ├── http_status_vtproto.pb.go │ │ │ ├── percent.pb.go │ │ │ ├── percent.pb.validate.go │ │ │ ├── percent_vtproto.pb.go │ │ │ ├── range.pb.go │ │ │ ├── range.pb.validate.go │ │ │ ├── range_vtproto.pb.go │ │ │ ├── ratelimit_strategy.pb.go │ │ │ ├── ratelimit_strategy.pb.validate.go │ │ │ ├── ratelimit_strategy_vtproto.pb.go │ │ │ ├── ratelimit_unit.pb.go │ │ │ ├── ratelimit_unit.pb.validate.go │ │ │ ├── semantic_version.pb.go │ │ │ ├── semantic_version.pb.validate.go │ │ │ ├── semantic_version_vtproto.pb.go │ │ │ ├── token_bucket.pb.go │ │ │ ├── token_bucket.pb.validate.go │ │ │ └── token_bucket_vtproto.pb.go │ └── protoc-gen-validate │ │ ├── LICENSE │ │ └── validate │ │ ├── BUILD │ │ ├── validate.h │ │ ├── validate.pb.go │ │ └── validate.proto ├── facette │ └── natsort │ │ ├── LICENSE │ │ ├── README.md │ │ └── natsort.go ├── failsafe-go │ └── failsafe-go │ │ ├── CHANGELOG.md │ │ ├── CONTRIBUTING.md │ │ ├── LICENSE │ │ ├── Makefile │ │ ├── README.md │ │ ├── VERSIONING.md │ │ ├── adaptivelimiter │ │ ├── adaptiveexecutor.go │ │ ├── adaptivelimiter.go │ │ ├── doc.go │ │ ├── prioritizer.go │ │ ├── prioritylimiter.go │ │ └── queueinglimiter.go │ │ ├── budget │ │ ├── budget.go │ │ └── doc.go │ │ ├── circuitbreaker │ │ ├── circuitbreaker.go │ │ ├── circuitbreakerbuilder.go │ │ ├── circuitbreakerexecutor.go │ │ ├── circuitstates.go │ │ └── doc.go │ │ ├── codecov.yml │ │ ├── common │ │ ├── doc.go │ │ └── result.go │ │ ├── doc.go │ │ ├── events.go │ │ ├── execution.go │ │ ├── executor.go │ │ ├── internal │ │ ├── budget.go │ │ ├── execution.go │ │ ├── prioritizer.go │ │ └── util │ │ │ ├── assert.go │ │ │ ├── ewma.go │ │ │ ├── median.go │ │ │ ├── semaphore.go │ │ │ ├── stats.go │ │ │ ├── util.go │ │ │ └── windows.go │ │ ├── policy.go │ │ ├── policy │ │ ├── doc.go │ │ ├── execution.go │ │ ├── policy.go │ │ └── policyexecutor.go │ │ ├── priority │ │ ├── doc.go │ │ ├── prioritizer.go │ │ ├── priority.go │ │ └── usage.go │ │ └── result.go ├── fatih │ └── color │ │ ├── LICENSE.md │ │ ├── README.md │ │ ├── color.go │ │ ├── color_windows.go │ │ └── doc.go ├── felixge │ ├── fgprof │ │ ├── BenchmarkProfilerGoroutines.txt │ │ ├── LICENSE.txt │ │ ├── README.md │ │ ├── fgprof.go │ │ └── handler.go │ └── httpsnoop │ │ ├── .gitignore │ │ ├── LICENSE.txt │ │ ├── Makefile │ │ ├── README.md │ │ ├── capture_metrics.go │ │ ├── docs.go │ │ ├── wrap_generated_gteq_1.8.go │ │ └── wrap_generated_lt_1.8.go ├── fsnotify │ └── fsnotify │ │ ├── .cirrus.yml │ │ ├── .gitignore │ │ ├── .mailmap │ │ ├── CHANGELOG.md │ │ ├── CONTRIBUTING.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── backend_fen.go │ │ ├── backend_inotify.go │ │ ├── backend_kqueue.go │ │ ├── backend_other.go │ │ ├── backend_windows.go │ │ ├── fsnotify.go │ │ ├── internal │ │ ├── darwin.go │ │ ├── debug_darwin.go │ │ ├── debug_dragonfly.go │ │ ├── debug_freebsd.go │ │ ├── debug_kqueue.go │ │ ├── debug_linux.go │ │ ├── debug_netbsd.go │ │ ├── debug_openbsd.go │ │ ├── debug_solaris.go │ │ ├── debug_windows.go │ │ ├── freebsd.go │ │ ├── internal.go │ │ ├── unix.go │ │ ├── unix2.go │ │ └── windows.go │ │ ├── shared.go │ │ ├── staticcheck.conf │ │ ├── system_bsd.go │ │ └── system_darwin.go ├── go-errors │ └── errors │ │ ├── .travis.yml │ │ ├── LICENSE.MIT │ │ ├── README.md │ │ ├── error.go │ │ ├── error_1_13.go │ │ ├── error_backward.go │ │ ├── parse_panic.go │ │ └── stackframe.go ├── go-ini │ └── ini │ │ ├── .editorconfig │ │ ├── .gitignore │ │ ├── .golangci.yml │ │ ├── LICENSE │ │ ├── Makefile │ │ ├── README.md │ │ ├── codecov.yml │ │ ├── data_source.go │ │ ├── deprecated.go │ │ ├── error.go │ │ ├── file.go │ │ ├── helper.go │ │ ├── ini.go │ │ ├── key.go │ │ ├── parser.go │ │ ├── section.go │ │ └── struct.go ├── go-jose │ └── go-jose │ │ └── v4 │ │ ├── .gitignore │ │ ├── .golangci.yml │ │ ├── .travis.yml │ │ ├── CONTRIBUTING.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── SECURITY.md │ │ ├── asymmetric.go │ │ ├── cipher │ │ ├── cbc_hmac.go │ │ ├── concat_kdf.go │ │ ├── ecdh_es.go │ │ └── key_wrap.go │ │ ├── crypter.go │ │ ├── doc.go │ │ ├── encoding.go │ │ ├── json │ │ ├── LICENSE │ │ ├── README.md │ │ ├── decode.go │ │ ├── encode.go │ │ ├── indent.go │ │ ├── scanner.go │ │ ├── stream.go │ │ └── tags.go │ │ ├── jwe.go │ │ ├── jwk.go │ │ ├── jws.go │ │ ├── jwt │ │ ├── builder.go │ │ ├── claims.go │ │ ├── doc.go │ │ ├── errors.go │ │ ├── jwt.go │ │ └── validation.go │ │ ├── opaque.go │ │ ├── shared.go │ │ ├── signing.go │ │ └── symmetric.go ├── go-kit │ └── log │ │ ├── .gitignore │ │ ├── LICENSE │ │ ├── README.md │ │ ├── doc.go │ │ ├── json_logger.go │ │ ├── level │ │ ├── doc.go │ │ └── level.go │ │ ├── log.go │ │ ├── logfmt_logger.go │ │ ├── nop_logger.go │ │ ├── staticcheck.conf │ │ ├── stdlib.go │ │ ├── sync.go │ │ └── value.go ├── go-logfmt │ └── logfmt │ │ ├── .gitignore │ │ ├── CHANGELOG.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── decode.go │ │ ├── doc.go │ │ ├── encode.go │ │ └── jsonstring.go ├── go-logr │ ├── logr │ │ ├── .golangci.yaml │ │ ├── CHANGELOG.md │ │ ├── CONTRIBUTING.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── SECURITY.md │ │ ├── context.go │ │ ├── context_noslog.go │ │ ├── context_slog.go │ │ ├── discard.go │ │ ├── funcr │ │ │ ├── funcr.go │ │ │ └── slogsink.go │ │ ├── logr.go │ │ ├── sloghandler.go │ │ ├── slogr.go │ │ └── slogsink.go │ └── stdr │ │ ├── LICENSE │ │ ├── README.md │ │ └── stdr.go ├── go-ole │ └── go-ole │ │ ├── .travis.yml │ │ ├── ChangeLog.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── appveyor.yml │ │ ├── com.go │ │ ├── com_func.go │ │ ├── connect.go │ │ ├── constants.go │ │ ├── error.go │ │ ├── error_func.go │ │ ├── error_windows.go │ │ ├── guid.go │ │ ├── iconnectionpoint.go │ │ ├── iconnectionpoint_func.go │ │ ├── iconnectionpoint_windows.go │ │ ├── iconnectionpointcontainer.go │ │ ├── iconnectionpointcontainer_func.go │ │ ├── iconnectionpointcontainer_windows.go │ │ ├── idispatch.go │ │ ├── idispatch_func.go │ │ ├── idispatch_windows.go │ │ ├── ienumvariant.go │ │ ├── ienumvariant_func.go │ │ ├── ienumvariant_windows.go │ │ ├── iinspectable.go │ │ ├── iinspectable_func.go │ │ ├── iinspectable_windows.go │ │ ├── iprovideclassinfo.go │ │ ├── iprovideclassinfo_func.go │ │ ├── iprovideclassinfo_windows.go │ │ ├── itypeinfo.go │ │ ├── itypeinfo_func.go │ │ ├── itypeinfo_windows.go │ │ ├── iunknown.go │ │ ├── iunknown_func.go │ │ ├── iunknown_windows.go │ │ ├── ole.go │ │ ├── oleutil │ │ ├── connection.go │ │ ├── connection_func.go │ │ ├── connection_windows.go │ │ ├── go-get.go │ │ └── oleutil.go │ │ ├── safearray.go │ │ ├── safearray_func.go │ │ ├── safearray_windows.go │ │ ├── safearrayconversion.go │ │ ├── safearrayslices.go │ │ ├── utility.go │ │ ├── variables.go │ │ ├── variant.go │ │ ├── variant_386.go │ │ ├── variant_amd64.go │ │ ├── variant_arm.go │ │ ├── variant_arm64.go │ │ ├── variant_date_386.go │ │ ├── variant_date_amd64.go │ │ ├── variant_date_arm.go │ │ ├── variant_date_arm64.go │ │ ├── variant_ppc64le.go │ │ ├── variant_s390x.go │ │ ├── vt_string.go │ │ ├── winrt.go │ │ └── winrt_doc.go ├── go-openapi │ ├── analysis │ │ ├── .codecov.yml │ │ ├── .gitattributes │ │ ├── .gitignore │ │ ├── .golangci.yml │ │ ├── CODE_OF_CONDUCT.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── analyzer.go │ │ ├── debug.go │ │ ├── doc.go │ │ ├── fixer.go │ │ ├── flatten.go │ │ ├── flatten_name.go │ │ ├── flatten_options.go │ │ ├── internal │ │ │ ├── debug │ │ │ │ └── debug.go │ │ │ └── flatten │ │ │ │ ├── normalize │ │ │ │ └── normalize.go │ │ │ │ ├── operations │ │ │ │ └── operations.go │ │ │ │ ├── replace │ │ │ │ └── replace.go │ │ │ │ ├── schutils │ │ │ │ └── flatten_schema.go │ │ │ │ └── sortref │ │ │ │ ├── keys.go │ │ │ │ └── sort_ref.go │ │ ├── mixin.go │ │ └── schema.go │ ├── errors │ │ ├── .gitattributes │ │ ├── .gitignore │ │ ├── .golangci.yml │ │ ├── CODE_OF_CONDUCT.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── api.go │ │ ├── auth.go │ │ ├── doc.go │ │ ├── headers.go │ │ ├── middleware.go │ │ ├── parsing.go │ │ └── schema.go │ ├── jsonpointer │ │ ├── .editorconfig │ │ ├── .gitignore │ │ ├── .golangci.yml │ │ ├── CODE_OF_CONDUCT.md │ │ ├── LICENSE │ │ ├── README.md │ │ └── pointer.go │ ├── jsonreference │ │ ├── .gitignore │ │ ├── .golangci.yml │ │ ├── CODE_OF_CONDUCT.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── internal │ │ │ └── normalize_url.go │ │ └── reference.go │ ├── loads │ │ ├── .editorconfig │ │ ├── .gitignore │ │ ├── .golangci.yml │ │ ├── .travis.yml │ │ ├── CODE_OF_CONDUCT.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── doc.go │ │ ├── loaders.go │ │ ├── options.go │ │ └── spec.go │ ├── runtime │ │ ├── .editorconfig │ │ ├── .gitattributes │ │ ├── .gitignore │ │ ├── .golangci.yml │ │ ├── CODE_OF_CONDUCT.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── bytestream.go │ │ ├── client_auth_info.go │ │ ├── client_operation.go │ │ ├── client_request.go │ │ ├── client_response.go │ │ ├── constants.go │ │ ├── csv.go │ │ ├── csv_options.go │ │ ├── discard.go │ │ ├── file.go │ │ ├── flagext │ │ │ └── byte_size.go │ │ ├── headers.go │ │ ├── interfaces.go │ │ ├── json.go │ │ ├── logger │ │ │ ├── logger.go │ │ │ └── standard.go │ │ ├── middleware │ │ │ ├── context.go │ │ │ ├── denco │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── router.go │ │ │ │ ├── server.go │ │ │ │ └── util.go │ │ │ ├── doc.go │ │ │ ├── header │ │ │ │ └── header.go │ │ │ ├── negotiate.go │ │ │ ├── not_implemented.go │ │ │ ├── operation.go │ │ │ ├── parameter.go │ │ │ ├── rapidoc.go │ │ │ ├── redoc.go │ │ │ ├── request.go │ │ │ ├── router.go │ │ │ ├── security.go │ │ │ ├── spec.go │ │ │ ├── swaggerui.go │ │ │ ├── swaggerui_oauth2.go │ │ │ ├── ui_options.go │ │ │ ├── untyped │ │ │ │ └── api.go │ │ │ └── validation.go │ │ ├── request.go │ │ ├── security │ │ │ ├── authenticator.go │ │ │ └── authorizer.go │ │ ├── statuses.go │ │ ├── text.go │ │ ├── values.go │ │ └── xml.go │ ├── spec │ │ ├── .editorconfig │ │ ├── .gitignore │ │ ├── .golangci.yml │ │ ├── CODE_OF_CONDUCT.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── cache.go │ │ ├── contact_info.go │ │ ├── debug.go │ │ ├── embed.go │ │ ├── errors.go │ │ ├── expander.go │ │ ├── external_docs.go │ │ ├── header.go │ │ ├── info.go │ │ ├── items.go │ │ ├── license.go │ │ ├── normalizer.go │ │ ├── normalizer_nonwindows.go │ │ ├── normalizer_windows.go │ │ ├── operation.go │ │ ├── parameter.go │ │ ├── path_item.go │ │ ├── paths.go │ │ ├── properties.go │ │ ├── ref.go │ │ ├── resolver.go │ │ ├── response.go │ │ ├── responses.go │ │ ├── schema.go │ │ ├── schema_loader.go │ │ ├── schemas │ │ │ ├── jsonschema-draft-04.json │ │ │ └── v2 │ │ │ │ └── schema.json │ │ ├── security_scheme.go │ │ ├── spec.go │ │ ├── swagger.go │ │ ├── tag.go │ │ ├── url_go19.go │ │ ├── validations.go │ │ └── xml_object.go │ ├── strfmt │ │ ├── .editorconfig │ │ ├── .gitattributes │ │ ├── .gitignore │ │ ├── .golangci.yml │ │ ├── CODE_OF_CONDUCT.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── bson.go │ │ ├── date.go │ │ ├── default.go │ │ ├── doc.go │ │ ├── duration.go │ │ ├── errors.go │ │ ├── format.go │ │ ├── ifaces.go │ │ ├── mongo.go │ │ ├── time.go │ │ └── ulid.go │ ├── swag │ │ ├── .codecov.yml │ │ ├── .editorconfig │ │ ├── .gitattributes │ │ ├── .gitignore │ │ ├── .golangci.yml │ │ ├── .mockery.yml │ │ ├── CODE_OF_CONDUCT.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── TODO.md │ │ ├── cmdutils │ │ │ ├── LICENSE │ │ │ ├── cmd_utils.go │ │ │ └── doc.go │ │ ├── cmdutils_iface.go │ │ ├── conv │ │ │ ├── LICENSE │ │ │ ├── convert.go │ │ │ ├── convert_types.go │ │ │ ├── doc.go │ │ │ ├── format.go │ │ │ ├── sizeof.go │ │ │ └── type_constraints.go │ │ ├── conv_iface.go │ │ ├── doc.go │ │ ├── fileutils │ │ │ ├── LICENSE │ │ │ ├── doc.go │ │ │ ├── file.go │ │ │ └── path.go │ │ ├── fileutils_iface.go │ │ ├── go.work │ │ ├── go.work.sum │ │ ├── jsonname │ │ │ ├── LICENSE │ │ │ ├── doc.go │ │ │ └── name_provider.go │ │ ├── jsonname_iface.go │ │ ├── jsonutils │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── adapters │ │ │ │ ├── doc.go │ │ │ │ ├── ifaces │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── ifaces.go │ │ │ │ │ └── registry_iface.go │ │ │ │ ├── registry.go │ │ │ │ └── stdlib │ │ │ │ │ └── json │ │ │ │ │ ├── adapter.go │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── lexer.go │ │ │ │ │ ├── ordered_map.go │ │ │ │ │ ├── pool.go │ │ │ │ │ ├── register.go │ │ │ │ │ └── writer.go │ │ │ ├── concat.go │ │ │ ├── doc.go │ │ │ ├── json.go │ │ │ └── ordered_map.go │ │ ├── jsonutils_iface.go │ │ ├── loading │ │ │ ├── LICENSE │ │ │ ├── doc.go │ │ │ ├── errors.go │ │ │ ├── json.go │ │ │ ├── loading.go │ │ │ ├── options.go │ │ │ └── yaml.go │ │ ├── loading_iface.go │ │ ├── mangling │ │ │ ├── BENCHMARK.md │ │ │ ├── LICENSE │ │ │ ├── doc.go │ │ │ ├── initialism_index.go │ │ │ ├── name_lexem.go │ │ │ ├── name_mangler.go │ │ │ ├── options.go │ │ │ ├── pools.go │ │ │ ├── split.go │ │ │ ├── string_bytes.go │ │ │ └── util.go │ │ ├── mangling_iface.go │ │ ├── netutils │ │ │ ├── LICENSE │ │ │ ├── doc.go │ │ │ └── net.go │ │ ├── netutils_iface.go │ │ ├── stringutils │ │ │ ├── LICENSE │ │ │ ├── collection_formats.go │ │ │ ├── doc.go │ │ │ └── strings.go │ │ ├── stringutils_iface.go │ │ ├── typeutils │ │ │ ├── LICENSE │ │ │ ├── doc.go │ │ │ └── types.go │ │ ├── typeutils_iface.go │ │ ├── yamlutils │ │ │ ├── LICENSE │ │ │ ├── doc.go │ │ │ ├── errors.go │ │ │ ├── ordered_map.go │ │ │ └── yaml.go │ │ └── yamlutils_iface.go │ └── validate │ │ ├── .editorconfig │ │ ├── .gitattributes │ │ ├── .gitignore │ │ ├── .golangci.yml │ │ ├── BENCHMARK.md │ │ ├── CODE_OF_CONDUCT.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── context.go │ │ ├── debug.go │ │ ├── default_validator.go │ │ ├── doc.go │ │ ├── example_validator.go │ │ ├── formats.go │ │ ├── helpers.go │ │ ├── object_validator.go │ │ ├── options.go │ │ ├── pools.go │ │ ├── pools_debug.go │ │ ├── result.go │ │ ├── rexp.go │ │ ├── schema.go │ │ ├── schema_messages.go │ │ ├── schema_option.go │ │ ├── schema_props.go │ │ ├── slice_validator.go │ │ ├── spec.go │ │ ├── spec_messages.go │ │ ├── type.go │ │ ├── update-fixtures.sh │ │ ├── validator.go │ │ └── values.go ├── go-viper │ └── mapstructure │ │ └── v2 │ │ ├── .editorconfig │ │ ├── .envrc │ │ ├── .gitignore │ │ ├── .golangci.yaml │ │ ├── CHANGELOG.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── decode_hooks.go │ │ ├── errors.go │ │ ├── flake.lock │ │ ├── flake.nix │ │ ├── internal │ │ └── errors │ │ │ ├── errors.go │ │ │ ├── join.go │ │ │ └── join_go1_19.go │ │ ├── mapstructure.go │ │ ├── reflect_go1_19.go │ │ └── reflect_go1_20.go ├── gobwas │ └── glob │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── LICENSE │ │ ├── bench.sh │ │ ├── compiler │ │ └── compiler.go │ │ ├── glob.go │ │ ├── match │ │ ├── any.go │ │ ├── any_of.go │ │ ├── btree.go │ │ ├── contains.go │ │ ├── every_of.go │ │ ├── list.go │ │ ├── match.go │ │ ├── max.go │ │ ├── min.go │ │ ├── nothing.go │ │ ├── prefix.go │ │ ├── prefix_any.go │ │ ├── prefix_suffix.go │ │ ├── range.go │ │ ├── row.go │ │ ├── segments.go │ │ ├── single.go │ │ ├── suffix.go │ │ ├── suffix_any.go │ │ ├── super.go │ │ └── text.go │ │ ├── readme.md │ │ ├── syntax │ │ ├── ast │ │ │ ├── ast.go │ │ │ └── parser.go │ │ ├── lexer │ │ │ ├── lexer.go │ │ │ └── token.go │ │ └── syntax.go │ │ └── util │ │ ├── runes │ │ └── runes.go │ │ └── strings │ │ └── strings.go ├── gofrs │ └── uuid │ │ ├── .gitignore │ │ ├── LICENSE │ │ ├── README.md │ │ ├── codec.go │ │ ├── fuzz.go │ │ ├── generator.go │ │ ├── sql.go │ │ └── uuid.go ├── gogo │ ├── googleapis │ │ ├── LICENSE │ │ └── google │ │ │ ├── api │ │ │ ├── annotations.pb.go │ │ │ ├── annotations.proto │ │ │ ├── client.pb.go │ │ │ ├── client.proto │ │ │ ├── http.pb.go │ │ │ ├── http.proto │ │ │ ├── httpbody.pb.go │ │ │ └── httpbody.proto │ │ │ └── rpc │ │ │ ├── code.pb.go │ │ │ ├── code.proto │ │ │ ├── error_details.pb.go │ │ │ ├── error_details.proto │ │ │ ├── status.pb.go │ │ │ └── status.proto │ ├── protobuf │ │ ├── AUTHORS │ │ ├── CONTRIBUTORS │ │ ├── LICENSE │ │ ├── gogoproto │ │ │ ├── Makefile │ │ │ ├── doc.go │ │ │ ├── gogo.pb.go │ │ │ ├── gogo.pb.golden │ │ │ ├── gogo.proto │ │ │ └── helper.go │ │ ├── jsonpb │ │ │ └── jsonpb.go │ │ ├── proto │ │ │ ├── Makefile │ │ │ ├── clone.go │ │ │ ├── custom_gogo.go │ │ │ ├── decode.go │ │ │ ├── deprecated.go │ │ │ ├── discard.go │ │ │ ├── duration.go │ │ │ ├── duration_gogo.go │ │ │ ├── encode.go │ │ │ ├── encode_gogo.go │ │ │ ├── equal.go │ │ │ ├── extensions.go │ │ │ ├── extensions_gogo.go │ │ │ ├── lib.go │ │ │ ├── lib_gogo.go │ │ │ ├── message_set.go │ │ │ ├── pointer_reflect.go │ │ │ ├── pointer_reflect_gogo.go │ │ │ ├── pointer_unsafe.go │ │ │ ├── pointer_unsafe_gogo.go │ │ │ ├── properties.go │ │ │ ├── properties_gogo.go │ │ │ ├── skip_gogo.go │ │ │ ├── table_marshal.go │ │ │ ├── table_marshal_gogo.go │ │ │ ├── table_merge.go │ │ │ ├── table_unmarshal.go │ │ │ ├── table_unmarshal_gogo.go │ │ │ ├── text.go │ │ │ ├── text_gogo.go │ │ │ ├── text_parser.go │ │ │ ├── timestamp.go │ │ │ ├── timestamp_gogo.go │ │ │ ├── wrappers.go │ │ │ └── wrappers_gogo.go │ │ ├── protoc-gen-gogo │ │ │ └── descriptor │ │ │ │ ├── Makefile │ │ │ │ ├── descriptor.go │ │ │ │ ├── descriptor.pb.go │ │ │ │ ├── descriptor_gostring.gen.go │ │ │ │ └── helper.go │ │ ├── sortkeys │ │ │ └── sortkeys.go │ │ └── types │ │ │ ├── any.go │ │ │ ├── any.pb.go │ │ │ ├── api.pb.go │ │ │ ├── doc.go │ │ │ ├── duration.go │ │ │ ├── duration.pb.go │ │ │ ├── duration_gogo.go │ │ │ ├── empty.pb.go │ │ │ ├── field_mask.pb.go │ │ │ ├── protosize.go │ │ │ ├── source_context.pb.go │ │ │ ├── struct.pb.go │ │ │ ├── timestamp.go │ │ │ ├── timestamp.pb.go │ │ │ ├── timestamp_gogo.go │ │ │ ├── type.pb.go │ │ │ ├── wrappers.pb.go │ │ │ └── wrappers_gogo.go │ └── status │ │ ├── .gitignore │ │ ├── LICENSE │ │ ├── README.md │ │ └── status.go ├── golang-jwt │ └── jwt │ │ └── v5 │ │ ├── .gitignore │ │ ├── LICENSE │ │ ├── MIGRATION_GUIDE.md │ │ ├── README.md │ │ ├── SECURITY.md │ │ ├── VERSION_HISTORY.md │ │ ├── claims.go │ │ ├── doc.go │ │ ├── ecdsa.go │ │ ├── ecdsa_utils.go │ │ ├── ed25519.go │ │ ├── ed25519_utils.go │ │ ├── errors.go │ │ ├── hmac.go │ │ ├── map_claims.go │ │ ├── none.go │ │ ├── parser.go │ │ ├── parser_option.go │ │ ├── registered_claims.go │ │ ├── rsa.go │ │ ├── rsa_pss.go │ │ ├── rsa_utils.go │ │ ├── signing_method.go │ │ ├── staticcheck.conf │ │ ├── token.go │ │ ├── token_option.go │ │ ├── types.go │ │ └── validator.go ├── golang │ ├── glog │ │ ├── LICENSE │ │ ├── README.md │ │ ├── glog.go │ │ ├── glog_file.go │ │ ├── glog_file_linux.go │ │ ├── glog_file_nonwindows.go │ │ ├── glog_file_other.go │ │ ├── glog_file_posix.go │ │ ├── glog_file_windows.go │ │ ├── glog_flags.go │ │ └── internal │ │ │ ├── logsink │ │ │ ├── logsink.go │ │ │ └── logsink_fatal.go │ │ │ └── stackdump │ │ │ └── stackdump.go │ ├── groupcache │ │ ├── LICENSE │ │ └── singleflight │ │ │ └── singleflight.go │ ├── protobuf │ │ ├── AUTHORS │ │ ├── CONTRIBUTORS │ │ ├── LICENSE │ │ ├── proto │ │ │ ├── buffer.go │ │ │ ├── defaults.go │ │ │ ├── deprecated.go │ │ │ ├── discard.go │ │ │ ├── extensions.go │ │ │ ├── properties.go │ │ │ ├── proto.go │ │ │ ├── registry.go │ │ │ ├── text_decode.go │ │ │ ├── text_encode.go │ │ │ ├── wire.go │ │ │ └── wrappers.go │ │ └── ptypes │ │ │ ├── any │ │ │ └── any.pb.go │ │ │ └── empty │ │ │ └── empty.pb.go │ └── snappy │ │ ├── .gitignore │ │ ├── AUTHORS │ │ ├── CONTRIBUTORS │ │ ├── LICENSE │ │ ├── README │ │ ├── decode.go │ │ ├── decode_amd64.s │ │ ├── decode_arm64.s │ │ ├── decode_asm.go │ │ ├── decode_other.go │ │ ├── encode.go │ │ ├── encode_amd64.s │ │ ├── encode_arm64.s │ │ ├── encode_asm.go │ │ ├── encode_other.go │ │ └── snappy.go ├── google │ ├── btree │ │ ├── LICENSE │ │ ├── README.md │ │ ├── btree.go │ │ └── btree_generic.go │ ├── gnostic-models │ │ ├── LICENSE │ │ ├── compiler │ │ │ ├── README.md │ │ │ ├── context.go │ │ │ ├── error.go │ │ │ ├── extensions.go │ │ │ ├── helpers.go │ │ │ ├── main.go │ │ │ └── reader.go │ │ ├── extensions │ │ │ ├── README.md │ │ │ ├── extension.pb.go │ │ │ ├── extension.proto │ │ │ └── extensions.go │ │ ├── jsonschema │ │ │ ├── README.md │ │ │ ├── base.go │ │ │ ├── display.go │ │ │ ├── models.go │ │ │ ├── operations.go │ │ │ ├── reader.go │ │ │ ├── schema.json │ │ │ └── writer.go │ │ └── openapiv2 │ │ │ ├── OpenAPIv2.go │ │ │ ├── OpenAPIv2.pb.go │ │ │ ├── OpenAPIv2.proto │ │ │ ├── README.md │ │ │ ├── document.go │ │ │ └── openapi-2.0.json │ ├── go-cmp │ │ ├── LICENSE │ │ └── cmp │ │ │ ├── cmpopts │ │ │ ├── equate.go │ │ │ ├── ignore.go │ │ │ ├── sort.go │ │ │ ├── struct_filter.go │ │ │ └── xform.go │ │ │ ├── compare.go │ │ │ ├── export.go │ │ │ ├── internal │ │ │ ├── diff │ │ │ │ ├── debug_disable.go │ │ │ │ ├── debug_enable.go │ │ │ │ └── diff.go │ │ │ ├── flags │ │ │ │ └── flags.go │ │ │ ├── function │ │ │ │ └── func.go │ │ │ └── value │ │ │ │ ├── name.go │ │ │ │ ├── pointer.go │ │ │ │ └── sort.go │ │ │ ├── options.go │ │ │ ├── path.go │ │ │ ├── report.go │ │ │ ├── report_compare.go │ │ │ ├── report_references.go │ │ │ ├── report_reflect.go │ │ │ ├── report_slices.go │ │ │ ├── report_text.go │ │ │ └── report_value.go │ ├── go-github │ │ └── v80 │ │ │ ├── AUTHORS │ │ │ ├── LICENSE │ │ │ └── github │ │ │ ├── actions.go │ │ │ ├── actions_artifacts.go │ │ │ ├── actions_cache.go │ │ │ ├── actions_hosted_runners.go │ │ │ ├── actions_oidc.go │ │ │ ├── actions_permissions_enterprise.go │ │ │ ├── actions_permissions_orgs.go │ │ │ ├── actions_runner_groups.go │ │ │ ├── actions_runners.go │ │ │ ├── actions_secrets.go │ │ │ ├── actions_variables.go │ │ │ ├── actions_workflow_jobs.go │ │ │ ├── actions_workflow_runs.go │ │ │ ├── actions_workflows.go │ │ │ ├── activity.go │ │ │ ├── activity_events.go │ │ │ ├── activity_notifications.go │ │ │ ├── activity_star.go │ │ │ ├── activity_watching.go │ │ │ ├── admin.go │ │ │ ├── admin_orgs.go │ │ │ ├── admin_stats.go │ │ │ ├── admin_users.go │ │ │ ├── apps.go │ │ │ ├── apps_hooks.go │ │ │ ├── apps_hooks_deliveries.go │ │ │ ├── apps_installation.go │ │ │ ├── apps_manifest.go │ │ │ ├── apps_marketplace.go │ │ │ ├── attestations.go │ │ │ ├── authorizations.go │ │ │ ├── billing.go │ │ │ ├── checks.go │ │ │ ├── classroom.go │ │ │ ├── code_scanning.go │ │ │ ├── codesofconduct.go │ │ │ ├── codespaces.go │ │ │ ├── codespaces_secrets.go │ │ │ ├── copilot.go │ │ │ ├── credentials.go │ │ │ ├── dependabot.go │ │ │ ├── dependabot_alerts.go │ │ │ ├── dependabot_secrets.go │ │ │ ├── dependency_graph.go │ │ │ ├── dependency_graph_snapshots.go │ │ │ ├── doc.go │ │ │ ├── emojis.go │ │ │ ├── enterprise.go │ │ │ ├── enterprise_actions_hosted_runners.go │ │ │ ├── enterprise_actions_runner_groups.go │ │ │ ├── enterprise_actions_runners.go │ │ │ ├── enterprise_app_installation.go │ │ │ ├── enterprise_apps.go │ │ │ ├── enterprise_audit_log.go │ │ │ ├── enterprise_billing_cost_centers.go │ │ │ ├── enterprise_code_security_and_analysis.go │ │ │ ├── enterprise_codesecurity_configurations.go │ │ │ ├── enterprise_licenses.go │ │ │ ├── enterprise_manage_ghes.go │ │ │ ├── enterprise_manage_ghes_config.go │ │ │ ├── enterprise_manage_ghes_maintenance.go │ │ │ ├── enterprise_manage_ghes_ssh.go │ │ │ ├── enterprise_network_configurations.go │ │ │ ├── enterprise_organization_properties.go │ │ │ ├── enterprise_properties.go │ │ │ ├── enterprise_rules.go │ │ │ ├── enterprise_scim.go │ │ │ ├── event.go │ │ │ ├── event_types.go │ │ │ ├── gists.go │ │ │ ├── gists_comments.go │ │ │ ├── git.go │ │ │ ├── git_blobs.go │ │ │ ├── git_commits.go │ │ │ ├── git_refs.go │ │ │ ├── git_tags.go │ │ │ ├── git_trees.go │ │ │ ├── github-accessors.go │ │ │ ├── github.go │ │ │ ├── gitignore.go │ │ │ ├── interactions.go │ │ │ ├── interactions_orgs.go │ │ │ ├── interactions_repos.go │ │ │ ├── issue_import.go │ │ │ ├── issues.go │ │ │ ├── issues_assignees.go │ │ │ ├── issues_comments.go │ │ │ ├── issues_events.go │ │ │ ├── issues_labels.go │ │ │ ├── issues_milestones.go │ │ │ ├── issues_timeline.go │ │ │ ├── licenses.go │ │ │ ├── markdown.go │ │ │ ├── messages.go │ │ │ ├── meta.go │ │ │ ├── migrations.go │ │ │ ├── migrations_source_import.go │ │ │ ├── migrations_user.go │ │ │ ├── orgs.go │ │ │ ├── orgs_actions_allowed.go │ │ │ ├── orgs_actions_permissions.go │ │ │ ├── orgs_attestations.go │ │ │ ├── orgs_audit_log.go │ │ │ ├── orgs_codesecurity_configurations.go │ │ │ ├── orgs_credential_authorizations.go │ │ │ ├── orgs_custom_repository_roles.go │ │ │ ├── orgs_hooks.go │ │ │ ├── orgs_hooks_configuration.go │ │ │ ├── orgs_hooks_deliveries.go │ │ │ ├── orgs_immutable_releases.go │ │ │ ├── orgs_issue_types.go │ │ │ ├── orgs_members.go │ │ │ ├── orgs_network_configurations.go │ │ │ ├── orgs_organization_properties.go │ │ │ ├── orgs_organization_roles.go │ │ │ ├── orgs_outside_collaborators.go │ │ │ ├── orgs_packages.go │ │ │ ├── orgs_personal_access_tokens.go │ │ │ ├── orgs_properties.go │ │ │ ├── orgs_rules.go │ │ │ ├── orgs_security_managers.go │ │ │ ├── orgs_users_blocking.go │ │ │ ├── packages.go │ │ │ ├── private_registries.go │ │ │ ├── projects.go │ │ │ ├── pulls.go │ │ │ ├── pulls_comments.go │ │ │ ├── pulls_reviewers.go │ │ │ ├── pulls_reviews.go │ │ │ ├── pulls_threads.go │ │ │ ├── rate_limit.go │ │ │ ├── reactions.go │ │ │ ├── repos.go │ │ │ ├── repos_actions_access.go │ │ │ ├── repos_actions_allowed.go │ │ │ ├── repos_actions_permissions.go │ │ │ ├── repos_attestations.go │ │ │ ├── repos_autolinks.go │ │ │ ├── repos_codeowners.go │ │ │ ├── repos_collaborators.go │ │ │ ├── repos_comments.go │ │ │ ├── repos_commits.go │ │ │ ├── repos_community_health.go │ │ │ ├── repos_contents.go │ │ │ ├── repos_deployment_branch_policies.go │ │ │ ├── repos_deployment_protection_rules.go │ │ │ ├── repos_deployments.go │ │ │ ├── repos_environments.go │ │ │ ├── repos_forks.go │ │ │ ├── repos_hooks.go │ │ │ ├── repos_hooks_configuration.go │ │ │ ├── repos_hooks_deliveries.go │ │ │ ├── repos_invitations.go │ │ │ ├── repos_keys.go │ │ │ ├── repos_lfs.go │ │ │ ├── repos_merging.go │ │ │ ├── repos_pages.go │ │ │ ├── repos_prereceive_hooks.go │ │ │ ├── repos_properties.go │ │ │ ├── repos_releases.go │ │ │ ├── repos_rules.go │ │ │ ├── repos_stats.go │ │ │ ├── repos_statuses.go │ │ │ ├── repos_tags.go │ │ │ ├── repos_traffic.go │ │ │ ├── rules.go │ │ │ ├── scim.go │ │ │ ├── search.go │ │ │ ├── secret_scanning.go │ │ │ ├── secret_scanning_pattern_configs.go │ │ │ ├── security_advisories.go │ │ │ ├── strings.go │ │ │ ├── sub_issue.go │ │ │ ├── teams.go │ │ │ ├── teams_discussion_comments.go │ │ │ ├── teams_discussions.go │ │ │ ├── teams_members.go │ │ │ ├── timestamp.go │ │ │ ├── users.go │ │ │ ├── users_administration.go │ │ │ ├── users_attestations.go │ │ │ ├── users_blocking.go │ │ │ ├── users_emails.go │ │ │ ├── users_followers.go │ │ │ ├── users_gpg_keys.go │ │ │ ├── users_keys.go │ │ │ ├── users_packages.go │ │ │ ├── users_social_accounts.go │ │ │ ├── users_ssh_signing_keys.go │ │ │ ├── with_appengine.go │ │ │ └── without_appengine.go │ ├── go-querystring │ │ ├── LICENSE │ │ └── query │ │ │ └── encode.go │ ├── gopacket │ │ ├── .gitignore │ │ ├── .travis.gofmt.sh │ │ ├── .travis.golint.sh │ │ ├── .travis.govet.sh │ │ ├── .travis.install.sh │ │ ├── .travis.script.sh │ │ ├── .travis.yml │ │ ├── AUTHORS │ │ ├── CONTRIBUTING.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── base.go │ │ ├── decode.go │ │ ├── doc.go │ │ ├── flows.go │ │ ├── gc │ │ ├── layerclass.go │ │ ├── layers │ │ │ ├── .lint_blacklist │ │ │ ├── arp.go │ │ │ ├── asf.go │ │ │ ├── asf_presencepong.go │ │ │ ├── base.go │ │ │ ├── bfd.go │ │ │ ├── cdp.go │ │ │ ├── ctp.go │ │ │ ├── dhcpv4.go │ │ │ ├── dhcpv6.go │ │ │ ├── dhcpv6_options.go │ │ │ ├── dns.go │ │ │ ├── doc.go │ │ │ ├── dot11.go │ │ │ ├── dot1q.go │ │ │ ├── eap.go │ │ │ ├── eapol.go │ │ │ ├── endpoints.go │ │ │ ├── enums.go │ │ │ ├── enums_generated.go │ │ │ ├── erspan2.go │ │ │ ├── etherip.go │ │ │ ├── ethernet.go │ │ │ ├── fddi.go │ │ │ ├── fuzz_layer.go │ │ │ ├── gen_linted.sh │ │ │ ├── geneve.go │ │ │ ├── gre.go │ │ │ ├── gtp.go │ │ │ ├── iana_ports.go │ │ │ ├── icmp4.go │ │ │ ├── icmp6.go │ │ │ ├── icmp6msg.go │ │ │ ├── igmp.go │ │ │ ├── ip4.go │ │ │ ├── ip6.go │ │ │ ├── ipsec.go │ │ │ ├── layertypes.go │ │ │ ├── lcm.go │ │ │ ├── linux_sll.go │ │ │ ├── llc.go │ │ │ ├── lldp.go │ │ │ ├── loopback.go │ │ │ ├── mldv1.go │ │ │ ├── mldv2.go │ │ │ ├── modbustcp.go │ │ │ ├── mpls.go │ │ │ ├── ndp.go │ │ │ ├── ntp.go │ │ │ ├── ospf.go │ │ │ ├── pflog.go │ │ │ ├── ports.go │ │ │ ├── ppp.go │ │ │ ├── pppoe.go │ │ │ ├── prism.go │ │ │ ├── radiotap.go │ │ │ ├── radius.go │ │ │ ├── rmcp.go │ │ │ ├── rudp.go │ │ │ ├── sctp.go │ │ │ ├── sflow.go │ │ │ ├── sip.go │ │ │ ├── stp.go │ │ │ ├── tcp.go │ │ │ ├── tcpip.go │ │ │ ├── test_creator.py │ │ │ ├── tls.go │ │ │ ├── tls_alert.go │ │ │ ├── tls_appdata.go │ │ │ ├── tls_cipherspec.go │ │ │ ├── tls_handshake.go │ │ │ ├── udp.go │ │ │ ├── udplite.go │ │ │ ├── usb.go │ │ │ ├── vrrp.go │ │ │ └── vxlan.go │ │ ├── layers_decoder.go │ │ ├── layertype.go │ │ ├── packet.go │ │ ├── parser.go │ │ ├── pcap │ │ │ ├── defs_windows_386.go │ │ │ ├── defs_windows_amd64.go │ │ │ ├── doc.go │ │ │ ├── pcap.go │ │ │ ├── pcap_unix.go │ │ │ ├── pcap_windows.go │ │ │ ├── test_dns.pcap │ │ │ ├── test_ethernet.pcap │ │ │ └── test_loopback.pcap │ │ ├── tcpassembly │ │ │ ├── assembly.go │ │ │ └── tcpreader │ │ │ │ └── reader.go │ │ ├── time.go │ │ └── writer.go │ ├── pprof │ │ ├── AUTHORS │ │ ├── CONTRIBUTORS │ │ ├── LICENSE │ │ └── profile │ │ │ ├── encode.go │ │ │ ├── filter.go │ │ │ ├── index.go │ │ │ ├── legacy_java_profile.go │ │ │ ├── legacy_profile.go │ │ │ ├── merge.go │ │ │ ├── profile.go │ │ │ ├── proto.go │ │ │ └── prune.go │ ├── s2a-go │ │ ├── .gitignore │ │ ├── CODE_OF_CONDUCT.md │ │ ├── CONTRIBUTING.md │ │ ├── LICENSE.md │ │ ├── README.md │ │ ├── fallback │ │ │ └── s2a_fallback.go │ │ ├── internal │ │ │ ├── authinfo │ │ │ │ └── authinfo.go │ │ │ ├── handshaker │ │ │ │ ├── handshaker.go │ │ │ │ └── service │ │ │ │ │ └── service.go │ │ │ ├── proto │ │ │ │ ├── common_go_proto │ │ │ │ │ └── common.pb.go │ │ │ │ ├── s2a_context_go_proto │ │ │ │ │ └── s2a_context.pb.go │ │ │ │ ├── s2a_go_proto │ │ │ │ │ ├── s2a.pb.go │ │ │ │ │ └── s2a_grpc.pb.go │ │ │ │ └── v2 │ │ │ │ │ ├── common_go_proto │ │ │ │ │ └── common.pb.go │ │ │ │ │ ├── s2a_context_go_proto │ │ │ │ │ └── s2a_context.pb.go │ │ │ │ │ └── s2a_go_proto │ │ │ │ │ ├── s2a.pb.go │ │ │ │ │ └── s2a_grpc.pb.go │ │ │ ├── record │ │ │ │ ├── internal │ │ │ │ │ ├── aeadcrypter │ │ │ │ │ │ ├── aeadcrypter.go │ │ │ │ │ │ ├── aesgcm.go │ │ │ │ │ │ ├── chachapoly.go │ │ │ │ │ │ └── common.go │ │ │ │ │ └── halfconn │ │ │ │ │ │ ├── ciphersuite.go │ │ │ │ │ │ ├── counter.go │ │ │ │ │ │ ├── expander.go │ │ │ │ │ │ └── halfconn.go │ │ │ │ ├── record.go │ │ │ │ └── ticketsender.go │ │ │ ├── tokenmanager │ │ │ │ └── tokenmanager.go │ │ │ └── v2 │ │ │ │ ├── README.md │ │ │ │ ├── certverifier │ │ │ │ └── certverifier.go │ │ │ │ ├── remotesigner │ │ │ │ └── remotesigner.go │ │ │ │ ├── s2av2.go │ │ │ │ └── tlsconfigstore │ │ │ │ └── tlsconfigstore.go │ │ ├── retry │ │ │ └── retry.go │ │ ├── s2a.go │ │ ├── s2a_options.go │ │ ├── s2a_utils.go │ │ └── stream │ │ │ └── s2a_stream.go │ └── uuid │ │ ├── CHANGELOG.md │ │ ├── CONTRIBUTING.md │ │ ├── CONTRIBUTORS │ │ ├── LICENSE │ │ ├── README.md │ │ ├── dce.go │ │ ├── doc.go │ │ ├── hash.go │ │ ├── marshal.go │ │ ├── node.go │ │ ├── node_js.go │ │ ├── node_net.go │ │ ├── null.go │ │ ├── sql.go │ │ ├── time.go │ │ ├── util.go │ │ ├── uuid.go │ │ ├── version1.go │ │ ├── version4.go │ │ ├── version6.go │ │ └── version7.go ├── googleapis │ ├── enterprise-certificate-proxy │ │ ├── LICENSE │ │ └── client │ │ │ ├── client.go │ │ │ └── util │ │ │ └── util.go │ └── gax-go │ │ └── v2 │ │ ├── .release-please-manifest.json │ │ ├── CHANGES.md │ │ ├── LICENSE │ │ ├── apierror │ │ ├── apierror.go │ │ └── internal │ │ │ └── proto │ │ │ ├── README.md │ │ │ ├── custom_error.pb.go │ │ │ ├── custom_error.proto │ │ │ ├── error.pb.go │ │ │ └── error.proto │ │ ├── call_option.go │ │ ├── callctx │ │ └── callctx.go │ │ ├── content_type.go │ │ ├── gax.go │ │ ├── header.go │ │ ├── internal │ │ └── version.go │ │ ├── internallog │ │ ├── grpclog │ │ │ └── grpclog.go │ │ ├── internal │ │ │ └── internal.go │ │ └── internallog.go │ │ ├── invoke.go │ │ ├── iterator │ │ └── iterator.go │ │ ├── proto_json_stream.go │ │ └── release-please-config.json ├── gorilla │ └── mux │ │ ├── .editorconfig │ │ ├── .gitignore │ │ ├── LICENSE │ │ ├── Makefile │ │ ├── README.md │ │ ├── doc.go │ │ ├── middleware.go │ │ ├── mux.go │ │ ├── regexp.go │ │ ├── route.go │ │ └── test_helpers.go ├── gosimple │ └── slug │ │ ├── .gitignore │ │ ├── LICENSE │ │ ├── README.md │ │ ├── doc.go │ │ ├── languages_substitution.go │ │ └── slug.go ├── grafana-tools │ └── sdk │ │ ├── .gitignore │ │ ├── LICENSE │ │ ├── README.md │ │ ├── address.go │ │ ├── alertnotification.go │ │ ├── annotation.go │ │ ├── board.go │ │ ├── custom-types.go │ │ ├── datasource.go │ │ ├── docker-compose.yml │ │ ├── folder-permissions.go │ │ ├── folder.go │ │ ├── org.go │ │ ├── panel.go │ │ ├── preferences.go │ │ ├── rest-admin.go │ │ ├── rest-alertnotification.go │ │ ├── rest-annotation.go │ │ ├── rest-dashboard.go │ │ ├── rest-datasource.go │ │ ├── rest-folder-permissions.go │ │ ├── rest-folder.go │ │ ├── rest-get_health.go │ │ ├── rest-org.go │ │ ├── rest-request.go │ │ ├── rest-snapshot.go │ │ ├── rest-team.go │ │ ├── rest-user.go │ │ ├── row.go │ │ ├── snapshot.go │ │ ├── team.go │ │ └── user.go ├── grafana │ ├── alerting │ │ ├── LICENSE │ │ ├── cluster │ │ │ └── cluster.go │ │ ├── definition │ │ │ ├── alertmanager.go │ │ │ ├── alertmanager_validation.go │ │ │ ├── compat.go │ │ │ ├── json.go │ │ │ ├── merge.go │ │ │ └── mimir_validation.go │ │ ├── http │ │ │ ├── client.go │ │ │ ├── config.go │ │ │ ├── hmac.go │ │ │ ├── oauth2.go │ │ │ ├── testing.go │ │ │ ├── tls.go │ │ │ └── webhook.go │ │ ├── images │ │ │ ├── images.go │ │ │ ├── providers.go │ │ │ ├── testing.go │ │ │ └── utils.go │ │ ├── models │ │ │ ├── integration.go │ │ │ ├── labels.go │ │ │ └── receivers.go │ │ ├── notify │ │ │ ├── alerts.go │ │ │ ├── compat.go │ │ │ ├── crypto.go │ │ │ ├── factory.go │ │ │ ├── grafana_alertmanager.go │ │ │ ├── grafana_alertmanager_metrics.go │ │ │ ├── mimir_alertmanager.go │ │ │ ├── multiorg_alertmanager.go │ │ │ ├── nfstatus │ │ │ │ ├── integration.go │ │ │ │ └── receiver.go │ │ │ ├── receivers.go │ │ │ ├── schema.go │ │ │ ├── silences.go │ │ │ ├── stages │ │ │ │ └── wait_stage.go │ │ │ ├── status.go │ │ │ ├── templates.go │ │ │ └── testing.go │ │ ├── receivers │ │ │ ├── alertmanager │ │ │ │ ├── schema.go │ │ │ │ └── v1 │ │ │ │ │ ├── alertmanager.go │ │ │ │ │ ├── config.go │ │ │ │ │ └── testing.go │ │ │ ├── base.go │ │ │ ├── config_util.go │ │ │ ├── dingding │ │ │ │ ├── schema.go │ │ │ │ └── v1 │ │ │ │ │ ├── config.go │ │ │ │ │ ├── dingding.go │ │ │ │ │ └── testing.go │ │ │ ├── discord │ │ │ │ ├── schema.go │ │ │ │ ├── v0mimir1 │ │ │ │ │ ├── config.go │ │ │ │ │ └── testing.go │ │ │ │ └── v1 │ │ │ │ │ ├── config.go │ │ │ │ │ ├── discord.go │ │ │ │ │ └── testing.go │ │ │ ├── email.go │ │ │ ├── email │ │ │ │ ├── schema.go │ │ │ │ ├── v0mimir1 │ │ │ │ │ ├── config.go │ │ │ │ │ └── testing.go │ │ │ │ └── v1 │ │ │ │ │ ├── config.go │ │ │ │ │ ├── email.go │ │ │ │ │ └── testing.go │ │ │ ├── email_sender.go │ │ │ ├── googlechat │ │ │ │ ├── schema.go │ │ │ │ └── v1 │ │ │ │ │ ├── config.go │ │ │ │ │ ├── googlechat.go │ │ │ │ │ └── testing.go │ │ │ ├── jira │ │ │ │ ├── schema.go │ │ │ │ ├── v0mimir1 │ │ │ │ │ ├── config.go │ │ │ │ │ └── testing.go │ │ │ │ └── v1 │ │ │ │ │ ├── config.go │ │ │ │ │ ├── jira.go │ │ │ │ │ ├── testing.go │ │ │ │ │ └── types.go │ │ │ ├── kafka │ │ │ │ ├── schema.go │ │ │ │ └── v1 │ │ │ │ │ ├── config.go │ │ │ │ │ ├── kafka.go │ │ │ │ │ └── testing.go │ │ │ ├── line │ │ │ │ ├── schema.go │ │ │ │ └── v1 │ │ │ │ │ ├── config.go │ │ │ │ │ ├── line.go │ │ │ │ │ └── testing.go │ │ │ ├── mqtt │ │ │ │ ├── schema.go │ │ │ │ └── v1 │ │ │ │ │ ├── client.go │ │ │ │ │ ├── config.go │ │ │ │ │ ├── mqtt.go │ │ │ │ │ └── testing.go │ │ │ ├── number.go │ │ │ ├── oncall │ │ │ │ ├── schema.go │ │ │ │ └── v1 │ │ │ │ │ ├── config.go │ │ │ │ │ ├── oncall.go │ │ │ │ │ └── testing.go │ │ │ ├── opsgenie │ │ │ │ ├── schema.go │ │ │ │ ├── v0mimir1 │ │ │ │ │ ├── config.go │ │ │ │ │ └── testing.go │ │ │ │ └── v1 │ │ │ │ │ ├── config.go │ │ │ │ │ ├── opsgenie.go │ │ │ │ │ └── testing.go │ │ │ ├── pagerduty │ │ │ │ ├── schema.go │ │ │ │ ├── v0mimir1 │ │ │ │ │ ├── config.go │ │ │ │ │ └── testing.go │ │ │ │ └── v1 │ │ │ │ │ ├── config.go │ │ │ │ │ ├── pagerduty.go │ │ │ │ │ └── testing.go │ │ │ ├── pushover │ │ │ │ ├── schema.go │ │ │ │ ├── v0mimir1 │ │ │ │ │ ├── config.go │ │ │ │ │ └── testing.go │ │ │ │ └── v1 │ │ │ │ │ ├── config.go │ │ │ │ │ ├── pushover.go │ │ │ │ │ └── testing.go │ │ │ ├── schema │ │ │ │ ├── common.go │ │ │ │ └── schema.go │ │ │ ├── sensugo │ │ │ │ ├── schema.go │ │ │ │ └── v1 │ │ │ │ │ ├── config.go │ │ │ │ │ ├── sensugo.go │ │ │ │ │ └── testing.go │ │ │ ├── slack │ │ │ │ ├── schema.go │ │ │ │ ├── v0mimir1 │ │ │ │ │ ├── config.go │ │ │ │ │ └── testing.go │ │ │ │ └── v1 │ │ │ │ │ ├── config.go │ │ │ │ │ ├── slack.go │ │ │ │ │ └── testing.go │ │ │ ├── sns │ │ │ │ ├── schema.go │ │ │ │ ├── v0mimir1 │ │ │ │ │ ├── config.go │ │ │ │ │ └── testing.go │ │ │ │ └── v1 │ │ │ │ │ ├── config.go │ │ │ │ │ ├── sns.go │ │ │ │ │ └── testing.go │ │ │ ├── teams │ │ │ │ ├── schema.go │ │ │ │ ├── v0mimir1 │ │ │ │ │ ├── config.go │ │ │ │ │ └── testing.go │ │ │ │ ├── v0mimir2 │ │ │ │ │ ├── config.go │ │ │ │ │ └── testing.go │ │ │ │ └── v1 │ │ │ │ │ ├── config.go │ │ │ │ │ ├── models.go │ │ │ │ │ ├── teams.go │ │ │ │ │ └── testing.go │ │ │ ├── telegram │ │ │ │ ├── schema.go │ │ │ │ ├── v0mimir1 │ │ │ │ │ ├── config.go │ │ │ │ │ └── testing.go │ │ │ │ └── v1 │ │ │ │ │ ├── config.go │ │ │ │ │ ├── telegram.go │ │ │ │ │ └── testing.go │ │ │ ├── templates │ │ │ │ ├── ng_alert_notification.html │ │ │ │ └── ng_alert_notification.txt │ │ │ ├── testing.go │ │ │ ├── testing │ │ │ │ └── testing.go │ │ │ ├── threema │ │ │ │ ├── schema.go │ │ │ │ └── v1 │ │ │ │ │ ├── config.go │ │ │ │ │ ├── testing.go │ │ │ │ │ └── threema.go │ │ │ ├── util.go │ │ │ ├── victorops │ │ │ │ ├── schema.go │ │ │ │ ├── v0mimir1 │ │ │ │ │ ├── config.go │ │ │ │ │ └── testing.go │ │ │ │ └── v1 │ │ │ │ │ ├── config.go │ │ │ │ │ ├── testing.go │ │ │ │ │ └── victorops.go │ │ │ ├── webex │ │ │ │ ├── schema.go │ │ │ │ ├── v0mimir1 │ │ │ │ │ ├── config.go │ │ │ │ │ └── testing.go │ │ │ │ └── v1 │ │ │ │ │ ├── config.go │ │ │ │ │ ├── testing.go │ │ │ │ │ └── webex.go │ │ │ ├── webhook.go │ │ │ ├── webhook │ │ │ │ ├── schema.go │ │ │ │ ├── v0mimir1 │ │ │ │ │ ├── config.go │ │ │ │ │ └── testing.go │ │ │ │ └── v1 │ │ │ │ │ ├── config.go │ │ │ │ │ ├── testing.go │ │ │ │ │ └── webhook.go │ │ │ ├── wechat │ │ │ │ ├── schema.go │ │ │ │ └── v0mimir1 │ │ │ │ │ ├── config.go │ │ │ │ │ └── testing.go │ │ │ └── wecom │ │ │ │ ├── schema.go │ │ │ │ └── v1 │ │ │ │ ├── config.go │ │ │ │ ├── testing.go │ │ │ │ └── wecom.go │ │ └── templates │ │ │ ├── default_template.go │ │ │ ├── factory.go │ │ │ ├── funcs.go │ │ │ ├── gomplate │ │ │ ├── collections.go │ │ │ ├── data.go │ │ │ ├── evalargs.go │ │ │ ├── funcs.go │ │ │ ├── template.go │ │ │ └── time.go │ │ │ ├── mimir │ │ │ └── template.go │ │ │ ├── template_data.go │ │ │ └── util.go │ ├── dskit │ │ ├── LICENSE │ │ ├── backoff │ │ │ └── backoff.go │ │ ├── ballast │ │ │ └── ballast.go │ │ ├── cache │ │ │ ├── async_queue.go │ │ │ ├── cache.go │ │ │ ├── compression.go │ │ │ ├── jump_hash.go │ │ │ ├── lru.go │ │ │ ├── memcached_client.go │ │ │ ├── memcached_client_metrics.go │ │ │ ├── memcached_server_selector.go │ │ │ ├── mock.go │ │ │ ├── tracing.go │ │ │ └── versioned.go │ │ ├── cancellation │ │ │ └── error.go │ │ ├── clusterutil │ │ │ ├── cluster_validation_config.go │ │ │ └── clusterutil.go │ │ ├── concurrency │ │ │ ├── buffer.go │ │ │ ├── limited_concurrency_singleflight.go │ │ │ ├── runner.go │ │ │ └── worker.go │ │ ├── crypto │ │ │ └── tls │ │ │ │ └── tls.go │ │ ├── dns │ │ │ ├── godns │ │ │ │ └── resolver.go │ │ │ ├── miekgdns │ │ │ │ └── resolver.go │ │ │ ├── provider.go │ │ │ └── resolver.go │ │ ├── flagext │ │ │ ├── bytes.go │ │ │ ├── cidr.go │ │ │ ├── day.go │ │ │ ├── deprecated.go │ │ │ ├── ignored.go │ │ │ ├── map.go │ │ │ ├── parse.go │ │ │ ├── register.go │ │ │ ├── secret.go │ │ │ ├── stringslice.go │ │ │ ├── stringslicecsv.go │ │ │ ├── time.go │ │ │ └── url.go │ │ ├── gate │ │ │ └── gate.go │ │ ├── grpcclient │ │ │ ├── backoff_retry.go │ │ │ ├── grpcclient.go │ │ │ ├── instrumentation.go │ │ │ └── ratelimit.go │ │ ├── grpcencoding │ │ │ └── snappy │ │ │ │ └── snappy.go │ │ ├── grpcutil │ │ │ ├── dns_resolver.go │ │ │ ├── error_details.pb.go │ │ │ ├── error_details.proto │ │ │ ├── health_check.go │ │ │ ├── metadata.go │ │ │ ├── naming.go │ │ │ ├── status.go │ │ │ └── taphandle.go │ │ ├── httpgrpc │ │ │ ├── README.md │ │ │ ├── httpgrpc.go │ │ │ ├── httpgrpc.pb.go │ │ │ ├── httpgrpc.proto │ │ │ ├── server │ │ │ │ └── server.go │ │ │ └── tools.go │ │ ├── instrument │ │ │ └── instrument.go │ │ ├── kv │ │ │ ├── client.go │ │ │ ├── codec │ │ │ │ └── codec.go │ │ │ ├── consul │ │ │ │ ├── client.go │ │ │ │ ├── metrics.go │ │ │ │ └── mock.go │ │ │ ├── etcd │ │ │ │ ├── etcd.go │ │ │ │ └── mock.go │ │ │ ├── memberlist │ │ │ │ ├── DESIGN.md │ │ │ │ ├── broadcast.go │ │ │ │ ├── dnsprovider.go │ │ │ │ ├── http_status_handler.go │ │ │ │ ├── kv.pb.go │ │ │ │ ├── kv.proto │ │ │ │ ├── kv_init_service.go │ │ │ │ ├── memberlist_client.go │ │ │ │ ├── memberlist_logger.go │ │ │ │ ├── mergeable.go │ │ │ │ ├── metrics.go │ │ │ │ ├── node_meta.go │ │ │ │ ├── node_zone_aware_routing.go │ │ │ │ ├── status.gohtml │ │ │ │ ├── tcp_transport.go │ │ │ │ └── tcp_transport_conn.go │ │ │ ├── metrics.go │ │ │ ├── mock.go │ │ │ ├── multi.go │ │ │ └── prefix.go │ │ ├── limiter │ │ │ └── rate_limiter.go │ │ ├── log │ │ │ ├── buffered.go │ │ │ ├── global.go │ │ │ ├── gokit.go │ │ │ ├── level.go │ │ │ └── ratelimit.go │ │ ├── loser │ │ │ └── loser.go │ │ ├── metrics │ │ │ ├── helpers.go │ │ │ └── tenant_registries.go │ │ ├── middleware │ │ │ ├── counting_listener.go │ │ │ ├── errorhandler.go │ │ │ ├── grpc_auth.go │ │ │ ├── grpc_cluster.go │ │ │ ├── grpc_instrumentation.go │ │ │ ├── grpc_logging.go │ │ │ ├── grpc_stats.go │ │ │ ├── header_adder.go │ │ │ ├── http_auth.go │ │ │ ├── http_cluster.go │ │ │ ├── http_timeout.go │ │ │ ├── http_tracing.go │ │ │ ├── instrument.go │ │ │ ├── logging.go │ │ │ ├── metrics.go │ │ │ ├── middleware.go │ │ │ ├── path_rewrite.go │ │ │ ├── response.go │ │ │ ├── route_injector.go │ │ │ ├── source_ips.go │ │ │ └── zero_response.go │ │ ├── modules │ │ │ ├── module_service.go │ │ │ ├── module_service_wrapper.go │ │ │ └── modules.go │ │ ├── mtime │ │ │ └── mtime.go │ │ ├── multierror │ │ │ └── multierror.go │ │ ├── netutil │ │ │ └── netutil.go │ │ ├── ring │ │ │ ├── basic_lifecycler.go │ │ │ ├── basic_lifecycler_delegates.go │ │ │ ├── basic_lifecycler_metrics.go │ │ │ ├── batch.go │ │ │ ├── client │ │ │ │ ├── pool.go │ │ │ │ └── ring_service_discovery.go │ │ │ ├── doc.go │ │ │ ├── flush.go │ │ │ ├── lifecycler.go │ │ │ ├── lifecycler_metrics.go │ │ │ ├── model.go │ │ │ ├── multi_partition_instance_ring.go │ │ │ ├── ownership_priority_queue.go │ │ │ ├── partition_instance_lifecycler.go │ │ │ ├── partition_instance_ring.go │ │ │ ├── partition_ring.go │ │ │ ├── partition_ring_desc.pb.go │ │ │ ├── partition_ring_desc.proto │ │ │ ├── partition_ring_editor.go │ │ │ ├── partition_ring_http.go │ │ │ ├── partition_ring_model.go │ │ │ ├── partition_ring_status.gohtml │ │ │ ├── partition_ring_watcher.go │ │ │ ├── partitions_ring_shuffle_shard_cache.go │ │ │ ├── replication_set.go │ │ │ ├── replication_set_tracker.go │ │ │ ├── replication_strategy.go │ │ │ ├── ring.go │ │ │ ├── ring.pb.go │ │ │ ├── ring.proto │ │ │ ├── ring_http.go │ │ │ ├── ring_status.gohtml │ │ │ ├── shard │ │ │ │ └── shard.go │ │ │ ├── spread_minimizing_token_generator.go │ │ │ ├── ticker.go │ │ │ ├── token_generator.go │ │ │ ├── token_range.go │ │ │ ├── tokens.go │ │ │ └── util.go │ │ ├── runtimeconfig │ │ │ └── manager.go │ │ ├── runutil │ │ │ └── runutil.go │ │ ├── server │ │ │ ├── PROXYPROTOCOL.md │ │ │ ├── fake_server.pb.go │ │ │ ├── fake_server.proto │ │ │ ├── limits.go │ │ │ ├── metrics.go │ │ │ ├── server.go │ │ │ └── tls_config.go │ │ ├── servicediscovery │ │ │ ├── dns.go │ │ │ └── ring.go │ │ ├── services │ │ │ ├── README.md │ │ │ ├── basic_service.go │ │ │ ├── failure_watcher.go │ │ │ ├── manager.go │ │ │ ├── service.go │ │ │ └── services.go │ │ ├── signals │ │ │ └── signals.go │ │ ├── spanlogger │ │ │ └── spanlogger.go │ │ ├── tenant │ │ │ ├── resolver.go │ │ │ └── tenant.go │ │ ├── test │ │ │ ├── diff.go │ │ │ └── poll.go │ │ ├── tracing │ │ │ ├── opentracing.go │ │ │ ├── otel.go │ │ │ ├── otel_jaeger.go │ │ │ ├── span.go │ │ │ ├── span_option.go │ │ │ └── tracing.go │ │ └── user │ │ │ ├── grpc.go │ │ │ ├── http.go │ │ │ ├── id.go │ │ │ └── logging.go │ ├── e2e │ │ ├── .errcheck-exclude │ │ ├── .golangci.yml │ │ ├── LICENSE │ │ ├── Makefile │ │ ├── README.md │ │ ├── cache │ │ │ └── cache.go │ │ ├── composite_service.go │ │ ├── db │ │ │ ├── db.go │ │ │ └── kafka.go │ │ ├── images │ │ │ └── images.go │ │ ├── logger.go │ │ ├── metrics.go │ │ ├── metrics_options.go │ │ ├── scenario.go │ │ ├── service.go │ │ └── util.go │ ├── gomemcache │ │ ├── LICENSE │ │ └── memcache │ │ │ ├── line_reader.go │ │ │ ├── memcache.go │ │ │ ├── options.go │ │ │ └── selector.go │ ├── otel-profiling-go │ │ ├── LICENSE │ │ ├── README.md │ │ ├── deprecated.go │ │ └── otelpyroscope.go │ ├── pyroscope-go │ │ └── godeltaprof │ │ │ ├── .gitignore │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── block.go │ │ │ ├── gzip.go │ │ │ ├── heap.go │ │ │ ├── http │ │ │ └── pprof │ │ │ │ ├── pprof.go │ │ │ │ ├── pprof_go21.go │ │ │ │ └── pprof_go22.go │ │ │ ├── internal │ │ │ └── pprof │ │ │ │ ├── builder.go │ │ │ │ ├── delta_heap.go │ │ │ │ ├── delta_mutex.go │ │ │ │ ├── elf.go │ │ │ │ ├── map.go │ │ │ │ ├── mutex_scale_go19.go │ │ │ │ ├── mutex_scale_go20.go │ │ │ │ ├── proto.go │ │ │ │ ├── protobuf.go │ │ │ │ ├── stub.go │ │ │ │ ├── stub_go20.go │ │ │ │ ├── stub_go22.go │ │ │ │ └── stub_go23.go │ │ │ └── proto.go │ └── regexp │ │ ├── .gitignore │ │ ├── LICENSE │ │ ├── README.md │ │ ├── backtrack.go │ │ ├── exec.go │ │ ├── onepass.go │ │ ├── regexp.go │ │ └── syntax │ │ ├── compile.go │ │ ├── doc.go │ │ ├── make_perl_groups.pl │ │ ├── op_string.go │ │ ├── parse.go │ │ ├── perl_groups.go │ │ ├── prog.go │ │ ├── regexp.go │ │ └── simplify.go ├── grpc-ecosystem │ └── grpc-gateway │ │ └── v2 │ │ ├── LICENSE │ │ ├── internal │ │ └── httprule │ │ │ ├── BUILD.bazel │ │ │ ├── compile.go │ │ │ ├── fuzz.go │ │ │ ├── parse.go │ │ │ └── types.go │ │ ├── protoc-gen-openapiv2 │ │ └── options │ │ │ ├── BUILD.bazel │ │ │ ├── annotations.pb.go │ │ │ ├── annotations.proto │ │ │ ├── annotations_protoopaque.pb.go │ │ │ ├── buf.gen.yaml │ │ │ ├── openapiv2.pb.go │ │ │ ├── openapiv2.proto │ │ │ └── openapiv2_protoopaque.pb.go │ │ ├── runtime │ │ ├── BUILD.bazel │ │ ├── context.go │ │ ├── convert.go │ │ ├── doc.go │ │ ├── errors.go │ │ ├── fieldmask.go │ │ ├── handler.go │ │ ├── marshal_httpbodyproto.go │ │ ├── marshal_json.go │ │ ├── marshal_jsonpb.go │ │ ├── marshal_proto.go │ │ ├── marshaler.go │ │ ├── marshaler_registry.go │ │ ├── mux.go │ │ ├── pattern.go │ │ ├── proto2_convert.go │ │ └── query.go │ │ └── utilities │ │ ├── BUILD.bazel │ │ ├── doc.go │ │ ├── pattern.go │ │ ├── readerfactory.go │ │ ├── string_array_flag.go │ │ └── trie.go ├── hashicorp │ ├── consul │ │ └── api │ │ │ ├── .copywrite.hcl │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── acl.go │ │ │ ├── agent.go │ │ │ ├── api.go │ │ │ ├── catalog.go │ │ │ ├── config_entry.go │ │ │ ├── config_entry_discoverychain.go │ │ │ ├── config_entry_exports.go │ │ │ ├── config_entry_file_system_certificate.go │ │ │ ├── config_entry_gateways.go │ │ │ ├── config_entry_inline_certificate.go │ │ │ ├── config_entry_intentions.go │ │ │ ├── config_entry_jwt_provider.go │ │ │ ├── config_entry_mesh.go │ │ │ ├── config_entry_rate_limit_ip.go │ │ │ ├── config_entry_routes.go │ │ │ ├── config_entry_sameness_group.go │ │ │ ├── config_entry_status.go │ │ │ ├── connect.go │ │ │ ├── connect_ca.go │ │ │ ├── connect_intention.go │ │ │ ├── content_type.go │ │ │ ├── coordinate.go │ │ │ ├── debug.go │ │ │ ├── discovery_chain.go │ │ │ ├── event.go │ │ │ ├── exported_services.go │ │ │ ├── health.go │ │ │ ├── internal.go │ │ │ ├── kv.go │ │ │ ├── lock.go │ │ │ ├── namespace.go │ │ │ ├── operator.go │ │ │ ├── operator_area.go │ │ │ ├── operator_audit.go │ │ │ ├── operator_autopilot.go │ │ │ ├── operator_keyring.go │ │ │ ├── operator_license.go │ │ │ ├── operator_raft.go │ │ │ ├── operator_segment.go │ │ │ ├── operator_usage.go │ │ │ ├── partition.go │ │ │ ├── peering.go │ │ │ ├── prepared_query.go │ │ │ ├── raw.go │ │ │ ├── semaphore.go │ │ │ ├── session.go │ │ │ ├── snapshot.go │ │ │ ├── status.go │ │ │ └── txn.go │ ├── errwrap │ │ ├── LICENSE │ │ ├── README.md │ │ └── errwrap.go │ ├── go-cleanhttp │ │ ├── LICENSE │ │ ├── README.md │ │ ├── cleanhttp.go │ │ ├── doc.go │ │ └── handlers.go │ ├── go-hclog │ │ ├── .gitignore │ │ ├── LICENSE │ │ ├── README.md │ │ ├── colorize_unix.go │ │ ├── colorize_windows.go │ │ ├── context.go │ │ ├── exclude.go │ │ ├── global.go │ │ ├── interceptlogger.go │ │ ├── intlogger.go │ │ ├── logger.go │ │ ├── nulllogger.go │ │ ├── stacktrace.go │ │ ├── stdlog.go │ │ └── writer.go │ ├── go-immutable-radix │ │ ├── .gitignore │ │ ├── CHANGELOG.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── edges.go │ │ ├── iradix.go │ │ ├── iter.go │ │ ├── node.go │ │ ├── raw_iter.go │ │ └── reverse_iter.go │ ├── go-metrics │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── LICENSE │ │ ├── README.md │ │ ├── compat │ │ │ ├── armon.go │ │ │ └── hashicorp.go │ │ ├── const_js.go │ │ ├── const_unix.go │ │ ├── const_windows.go │ │ ├── inmem.go │ │ ├── inmem_endpoint.go │ │ ├── inmem_signal.go │ │ ├── metrics.go │ │ ├── prometheus │ │ │ └── prometheus.go │ │ ├── sink.go │ │ ├── start.go │ │ ├── statsd.go │ │ └── statsite.go │ ├── go-msgpack │ │ └── v2 │ │ │ ├── LICENSE │ │ │ └── codec │ │ │ ├── build.sh │ │ │ ├── codecgen.go │ │ │ ├── decode.go │ │ │ ├── doc.go │ │ │ ├── encode.go │ │ │ ├── fast-path.not.go │ │ │ ├── gen-dec-array.go.tmpl │ │ │ ├── gen-dec-map.go.tmpl │ │ │ ├── gen-enc-chan.go.tmpl │ │ │ ├── gen-helper.generated.go │ │ │ ├── gen-helper.go.tmpl │ │ │ ├── gen-internal.go │ │ │ ├── gen.generated.go │ │ │ ├── gen.go │ │ │ ├── helper.go │ │ │ ├── helper_internal.go │ │ │ ├── json.go │ │ │ ├── mammoth-test.go.tmpl │ │ │ ├── mammoth2-test.go.tmpl │ │ │ ├── msgpack.go │ │ │ ├── rpc.go │ │ │ └── test.py │ ├── go-multierror │ │ ├── LICENSE │ │ ├── Makefile │ │ ├── README.md │ │ ├── append.go │ │ ├── flatten.go │ │ ├── format.go │ │ ├── group.go │ │ ├── multierror.go │ │ ├── prefix.go │ │ └── sort.go │ ├── go-retryablehttp │ │ ├── .gitignore │ │ ├── .go-version │ │ ├── .golangci.yml │ │ ├── CHANGELOG.md │ │ ├── CODEOWNERS │ │ ├── LICENSE │ │ ├── Makefile │ │ ├── README.md │ │ ├── cert_error_go119.go │ │ ├── cert_error_go120.go │ │ ├── client.go │ │ └── roundtripper.go │ ├── go-rootcerts │ │ ├── .travis.yml │ │ ├── LICENSE │ │ ├── Makefile │ │ ├── README.md │ │ ├── doc.go │ │ ├── rootcerts.go │ │ ├── rootcerts_base.go │ │ └── rootcerts_darwin.go │ ├── go-secure-stdlib │ │ ├── parseutil │ │ │ ├── LICENSE │ │ │ ├── normalize.go │ │ │ ├── parsepath.go │ │ │ └── parseutil.go │ │ └── strutil │ │ │ ├── LICENSE │ │ │ └── strutil.go │ ├── go-sockaddr │ │ ├── .gitignore │ │ ├── GNUmakefile │ │ ├── LICENSE │ │ ├── README.md │ │ ├── doc.go │ │ ├── ifaddr.go │ │ ├── ifaddrs.go │ │ ├── ifattr.go │ │ ├── ipaddr.go │ │ ├── ipaddrs.go │ │ ├── ipv4addr.go │ │ ├── ipv6addr.go │ │ ├── rfc.go │ │ ├── route_info.go │ │ ├── route_info_aix.go │ │ ├── route_info_android.go │ │ ├── route_info_bsd.go │ │ ├── route_info_default.go │ │ ├── route_info_linux.go │ │ ├── route_info_solaris.go │ │ ├── route_info_test_windows.go │ │ ├── route_info_windows.go │ │ ├── sockaddr.go │ │ ├── sockaddrs.go │ │ └── unixsock.go │ ├── go-version │ │ ├── CHANGELOG.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── constraint.go │ │ ├── version.go │ │ └── version_collection.go │ ├── golang-lru │ │ ├── LICENSE │ │ ├── simplelru │ │ │ ├── lru.go │ │ │ └── lru_interface.go │ │ └── v2 │ │ │ ├── .gitignore │ │ │ ├── .golangci.yml │ │ │ ├── 2q.go │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── doc.go │ │ │ ├── internal │ │ │ └── list.go │ │ │ ├── lru.go │ │ │ └── simplelru │ │ │ ├── LICENSE_list │ │ │ ├── lru.go │ │ │ └── lru_interface.go │ ├── hcl │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── LICENSE │ │ ├── Makefile │ │ ├── README.md │ │ ├── appveyor.yml │ │ ├── decoder.go │ │ ├── hcl.go │ │ ├── hcl │ │ │ ├── ast │ │ │ │ ├── ast.go │ │ │ │ └── walk.go │ │ │ ├── parser │ │ │ │ ├── error.go │ │ │ │ └── parser.go │ │ │ ├── scanner │ │ │ │ └── scanner.go │ │ │ ├── strconv │ │ │ │ └── quote.go │ │ │ └── token │ │ │ │ ├── position.go │ │ │ │ └── token.go │ │ ├── json │ │ │ ├── parser │ │ │ │ ├── flatten.go │ │ │ │ └── parser.go │ │ │ ├── scanner │ │ │ │ └── scanner.go │ │ │ └── token │ │ │ │ ├── position.go │ │ │ │ └── token.go │ │ ├── lex.go │ │ └── parse.go │ ├── memberlist │ │ ├── .gitignore │ │ ├── .go-version │ │ ├── .golangci.yml │ │ ├── CHANGELOG.md │ │ ├── LICENSE │ │ ├── Makefile │ │ ├── README.md │ │ ├── alive_delegate.go │ │ ├── awareness.go │ │ ├── broadcast.go │ │ ├── config.go │ │ ├── conflict_delegate.go │ │ ├── delegate.go │ │ ├── event_delegate.go │ │ ├── keyring.go │ │ ├── label.go │ │ ├── logging.go │ │ ├── memberlist.go │ │ ├── merge_delegate.go │ │ ├── mock_transport.go │ │ ├── net.go │ │ ├── net_transport.go │ │ ├── node_selection_delegate.go │ │ ├── peeked_conn.go │ │ ├── ping_delegate.go │ │ ├── queue.go │ │ ├── security.go │ │ ├── state.go │ │ ├── suspicion.go │ │ ├── tag.sh │ │ ├── todo.md │ │ ├── transport.go │ │ └── util.go │ ├── serf │ │ ├── LICENSE │ │ └── coordinate │ │ │ ├── client.go │ │ │ ├── config.go │ │ │ ├── coordinate.go │ │ │ └── phantom.go │ └── vault │ │ └── api │ │ ├── .copywrite.hcl │ │ ├── LICENSE │ │ ├── README.md │ │ ├── auth.go │ │ ├── auth │ │ ├── approle │ │ │ ├── LICENSE │ │ │ └── approle.go │ │ ├── kubernetes │ │ │ ├── LICENSE │ │ │ └── kubernetes.go │ │ └── userpass │ │ │ ├── LICENSE │ │ │ └── userpass.go │ │ ├── auth_token.go │ │ ├── client.go │ │ ├── hcl_dup_attr_deprecation.go │ │ ├── help.go │ │ ├── kv.go │ │ ├── kv_v1.go │ │ ├── kv_v2.go │ │ ├── lifetime_watcher.go │ │ ├── logical.go │ │ ├── logical_requests.go │ │ ├── output_policy.go │ │ ├── output_string.go │ │ ├── plugin_helpers.go │ │ ├── plugin_runtime_types.go │ │ ├── plugin_types.go │ │ ├── pluginruntimetype_enumer.go │ │ ├── renewbehavior_enumer.go │ │ ├── replication_status.go │ │ ├── request.go │ │ ├── response.go │ │ ├── secret.go │ │ ├── ssh.go │ │ ├── ssh_agent.go │ │ ├── sudo_paths.go │ │ ├── sys.go │ │ ├── sys_audit.go │ │ ├── sys_auth.go │ │ ├── sys_capabilities.go │ │ ├── sys_config_cors.go │ │ ├── sys_generate_root.go │ │ ├── sys_hastatus.go │ │ ├── sys_health.go │ │ ├── sys_init.go │ │ ├── sys_leader.go │ │ ├── sys_leases.go │ │ ├── sys_mfa.go │ │ ├── sys_monitor.go │ │ ├── sys_mounts.go │ │ ├── sys_plugins.go │ │ ├── sys_plugins_runtimes.go │ │ ├── sys_policy.go │ │ ├── sys_raft.go │ │ ├── sys_rekey.go │ │ ├── sys_rotate.go │ │ ├── sys_seal.go │ │ ├── sys_stepdown.go │ │ ├── sys_ui_custom_message.go │ │ └── sys_utilization_report.go ├── huandu │ └── xstrings │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── CONTRIBUTING.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── common.go │ │ ├── convert.go │ │ ├── count.go │ │ ├── doc.go │ │ ├── format.go │ │ ├── manipulate.go │ │ ├── stringbuilder.go │ │ ├── stringbuilder_go110.go │ │ └── translate.go ├── imdario │ └── mergo │ │ ├── .deepsource.toml │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── CODE_OF_CONDUCT.md │ │ ├── CONTRIBUTING.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── SECURITY.md │ │ ├── doc.go │ │ ├── map.go │ │ ├── merge.go │ │ └── mergo.go ├── inconshreveable │ └── mousetrap │ │ ├── LICENSE │ │ ├── README.md │ │ ├── trap_others.go │ │ └── trap_windows.go ├── influxdata │ ├── influxdb │ │ └── v2 │ │ │ ├── LICENSE │ │ │ ├── kit │ │ │ └── io │ │ │ │ └── limited_read_closer.go │ │ │ ├── models │ │ │ ├── consistency.go │ │ │ ├── fieldtype_string.go │ │ │ ├── gen.go │ │ │ ├── inline_fnv.go │ │ │ ├── inline_strconv_parse.go │ │ │ ├── points.go │ │ │ ├── rows.go │ │ │ ├── statistic.go │ │ │ ├── tagkeysset.go │ │ │ └── time.go │ │ │ └── pkg │ │ │ └── escape │ │ │ ├── bytes.go │ │ │ └── strings.go │ └── tdigest │ │ ├── .gitignore │ │ ├── LICENSE │ │ ├── README.md │ │ ├── centroid.go │ │ └── tdigest.go ├── jaegertracing │ └── jaeger-idl │ │ ├── LICENSE │ │ ├── model │ │ └── v1 │ │ │ ├── dependencies.go │ │ │ ├── doc.go │ │ │ ├── flags.go │ │ │ ├── hash.go │ │ │ ├── ids.go │ │ │ ├── keyvalue.go │ │ │ ├── model.pb.go │ │ │ ├── process.go │ │ │ ├── sort.go │ │ │ ├── span.go │ │ │ ├── spanref.go │ │ │ ├── time.go │ │ │ └── trace.go │ │ └── proto-gen │ │ └── api_v2 │ │ ├── collector.pb.go │ │ ├── query.pb.go │ │ └── sampling.pb.go ├── jessevdk │ └── go-flags │ │ ├── .travis.yml │ │ ├── LICENSE │ │ ├── README.md │ │ ├── arg.go │ │ ├── check_crosscompile.sh │ │ ├── closest.go │ │ ├── command.go │ │ ├── completion.go │ │ ├── convert.go │ │ ├── error.go │ │ ├── flags.go │ │ ├── group.go │ │ ├── help.go │ │ ├── ini.go │ │ ├── man.go │ │ ├── multitag.go │ │ ├── option.go │ │ ├── optstyle_other.go │ │ ├── optstyle_windows.go │ │ ├── parser.go │ │ ├── termsize.go │ │ ├── termsize_nosysioctl.go │ │ └── termsize_windows.go ├── jmespath │ └── go-jmespath │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── LICENSE │ │ ├── Makefile │ │ ├── README.md │ │ ├── api.go │ │ ├── astnodetype_string.go │ │ ├── functions.go │ │ ├── interpreter.go │ │ ├── lexer.go │ │ ├── parser.go │ │ ├── toktype_string.go │ │ └── util.go ├── jpillora │ └── backoff │ │ ├── LICENSE │ │ ├── README.md │ │ └── backoff.go ├── json-iterator │ └── go │ │ ├── .codecov.yml │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── Gopkg.lock │ │ ├── Gopkg.toml │ │ ├── LICENSE │ │ ├── README.md │ │ ├── adapter.go │ │ ├── any.go │ │ ├── any_array.go │ │ ├── any_bool.go │ │ ├── any_float.go │ │ ├── any_int32.go │ │ ├── any_int64.go │ │ ├── any_invalid.go │ │ ├── any_nil.go │ │ ├── any_number.go │ │ ├── any_object.go │ │ ├── any_str.go │ │ ├── any_uint32.go │ │ ├── any_uint64.go │ │ ├── build.sh │ │ ├── config.go │ │ ├── fuzzy_mode_convert_table.md │ │ ├── iter.go │ │ ├── iter_array.go │ │ ├── iter_float.go │ │ ├── iter_int.go │ │ ├── iter_object.go │ │ ├── iter_skip.go │ │ ├── iter_skip_sloppy.go │ │ ├── iter_skip_strict.go │ │ ├── iter_str.go │ │ ├── jsoniter.go │ │ ├── pool.go │ │ ├── reflect.go │ │ ├── reflect_array.go │ │ ├── reflect_dynamic.go │ │ ├── reflect_extension.go │ │ ├── reflect_json_number.go │ │ ├── reflect_json_raw_message.go │ │ ├── reflect_map.go │ │ ├── reflect_marshaler.go │ │ ├── reflect_native.go │ │ ├── reflect_optional.go │ │ ├── reflect_slice.go │ │ ├── reflect_struct_decoder.go │ │ ├── reflect_struct_encoder.go │ │ ├── stream.go │ │ ├── stream_float.go │ │ ├── stream_int.go │ │ ├── stream_str.go │ │ └── test.sh ├── julienschmidt │ └── httprouter │ │ ├── .travis.yml │ │ ├── LICENSE │ │ ├── README.md │ │ ├── path.go │ │ ├── router.go │ │ └── tree.go ├── klauspost │ ├── compress │ │ ├── .gitattributes │ │ ├── .gitignore │ │ ├── .goreleaser.yml │ │ ├── LICENSE │ │ ├── README.md │ │ ├── SECURITY.md │ │ ├── compressible.go │ │ ├── flate │ │ │ ├── deflate.go │ │ │ ├── dict_decoder.go │ │ │ ├── fast_encoder.go │ │ │ ├── huffman_bit_writer.go │ │ │ ├── huffman_code.go │ │ │ ├── huffman_sortByFreq.go │ │ │ ├── huffman_sortByLiteral.go │ │ │ ├── inflate.go │ │ │ ├── inflate_gen.go │ │ │ ├── level1.go │ │ │ ├── level2.go │ │ │ ├── level3.go │ │ │ ├── level4.go │ │ │ ├── level5.go │ │ │ ├── level6.go │ │ │ ├── matchlen_generic.go │ │ │ ├── regmask_amd64.go │ │ │ ├── regmask_other.go │ │ │ ├── stateless.go │ │ │ └── token.go │ │ ├── fse │ │ │ ├── README.md │ │ │ ├── bitreader.go │ │ │ ├── bitwriter.go │ │ │ ├── bytereader.go │ │ │ ├── compress.go │ │ │ ├── decompress.go │ │ │ └── fse.go │ │ ├── gen.sh │ │ ├── gzip │ │ │ ├── gunzip.go │ │ │ └── gzip.go │ │ ├── huff0 │ │ │ ├── .gitignore │ │ │ ├── README.md │ │ │ ├── bitreader.go │ │ │ ├── bitwriter.go │ │ │ ├── compress.go │ │ │ ├── decompress.go │ │ │ ├── decompress_amd64.go │ │ │ ├── decompress_amd64.s │ │ │ ├── decompress_generic.go │ │ │ └── huff0.go │ │ ├── internal │ │ │ ├── cpuinfo │ │ │ │ ├── cpuinfo.go │ │ │ │ ├── cpuinfo_amd64.go │ │ │ │ └── cpuinfo_amd64.s │ │ │ ├── le │ │ │ │ ├── le.go │ │ │ │ ├── unsafe_disabled.go │ │ │ │ └── unsafe_enabled.go │ │ │ ├── race │ │ │ │ ├── norace.go │ │ │ │ └── race.go │ │ │ └── snapref │ │ │ │ ├── LICENSE │ │ │ │ ├── decode.go │ │ │ │ ├── decode_other.go │ │ │ │ ├── encode.go │ │ │ │ ├── encode_other.go │ │ │ │ └── snappy.go │ │ ├── s2 │ │ │ ├── .gitignore │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── decode.go │ │ │ ├── decode_amd64.s │ │ │ ├── decode_arm64.s │ │ │ ├── decode_asm.go │ │ │ ├── decode_other.go │ │ │ ├── dict.go │ │ │ ├── encode.go │ │ │ ├── encode_all.go │ │ │ ├── encode_amd64.go │ │ │ ├── encode_best.go │ │ │ ├── encode_better.go │ │ │ ├── encode_go.go │ │ │ ├── encodeblock_amd64.go │ │ │ ├── encodeblock_amd64.s │ │ │ ├── index.go │ │ │ ├── lz4convert.go │ │ │ ├── lz4sconvert.go │ │ │ ├── reader.go │ │ │ ├── s2.go │ │ │ └── writer.go │ │ ├── s2sx.mod │ │ ├── s2sx.sum │ │ ├── snappy │ │ │ ├── .gitignore │ │ │ ├── AUTHORS │ │ │ ├── CONTRIBUTORS │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── decode.go │ │ │ ├── encode.go │ │ │ └── snappy.go │ │ ├── zlib │ │ │ ├── reader.go │ │ │ └── writer.go │ │ └── zstd │ │ │ ├── README.md │ │ │ ├── bitreader.go │ │ │ ├── bitwriter.go │ │ │ ├── blockdec.go │ │ │ ├── blockenc.go │ │ │ ├── blocktype_string.go │ │ │ ├── bytebuf.go │ │ │ ├── bytereader.go │ │ │ ├── decodeheader.go │ │ │ ├── decoder.go │ │ │ ├── decoder_options.go │ │ │ ├── dict.go │ │ │ ├── enc_base.go │ │ │ ├── enc_best.go │ │ │ ├── enc_better.go │ │ │ ├── enc_dfast.go │ │ │ ├── enc_fast.go │ │ │ ├── encoder.go │ │ │ ├── encoder_options.go │ │ │ ├── framedec.go │ │ │ ├── frameenc.go │ │ │ ├── fse_decoder.go │ │ │ ├── fse_decoder_amd64.go │ │ │ ├── fse_decoder_amd64.s │ │ │ ├── fse_decoder_generic.go │ │ │ ├── fse_encoder.go │ │ │ ├── fse_predefined.go │ │ │ ├── hash.go │ │ │ ├── history.go │ │ │ ├── internal │ │ │ └── xxhash │ │ │ │ ├── LICENSE.txt │ │ │ │ ├── README.md │ │ │ │ ├── xxhash.go │ │ │ │ ├── xxhash_amd64.s │ │ │ │ ├── xxhash_arm64.s │ │ │ │ ├── xxhash_asm.go │ │ │ │ ├── xxhash_other.go │ │ │ │ └── xxhash_safe.go │ │ │ ├── matchlen_amd64.go │ │ │ ├── matchlen_amd64.s │ │ │ ├── matchlen_generic.go │ │ │ ├── seqdec.go │ │ │ ├── seqdec_amd64.go │ │ │ ├── seqdec_amd64.s │ │ │ ├── seqdec_generic.go │ │ │ ├── seqenc.go │ │ │ ├── simple_go124.go │ │ │ ├── snappy.go │ │ │ ├── zip.go │ │ │ └── zstd.go │ ├── cpuid │ │ └── v2 │ │ │ ├── .gitignore │ │ │ ├── .goreleaser.yml │ │ │ ├── CONTRIBUTING.txt │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── cpuid.go │ │ │ ├── cpuid_386.s │ │ │ ├── cpuid_amd64.s │ │ │ ├── cpuid_arm64.s │ │ │ ├── detect_arm64.go │ │ │ ├── detect_ref.go │ │ │ ├── detect_x86.go │ │ │ ├── featureid_string.go │ │ │ ├── os_darwin_arm64.go │ │ │ ├── os_linux_arm64.go │ │ │ ├── os_other_arm64.go │ │ │ ├── os_safe_linux_arm64.go │ │ │ ├── os_unsafe_linux_arm64.go │ │ │ └── test-architectures.sh │ └── crc32 │ │ ├── .gitignore │ │ ├── LICENSE │ │ ├── README.md │ │ ├── crc32.go │ │ ├── crc32_amd64.go │ │ ├── crc32_amd64.s │ │ ├── crc32_arm64.go │ │ ├── crc32_arm64.s │ │ ├── crc32_generic.go │ │ ├── crc32_loong64.go │ │ ├── crc32_loong64.s │ │ ├── crc32_otherarch.go │ │ ├── crc32_ppc64le.go │ │ ├── crc32_ppc64le.s │ │ ├── crc32_s390x.go │ │ ├── crc32_s390x.s │ │ ├── crc32_table_ppc64le.s │ │ └── gen.go ├── knadh │ └── koanf │ │ ├── maps │ │ ├── LICENSE │ │ └── maps.go │ │ ├── providers │ │ └── confmap │ │ │ ├── LICENSE │ │ │ └── confmap.go │ │ └── v2 │ │ ├── .gitignore │ │ ├── LICENSE │ │ ├── README.md │ │ ├── getters.go │ │ ├── go.work │ │ ├── go.work.sum │ │ ├── interfaces.go │ │ ├── koanf.go │ │ └── options.go ├── kylelemons │ └── godebug │ │ ├── LICENSE │ │ ├── diff │ │ └── diff.go │ │ └── pretty │ │ ├── .gitignore │ │ ├── doc.go │ │ ├── public.go │ │ ├── reflect.go │ │ └── structure.go ├── lufia │ └── plan9stats │ │ ├── .gitignore │ │ ├── LICENSE │ │ ├── README.md │ │ ├── cpu.go │ │ ├── doc.go │ │ ├── host.go │ │ ├── int.go │ │ ├── opts.go │ │ └── stats.go ├── mattn │ ├── go-colorable │ │ ├── LICENSE │ │ ├── README.md │ │ ├── colorable_others.go │ │ ├── colorable_windows.go │ │ ├── go.test.sh │ │ └── noncolorable.go │ └── go-isatty │ │ ├── LICENSE │ │ ├── README.md │ │ ├── doc.go │ │ ├── go.test.sh │ │ ├── isatty_bsd.go │ │ ├── isatty_others.go │ │ ├── isatty_plan9.go │ │ ├── isatty_solaris.go │ │ ├── isatty_tcgets.go │ │ └── isatty_windows.go ├── matttproud │ └── golang_protobuf_extensions │ │ ├── LICENSE │ │ ├── NOTICE │ │ └── pbutil │ │ ├── .gitignore │ │ ├── Makefile │ │ ├── decode.go │ │ ├── doc.go │ │ └── encode.go ├── mdlayher │ ├── socket │ │ ├── CHANGELOG.md │ │ ├── LICENSE.md │ │ ├── README.md │ │ ├── accept.go │ │ ├── accept4.go │ │ ├── conn.go │ │ ├── conn_linux.go │ │ ├── doc.go │ │ ├── netns_linux.go │ │ ├── netns_others.go │ │ ├── setbuffer_linux.go │ │ ├── setbuffer_others.go │ │ ├── typ_cloexec_nonblock.go │ │ └── typ_none.go │ └── vsock │ │ ├── .gitignore │ │ ├── CHANGELOG.md │ │ ├── LICENSE.md │ │ ├── README.md │ │ ├── conn_linux.go │ │ ├── doc.go │ │ ├── fd_linux.go │ │ ├── listener_linux.go │ │ ├── vsock.go │ │ └── vsock_others.go ├── miekg │ └── dns │ │ ├── .codecov.yml │ │ ├── .gitignore │ │ ├── AUTHORS │ │ ├── CODEOWNERS │ │ ├── CONTRIBUTORS │ │ ├── COPYRIGHT │ │ ├── LICENSE │ │ ├── Makefile.fuzz │ │ ├── Makefile.release │ │ ├── README.md │ │ ├── acceptfunc.go │ │ ├── client.go │ │ ├── clientconfig.go │ │ ├── dane.go │ │ ├── defaults.go │ │ ├── dns.go │ │ ├── dnssec.go │ │ ├── dnssec_keygen.go │ │ ├── dnssec_keyscan.go │ │ ├── dnssec_privkey.go │ │ ├── doc.go │ │ ├── duplicate.go │ │ ├── edns.go │ │ ├── format.go │ │ ├── fuzz.go │ │ ├── generate.go │ │ ├── hash.go │ │ ├── labels.go │ │ ├── listen_no_socket_options.go │ │ ├── listen_socket_options.go │ │ ├── msg.go │ │ ├── msg_helpers.go │ │ ├── msg_truncate.go │ │ ├── nsecx.go │ │ ├── privaterr.go │ │ ├── reverse.go │ │ ├── sanitize.go │ │ ├── scan.go │ │ ├── scan_rr.go │ │ ├── serve_mux.go │ │ ├── server.go │ │ ├── sig0.go │ │ ├── smimea.go │ │ ├── svcb.go │ │ ├── tlsa.go │ │ ├── tools.go │ │ ├── tsig.go │ │ ├── types.go │ │ ├── udp.go │ │ ├── udp_no_control.go │ │ ├── update.go │ │ ├── version.go │ │ ├── xfr.go │ │ ├── zduplicate.go │ │ ├── zmsg.go │ │ └── ztypes.go ├── minio │ ├── crc64nvme │ │ ├── LICENSE │ │ ├── README.md │ │ ├── crc64.go │ │ ├── crc64_amd64.go │ │ ├── crc64_amd64.s │ │ ├── crc64_arm64.go │ │ ├── crc64_arm64.s │ │ └── crc64_other.go │ ├── md5-simd │ │ ├── LICENSE │ │ ├── LICENSE.Golang │ │ ├── README.md │ │ ├── block16_amd64.s │ │ ├── block8_amd64.s │ │ ├── block_amd64.go │ │ ├── md5-digest_amd64.go │ │ ├── md5-server_amd64.go │ │ ├── md5-server_fallback.go │ │ ├── md5-util_amd64.go │ │ ├── md5.go │ │ ├── md5block_amd64.go │ │ └── md5block_amd64.s │ └── minio-go │ │ └── v7 │ │ ├── .gitignore │ │ ├── .golangci.yml │ │ ├── CLAUDE.md │ │ ├── CNAME │ │ ├── CONTRIBUTING.md │ │ ├── CREDITS │ │ ├── LICENSE │ │ ├── MAINTAINERS.md │ │ ├── Makefile │ │ ├── NOTICE │ │ ├── README.md │ │ ├── api-append-object.go │ │ ├── api-bucket-cors.go │ │ ├── api-bucket-encryption.go │ │ ├── api-bucket-lifecycle.go │ │ ├── api-bucket-notification.go │ │ ├── api-bucket-policy.go │ │ ├── api-bucket-qos.go │ │ ├── api-bucket-replication.go │ │ ├── api-bucket-tagging.go │ │ ├── api-bucket-versioning.go │ │ ├── api-compose-object.go │ │ ├── api-copy-object.go │ │ ├── api-datatypes.go │ │ ├── api-error-response.go │ │ ├── api-get-object-acl.go │ │ ├── api-get-object-attributes.go │ │ ├── api-get-object-file.go │ │ ├── api-get-object.go │ │ ├── api-get-options.go │ │ ├── api-inventory-ext.go │ │ ├── api-list.go │ │ ├── api-object-legal-hold.go │ │ ├── api-object-lock.go │ │ ├── api-object-retention.go │ │ ├── api-object-tagging.go │ │ ├── api-presigned.go │ │ ├── api-prompt-object.go │ │ ├── api-prompt-options.go │ │ ├── api-put-bucket.go │ │ ├── api-put-object-common.go │ │ ├── api-put-object-fan-out.go │ │ ├── api-put-object-file-context.go │ │ ├── api-put-object-multipart.go │ │ ├── api-put-object-streaming.go │ │ ├── api-put-object.go │ │ ├── api-putobject-snowball.go │ │ ├── api-remove.go │ │ ├── api-restore.go │ │ ├── api-s3-datatypes.go │ │ ├── api-select.go │ │ ├── api-stat.go │ │ ├── api.go │ │ ├── bucket-cache.go │ │ ├── checksum.go │ │ ├── code_of_conduct.md │ │ ├── constants.go │ │ ├── core.go │ │ ├── create-session.go │ │ ├── endpoints.go │ │ ├── functional_tests.go │ │ ├── hook-reader.go │ │ ├── pkg │ │ ├── cors │ │ │ └── cors.go │ │ ├── credentials │ │ │ ├── assume_role.go │ │ │ ├── chain.go │ │ │ ├── config.json.sample │ │ │ ├── credentials.go │ │ │ ├── credentials.json │ │ │ ├── credentials.sample │ │ │ ├── doc.go │ │ │ ├── env_aws.go │ │ │ ├── env_minio.go │ │ │ ├── error_response.go │ │ │ ├── file_aws_credentials.go │ │ │ ├── file_minio_client.go │ │ │ ├── iam_aws.go │ │ │ ├── signature_type.go │ │ │ ├── static.go │ │ │ ├── sts_client_grants.go │ │ │ ├── sts_custom_identity.go │ │ │ ├── sts_ldap_identity.go │ │ │ ├── sts_tls_identity.go │ │ │ └── sts_web_identity.go │ │ ├── encrypt │ │ │ ├── fips_disabled.go │ │ │ ├── fips_enabled.go │ │ │ └── server-side.go │ │ ├── kvcache │ │ │ └── cache.go │ │ ├── lifecycle │ │ │ └── lifecycle.go │ │ ├── notification │ │ │ ├── info.go │ │ │ └── notification.go │ │ ├── replication │ │ │ └── replication.go │ │ ├── s3utils │ │ │ └── utils.go │ │ ├── set │ │ │ ├── msgp.go │ │ │ └── stringset.go │ │ ├── signer │ │ │ ├── request-signature-streaming-unsigned-trailer.go │ │ │ ├── request-signature-streaming.go │ │ │ ├── request-signature-v2.go │ │ │ ├── request-signature-v4.go │ │ │ └── utils.go │ │ ├── singleflight │ │ │ └── singleflight.go │ │ ├── sse │ │ │ └── sse.go │ │ └── tags │ │ │ └── tags.go │ │ ├── post-policy.go │ │ ├── retry-continous.go │ │ ├── retry.go │ │ ├── s3-error.go │ │ ├── transport.go │ │ └── utils.go ├── mitchellh │ ├── colorstring │ │ ├── .travis.yml │ │ ├── LICENSE │ │ ├── README.md │ │ └── colorstring.go │ ├── copystructure │ │ ├── LICENSE │ │ ├── README.md │ │ ├── copier_time.go │ │ └── copystructure.go │ ├── go-homedir │ │ ├── LICENSE │ │ ├── README.md │ │ └── homedir.go │ ├── go-wordwrap │ │ ├── LICENSE.md │ │ ├── README.md │ │ └── wordwrap.go │ ├── mapstructure │ │ ├── CHANGELOG.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── decode_hooks.go │ │ ├── error.go │ │ └── mapstructure.go │ └── reflectwalk │ │ ├── .travis.yml │ │ ├── LICENSE │ │ ├── README.md │ │ ├── location.go │ │ ├── location_string.go │ │ └── reflectwalk.go ├── modern-go │ ├── concurrent │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── LICENSE │ │ ├── README.md │ │ ├── executor.go │ │ ├── go_above_19.go │ │ ├── go_below_19.go │ │ ├── log.go │ │ ├── test.sh │ │ └── unbounded_executor.go │ └── reflect2 │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── Gopkg.lock │ │ ├── Gopkg.toml │ │ ├── LICENSE │ │ ├── README.md │ │ ├── go_above_118.go │ │ ├── go_above_19.go │ │ ├── go_below_118.go │ │ ├── reflect2.go │ │ ├── reflect2_amd64.s │ │ ├── reflect2_kind.go │ │ ├── relfect2_386.s │ │ ├── relfect2_amd64p32.s │ │ ├── relfect2_arm.s │ │ ├── relfect2_arm64.s │ │ ├── relfect2_mips64x.s │ │ ├── relfect2_mipsx.s │ │ ├── relfect2_ppc64x.s │ │ ├── relfect2_s390x.s │ │ ├── safe_field.go │ │ ├── safe_map.go │ │ ├── safe_slice.go │ │ ├── safe_struct.go │ │ ├── safe_type.go │ │ ├── type_map.go │ │ ├── unsafe_array.go │ │ ├── unsafe_eface.go │ │ ├── unsafe_field.go │ │ ├── unsafe_iface.go │ │ ├── unsafe_link.go │ │ ├── unsafe_map.go │ │ ├── unsafe_ptr.go │ │ ├── unsafe_slice.go │ │ ├── unsafe_struct.go │ │ └── unsafe_type.go ├── monochromegane │ └── go-gitignore │ │ ├── .travis.yml │ │ ├── LICENSE │ │ ├── README.md │ │ ├── depth_holder.go │ │ ├── full_scan_patterns.go │ │ ├── gitignore.go │ │ ├── index_scan_patterns.go │ │ ├── initial_holder.go │ │ ├── match.go │ │ ├── pattern.go │ │ ├── patterns.go │ │ └── util.go ├── munnerz │ └── goautoneg │ │ ├── LICENSE │ │ ├── Makefile │ │ ├── README.txt │ │ └── autoneg.go ├── mwitkow │ └── go-conntrack │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── LICENSE │ │ ├── README.md │ │ ├── dialer_reporter.go │ │ ├── dialer_wrapper.go │ │ ├── listener_reporter.go │ │ └── listener_wrapper.go ├── ncw │ └── swift │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── COPYING │ │ ├── README.md │ │ ├── auth.go │ │ ├── auth_v3.go │ │ ├── compatibility_1_0.go │ │ ├── compatibility_1_1.go │ │ ├── compatibility_1_6.go │ │ ├── compatibility_not_1_6.go │ │ ├── dlo.go │ │ ├── doc.go │ │ ├── largeobjects.go │ │ ├── meta.go │ │ ├── notes.txt │ │ ├── slo.go │ │ ├── swift.go │ │ ├── timeout_reader.go │ │ ├── travis_realserver.sh │ │ └── watchdog_reader.go ├── oklog │ ├── run │ │ ├── .gitignore │ │ ├── LICENSE │ │ ├── README.md │ │ ├── actors.go │ │ └── group.go │ └── ulid │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── AUTHORS.md │ │ ├── CHANGELOG.md │ │ ├── CONTRIBUTING.md │ │ ├── Gopkg.lock │ │ ├── Gopkg.toml │ │ ├── LICENSE │ │ ├── README.md │ │ ├── ulid.go │ │ └── v2 │ │ ├── .gitignore │ │ ├── AUTHORS.md │ │ ├── CHANGELOG.md │ │ ├── CONTRIBUTING.md │ │ ├── LICENSE │ │ ├── README.md │ │ └── ulid.go ├── okzk │ └── sdnotify │ │ ├── LICENSE │ │ ├── README.md │ │ ├── notify.go │ │ ├── notify_linux.go │ │ └── util.go ├── open-telemetry │ └── opentelemetry-collector-contrib │ │ ├── internal │ │ └── exp │ │ │ └── metrics │ │ │ ├── LICENSE │ │ │ └── identity │ │ │ ├── doc.go │ │ │ ├── metric.go │ │ │ ├── resource.go │ │ │ ├── scope.go │ │ │ └── stream.go │ │ ├── pkg │ │ └── pdatautil │ │ │ ├── LICENSE │ │ │ ├── Makefile │ │ │ ├── hash.go │ │ │ └── metadata.yaml │ │ └── processor │ │ └── deltatocumulativeprocessor │ │ ├── LICENSE │ │ ├── Makefile │ │ ├── README.md │ │ ├── config.go │ │ ├── doc.go │ │ ├── documentation.md │ │ ├── factory.go │ │ ├── internal │ │ ├── data │ │ │ ├── add.go │ │ │ └── expo │ │ │ │ ├── expo.go │ │ │ │ ├── merge.go │ │ │ │ ├── ord.go │ │ │ │ ├── scale.go │ │ │ │ └── zero.go │ │ ├── delta │ │ │ └── delta.go │ │ ├── maps │ │ │ └── map.go │ │ ├── metadata │ │ │ ├── generated_status.go │ │ │ └── generated_telemetry.go │ │ ├── metrics │ │ │ ├── data.go │ │ │ ├── iter.go │ │ │ └── metrics.go │ │ ├── putil │ │ │ └── pslice │ │ │ │ └── pslice.go │ │ └── telemetry │ │ │ ├── attr.go │ │ │ └── metrics.go │ │ ├── metadata.yaml │ │ └── processor.go ├── opentracing-contrib │ ├── go-grpc │ │ ├── .gitignore │ │ ├── LICENSE │ │ ├── README.md │ │ ├── client.go │ │ ├── errors.go │ │ ├── options.go │ │ ├── package.go │ │ ├── server.go │ │ └── shared.go │ └── go-stdlib │ │ ├── LICENSE │ │ └── nethttp │ │ ├── client.go │ │ ├── doc.go │ │ ├── metrics-tracker.go │ │ └── server.go ├── opentracing │ └── opentracing-go │ │ ├── .gitignore │ │ ├── .golangci.yml │ │ ├── CHANGELOG.md │ │ ├── LICENSE │ │ ├── Makefile │ │ ├── README.md │ │ ├── ext.go │ │ ├── ext │ │ ├── field.go │ │ └── tags.go │ │ ├── globaltracer.go │ │ ├── gocontext.go │ │ ├── log │ │ ├── field.go │ │ └── util.go │ │ ├── noop.go │ │ ├── propagation.go │ │ ├── span.go │ │ └── tracer.go ├── philhofer │ └── fwd │ │ ├── LICENSE.md │ │ ├── README.md │ │ ├── reader.go │ │ ├── writer.go │ │ ├── writer_appengine.go │ │ ├── writer_tinygo.go │ │ └── writer_unsafe.go ├── pierrec │ └── lz4 │ │ └── v4 │ │ ├── .gitignore │ │ ├── LICENSE │ │ ├── README.md │ │ ├── compressing_reader.go │ │ ├── internal │ │ ├── lz4block │ │ │ ├── block.go │ │ │ ├── blocks.go │ │ │ ├── decode_amd64.s │ │ │ ├── decode_arm.s │ │ │ ├── decode_arm64.s │ │ │ ├── decode_asm.go │ │ │ └── decode_other.go │ │ ├── lz4errors │ │ │ └── errors.go │ │ ├── lz4stream │ │ │ ├── block.go │ │ │ ├── frame.go │ │ │ └── frame_gen.go │ │ └── xxh32 │ │ │ ├── xxh32zero.go │ │ │ ├── xxh32zero_arm.go │ │ │ ├── xxh32zero_arm.s │ │ │ └── xxh32zero_other.go │ │ ├── lz4.go │ │ ├── options.go │ │ ├── options_gen.go │ │ ├── reader.go │ │ ├── state.go │ │ ├── state_gen.go │ │ └── writer.go ├── pires │ └── go-proxyproto │ │ ├── .gitignore │ │ ├── LICENSE │ │ ├── README.md │ │ ├── addr_proto.go │ │ ├── header.go │ │ ├── policy.go │ │ ├── protocol.go │ │ ├── tlv.go │ │ ├── v1.go │ │ ├── v2.go │ │ └── version_cmd.go ├── pkg │ ├── browser │ │ ├── LICENSE │ │ ├── README.md │ │ ├── browser.go │ │ ├── browser_darwin.go │ │ ├── browser_freebsd.go │ │ ├── browser_linux.go │ │ ├── browser_netbsd.go │ │ ├── browser_openbsd.go │ │ ├── browser_unsupported.go │ │ └── browser_windows.go │ └── errors │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── LICENSE │ │ ├── Makefile │ │ ├── README.md │ │ ├── appveyor.yml │ │ ├── errors.go │ │ ├── go113.go │ │ └── stack.go ├── planetscale │ └── vtprotobuf │ │ ├── LICENSE │ │ ├── protohelpers │ │ └── protohelpers.go │ │ └── types │ │ └── known │ │ ├── anypb │ │ └── any_vtproto.pb.go │ │ ├── durationpb │ │ └── duration_vtproto.pb.go │ │ ├── emptypb │ │ └── empty_vtproto.pb.go │ │ ├── structpb │ │ └── struct_vtproto.pb.go │ │ ├── timestamppb │ │ └── timestamp_vtproto.pb.go │ │ └── wrapperspb │ │ └── wrappers_vtproto.pb.go ├── pmezard │ └── go-difflib │ │ ├── LICENSE │ │ └── difflib │ │ └── difflib.go ├── power-devops │ └── perfstat │ │ ├── LICENSE │ │ ├── c_helpers.c │ │ ├── c_helpers.h │ │ ├── config.go │ │ ├── cpustat.go │ │ ├── diskstat.go │ │ ├── doc.go │ │ ├── fsstat.go │ │ ├── helpers.go │ │ ├── lparstat.go │ │ ├── lvmstat.go │ │ ├── memstat.go │ │ ├── netstat.go │ │ ├── procstat.go │ │ ├── sysconf.go │ │ ├── systemcfg.go │ │ ├── types_cpu.go │ │ ├── types_disk.go │ │ ├── types_fs.go │ │ ├── types_lpar.go │ │ ├── types_lvm.go │ │ ├── types_memory.go │ │ ├── types_network.go │ │ ├── types_process.go │ │ └── uptime.go ├── prometheus │ ├── alertmanager │ │ ├── COPYRIGHT.txt │ │ ├── LICENSE │ │ ├── NOTICE │ │ ├── api │ │ │ ├── api.go │ │ │ ├── metrics │ │ │ │ └── metrics.go │ │ │ ├── v1_deprecation_router.go │ │ │ └── v2 │ │ │ │ ├── api.go │ │ │ │ ├── compat.go │ │ │ │ ├── models │ │ │ │ ├── alert.go │ │ │ │ ├── alert_group.go │ │ │ │ ├── alert_groups.go │ │ │ │ ├── alert_status.go │ │ │ │ ├── alertmanager_config.go │ │ │ │ ├── alertmanager_status.go │ │ │ │ ├── cluster_status.go │ │ │ │ ├── gettable_alert.go │ │ │ │ ├── gettable_alerts.go │ │ │ │ ├── gettable_silence.go │ │ │ │ ├── gettable_silences.go │ │ │ │ ├── label_set.go │ │ │ │ ├── matcher.go │ │ │ │ ├── matchers.go │ │ │ │ ├── peer_status.go │ │ │ │ ├── postable_alert.go │ │ │ │ ├── postable_alerts.go │ │ │ │ ├── postable_silence.go │ │ │ │ ├── receiver.go │ │ │ │ ├── silence.go │ │ │ │ ├── silence_status.go │ │ │ │ └── version_info.go │ │ │ │ ├── openapi.yaml │ │ │ │ ├── restapi │ │ │ │ ├── configure_alertmanager.go │ │ │ │ ├── doc.go │ │ │ │ ├── embedded_spec.go │ │ │ │ ├── operations │ │ │ │ │ ├── alert │ │ │ │ │ │ ├── get_alerts.go │ │ │ │ │ │ ├── get_alerts_parameters.go │ │ │ │ │ │ ├── get_alerts_responses.go │ │ │ │ │ │ ├── get_alerts_urlbuilder.go │ │ │ │ │ │ ├── post_alerts.go │ │ │ │ │ │ ├── post_alerts_parameters.go │ │ │ │ │ │ ├── post_alerts_responses.go │ │ │ │ │ │ └── post_alerts_urlbuilder.go │ │ │ │ │ ├── alertgroup │ │ │ │ │ │ ├── get_alert_groups.go │ │ │ │ │ │ ├── get_alert_groups_parameters.go │ │ │ │ │ │ ├── get_alert_groups_responses.go │ │ │ │ │ │ └── get_alert_groups_urlbuilder.go │ │ │ │ │ ├── alertmanager_api.go │ │ │ │ │ ├── general │ │ │ │ │ │ ├── get_status.go │ │ │ │ │ │ ├── get_status_parameters.go │ │ │ │ │ │ ├── get_status_responses.go │ │ │ │ │ │ └── get_status_urlbuilder.go │ │ │ │ │ ├── receiver │ │ │ │ │ │ ├── get_receivers.go │ │ │ │ │ │ ├── get_receivers_parameters.go │ │ │ │ │ │ ├── get_receivers_responses.go │ │ │ │ │ │ └── get_receivers_urlbuilder.go │ │ │ │ │ └── silence │ │ │ │ │ │ ├── delete_silence.go │ │ │ │ │ │ ├── delete_silence_parameters.go │ │ │ │ │ │ ├── delete_silence_responses.go │ │ │ │ │ │ ├── delete_silence_urlbuilder.go │ │ │ │ │ │ ├── get_silence.go │ │ │ │ │ │ ├── get_silence_parameters.go │ │ │ │ │ │ ├── get_silence_responses.go │ │ │ │ │ │ ├── get_silence_urlbuilder.go │ │ │ │ │ │ ├── get_silences.go │ │ │ │ │ │ ├── get_silences_parameters.go │ │ │ │ │ │ ├── get_silences_responses.go │ │ │ │ │ │ ├── get_silences_urlbuilder.go │ │ │ │ │ │ ├── post_silences.go │ │ │ │ │ │ ├── post_silences_parameters.go │ │ │ │ │ │ ├── post_silences_responses.go │ │ │ │ │ │ └── post_silences_urlbuilder.go │ │ │ │ └── server.go │ │ │ │ └── testing.go │ │ ├── asset │ │ │ ├── asset.go │ │ │ ├── assets_vfsdata.go │ │ │ └── doc.go │ │ ├── cluster │ │ │ ├── advertise.go │ │ │ ├── channel.go │ │ │ ├── cluster.go │ │ │ ├── clusterpb │ │ │ │ ├── cluster.pb.go │ │ │ │ └── cluster.proto │ │ │ ├── connection_pool.go │ │ │ ├── delegate.go │ │ │ ├── tls_config.go │ │ │ ├── tls_connection.go │ │ │ └── tls_transport.go │ │ ├── config │ │ │ ├── config.go │ │ │ ├── coordinator.go │ │ │ └── notifiers.go │ │ ├── dispatch │ │ │ ├── dispatch.go │ │ │ ├── route.go │ │ │ └── timer.go │ │ ├── featurecontrol │ │ │ └── featurecontrol.go │ │ ├── flushlog │ │ │ ├── flushlog.go │ │ │ └── flushlogpb │ │ │ │ ├── flushlog.pb.go │ │ │ │ └── flushlog.proto │ │ ├── inhibit │ │ │ └── inhibit.go │ │ ├── matchers │ │ │ ├── compat │ │ │ │ └── parse.go │ │ │ └── parse │ │ │ │ ├── lexer.go │ │ │ │ ├── parse.go │ │ │ │ └── token.go │ │ ├── nflog │ │ │ ├── nflog.go │ │ │ └── nflogpb │ │ │ │ ├── nflog.pb.go │ │ │ │ ├── nflog.proto │ │ │ │ └── set.go │ │ ├── notify │ │ │ ├── discord │ │ │ │ └── discord.go │ │ │ ├── email │ │ │ │ └── email.go │ │ │ ├── msteams │ │ │ │ ├── adaptive_cards.go │ │ │ │ └── msteams.go │ │ │ ├── msteamsv2 │ │ │ │ └── msteamsv2.go │ │ │ ├── notify.go │ │ │ ├── opsgenie │ │ │ │ └── opsgenie.go │ │ │ ├── pagerduty │ │ │ │ └── pagerduty.go │ │ │ ├── pushover │ │ │ │ └── pushover.go │ │ │ ├── slack │ │ │ │ └── slack.go │ │ │ ├── sns │ │ │ │ └── sns.go │ │ │ ├── telegram │ │ │ │ └── telegram.go │ │ │ ├── util.go │ │ │ ├── victorops │ │ │ │ └── victorops.go │ │ │ ├── webex │ │ │ │ └── webex.go │ │ │ ├── webhook │ │ │ │ └── webhook.go │ │ │ └── wechat │ │ │ │ └── wechat.go │ │ ├── pkg │ │ │ └── labels │ │ │ │ ├── matcher.go │ │ │ │ └── parse.go │ │ ├── provider │ │ │ ├── mem │ │ │ │ └── mem.go │ │ │ └── provider.go │ │ ├── silence │ │ │ ├── silence.go │ │ │ └── silencepb │ │ │ │ ├── silence.pb.go │ │ │ │ └── silence.proto │ │ ├── store │ │ │ └── store.go │ │ ├── template │ │ │ ├── Dockerfile │ │ │ ├── Makefile │ │ │ ├── default.tmpl │ │ │ ├── email.html │ │ │ ├── email.tmpl │ │ │ ├── inline-css.js │ │ │ └── template.go │ │ ├── timeinterval │ │ │ └── timeinterval.go │ │ ├── tracing │ │ │ └── http.go │ │ ├── types │ │ │ └── types.go │ │ └── ui │ │ │ ├── Dockerfile │ │ │ └── web.go │ ├── client_golang │ │ ├── LICENSE │ │ ├── NOTICE │ │ ├── api │ │ │ ├── client.go │ │ │ └── prometheus │ │ │ │ └── v1 │ │ │ │ └── api.go │ │ ├── exp │ │ │ ├── LICENSE │ │ │ ├── api │ │ │ │ └── remote │ │ │ │ │ ├── remote_api.go │ │ │ │ │ └── remote_headers.go │ │ │ └── internal │ │ │ │ └── github.com │ │ │ │ └── efficientgo │ │ │ │ └── core │ │ │ │ └── backoff │ │ │ │ └── backoff.go │ │ ├── internal │ │ │ └── github.com │ │ │ │ └── golang │ │ │ │ └── gddo │ │ │ │ ├── LICENSE │ │ │ │ └── httputil │ │ │ │ ├── header │ │ │ │ └── header.go │ │ │ │ └── negotiate.go │ │ └── prometheus │ │ │ ├── .gitignore │ │ │ ├── README.md │ │ │ ├── build_info_collector.go │ │ │ ├── collector.go │ │ │ ├── collectorfunc.go │ │ │ ├── collectors │ │ │ ├── collectors.go │ │ │ ├── dbstats_collector.go │ │ │ ├── expvar_collector.go │ │ │ ├── go_collector_latest.go │ │ │ └── process_collector.go │ │ │ ├── counter.go │ │ │ ├── desc.go │ │ │ ├── doc.go │ │ │ ├── expvar_collector.go │ │ │ ├── fnv.go │ │ │ ├── gauge.go │ │ │ ├── get_pid.go │ │ │ ├── get_pid_gopherjs.go │ │ │ ├── go_collector.go │ │ │ ├── go_collector_latest.go │ │ │ ├── histogram.go │ │ │ ├── internal │ │ │ ├── almost_equal.go │ │ │ ├── difflib.go │ │ │ ├── go_collector_options.go │ │ │ ├── go_runtime_metrics.go │ │ │ └── metric.go │ │ │ ├── labels.go │ │ │ ├── metric.go │ │ │ ├── num_threads.go │ │ │ ├── num_threads_gopherjs.go │ │ │ ├── observer.go │ │ │ ├── process_collector.go │ │ │ ├── process_collector_darwin.go │ │ │ ├── process_collector_mem_cgo_darwin.c │ │ │ ├── process_collector_mem_cgo_darwin.go │ │ │ ├── process_collector_mem_nocgo_darwin.go │ │ │ ├── process_collector_not_supported.go │ │ │ ├── process_collector_procfsenabled.go │ │ │ ├── process_collector_windows.go │ │ │ ├── promauto │ │ │ └── auto.go │ │ │ ├── promhttp │ │ │ ├── delegator.go │ │ │ ├── http.go │ │ │ ├── instrument_client.go │ │ │ ├── instrument_server.go │ │ │ ├── internal │ │ │ │ └── compression.go │ │ │ └── option.go │ │ │ ├── push │ │ │ └── push.go │ │ │ ├── registry.go │ │ │ ├── summary.go │ │ │ ├── testutil │ │ │ ├── lint.go │ │ │ ├── promlint │ │ │ │ ├── problem.go │ │ │ │ ├── promlint.go │ │ │ │ ├── validation.go │ │ │ │ └── validations │ │ │ │ │ ├── counter_validations.go │ │ │ │ │ ├── duplicate_validations.go │ │ │ │ │ ├── generic_name_validations.go │ │ │ │ │ ├── help_validations.go │ │ │ │ │ ├── histogram_validations.go │ │ │ │ │ └── units.go │ │ │ └── testutil.go │ │ │ ├── timer.go │ │ │ ├── untyped.go │ │ │ ├── value.go │ │ │ ├── vec.go │ │ │ ├── vnext.go │ │ │ └── wrap.go │ ├── client_model │ │ ├── LICENSE │ │ ├── NOTICE │ │ └── go │ │ │ └── metrics.pb.go │ ├── common │ │ ├── LICENSE │ │ ├── NOTICE │ │ ├── config │ │ │ ├── config.go │ │ │ ├── headers.go │ │ │ ├── http_config.go │ │ │ └── oauth_assertion.go │ │ ├── expfmt │ │ │ ├── decode.go │ │ │ ├── encode.go │ │ │ ├── expfmt.go │ │ │ ├── fuzz.go │ │ │ ├── openmetrics_create.go │ │ │ ├── text_create.go │ │ │ └── text_parse.go │ │ ├── helpers │ │ │ └── templates │ │ │ │ └── time.go │ │ ├── model │ │ │ ├── alert.go │ │ │ ├── fingerprinting.go │ │ │ ├── fnv.go │ │ │ ├── labels.go │ │ │ ├── labelset.go │ │ │ ├── labelset_string.go │ │ │ ├── metadata.go │ │ │ ├── metric.go │ │ │ ├── model.go │ │ │ ├── signature.go │ │ │ ├── silence.go │ │ │ ├── time.go │ │ │ ├── value.go │ │ │ ├── value_float.go │ │ │ ├── value_histogram.go │ │ │ └── value_type.go │ │ ├── promslog │ │ │ └── slog.go │ │ ├── route │ │ │ └── route.go │ │ ├── sigv4 │ │ │ ├── LICENSE │ │ │ ├── Makefile │ │ │ ├── sigv4.go │ │ │ └── sigv4_config.go │ │ └── version │ │ │ └── info.go │ ├── exporter-toolkit │ │ ├── LICENSE │ │ └── web │ │ │ ├── README.md │ │ │ ├── cache.go │ │ │ ├── handler.go │ │ │ ├── landing_page.css │ │ │ ├── landing_page.go │ │ │ ├── landing_page.html │ │ │ ├── tls_config.go │ │ │ └── web-config.yml │ ├── otlptranslator │ │ ├── .gitignore │ │ ├── .golangci.yml │ │ ├── CODE_OF_CONDUCT.md │ │ ├── LICENSE │ │ ├── MAINTAINERS.md │ │ ├── Makefile │ │ ├── README.md │ │ ├── SECURITY.md │ │ ├── constants.go │ │ ├── doc.go │ │ ├── label_namer.go │ │ ├── metric_namer.go │ │ ├── metric_type.go │ │ ├── strategy.go │ │ ├── strconv.go │ │ └── unit_namer.go │ ├── procfs │ │ ├── .gitignore │ │ ├── .golangci.yml │ │ ├── CODE_OF_CONDUCT.md │ │ ├── CONTRIBUTING.md │ │ ├── LICENSE │ │ ├── MAINTAINERS.md │ │ ├── Makefile │ │ ├── Makefile.common │ │ ├── NOTICE │ │ ├── README.md │ │ ├── SECURITY.md │ │ ├── arp.go │ │ ├── buddyinfo.go │ │ ├── cmdline.go │ │ ├── cpuinfo.go │ │ ├── cpuinfo_armx.go │ │ ├── cpuinfo_loong64.go │ │ ├── cpuinfo_mipsx.go │ │ ├── cpuinfo_others.go │ │ ├── cpuinfo_ppcx.go │ │ ├── cpuinfo_riscvx.go │ │ ├── cpuinfo_s390x.go │ │ ├── cpuinfo_x86.go │ │ ├── crypto.go │ │ ├── doc.go │ │ ├── fs.go │ │ ├── fs_statfs_notype.go │ │ ├── fs_statfs_type.go │ │ ├── fscache.go │ │ ├── internal │ │ │ ├── fs │ │ │ │ └── fs.go │ │ │ └── util │ │ │ │ ├── parse.go │ │ │ │ ├── readfile.go │ │ │ │ ├── sysreadfile.go │ │ │ │ ├── sysreadfile_compat.go │ │ │ │ └── valueparser.go │ │ ├── ipvs.go │ │ ├── kernel_hung.go │ │ ├── kernel_random.go │ │ ├── loadavg.go │ │ ├── mdstat.go │ │ ├── meminfo.go │ │ ├── mountinfo.go │ │ ├── mountstats.go │ │ ├── net_conntrackstat.go │ │ ├── net_dev.go │ │ ├── net_dev_snmp6.go │ │ ├── net_ip_socket.go │ │ ├── net_protocols.go │ │ ├── net_route.go │ │ ├── net_sockstat.go │ │ ├── net_softnet.go │ │ ├── net_tcp.go │ │ ├── net_tls_stat.go │ │ ├── net_udp.go │ │ ├── net_unix.go │ │ ├── net_wireless.go │ │ ├── net_xfrm.go │ │ ├── netstat.go │ │ ├── nfnetlink_queue.go │ │ ├── proc.go │ │ ├── proc_cgroup.go │ │ ├── proc_cgroups.go │ │ ├── proc_environ.go │ │ ├── proc_fdinfo.go │ │ ├── proc_interrupts.go │ │ ├── proc_io.go │ │ ├── proc_limits.go │ │ ├── proc_maps.go │ │ ├── proc_netstat.go │ │ ├── proc_ns.go │ │ ├── proc_psi.go │ │ ├── proc_smaps.go │ │ ├── proc_snmp.go │ │ ├── proc_snmp6.go │ │ ├── proc_stat.go │ │ ├── proc_statm.go │ │ ├── proc_status.go │ │ ├── proc_sys.go │ │ ├── schedstat.go │ │ ├── slab.go │ │ ├── softirqs.go │ │ ├── stat.go │ │ ├── swaps.go │ │ ├── thread.go │ │ ├── ttar │ │ ├── vm.go │ │ └── zoneinfo.go │ ├── prometheus │ │ ├── LICENSE │ │ ├── NOTICE │ │ ├── config │ │ │ ├── config.go │ │ │ └── reload.go │ │ ├── discovery │ │ │ ├── README.md │ │ │ ├── discoverer_metrics_noop.go │ │ │ ├── discovery.go │ │ │ ├── manager.go │ │ │ ├── metrics.go │ │ │ ├── metrics_k8s_client.go │ │ │ ├── metrics_refresh.go │ │ │ ├── refresh │ │ │ │ └── refresh.go │ │ │ ├── registry.go │ │ │ ├── targetgroup │ │ │ │ └── targetgroup.go │ │ │ └── util.go │ │ ├── model │ │ │ ├── exemplar │ │ │ │ └── exemplar.go │ │ │ ├── histogram │ │ │ │ ├── convert.go │ │ │ │ ├── float_histogram.go │ │ │ │ ├── generic.go │ │ │ │ ├── histogram.go │ │ │ │ └── test_utils.go │ │ │ ├── labels │ │ │ │ ├── cost.go │ │ │ │ ├── float.go │ │ │ │ ├── labels_common.go │ │ │ │ ├── labels_dedupelabels.go │ │ │ │ ├── labels_slicelabels.go │ │ │ │ ├── labels_stringlabels.go │ │ │ │ ├── matcher.go │ │ │ │ ├── regexp.go │ │ │ │ ├── sharding.go │ │ │ │ ├── sharding_dedupelabels.go │ │ │ │ ├── sharding_stringlabels.go │ │ │ │ └── test_utils.go │ │ │ ├── metadata │ │ │ │ └── metadata.go │ │ │ ├── relabel │ │ │ │ └── relabel.go │ │ │ ├── rulefmt │ │ │ │ └── rulefmt.go │ │ │ ├── textparse │ │ │ │ ├── README.md │ │ │ │ ├── interface.go │ │ │ │ ├── nhcbparse.go │ │ │ │ ├── openmetricslex.l │ │ │ │ ├── openmetricslex.l.go │ │ │ │ ├── openmetricsparse.go │ │ │ │ ├── promlex.l │ │ │ │ ├── promlex.l.go │ │ │ │ ├── promparse.go │ │ │ │ └── protobufparse.go │ │ │ ├── timestamp │ │ │ │ └── timestamp.go │ │ │ └── value │ │ │ │ └── value.go │ │ ├── notifier │ │ │ ├── alert.go │ │ │ ├── alertmanager.go │ │ │ ├── alertmanagerset.go │ │ │ ├── manager.go │ │ │ ├── metric.go │ │ │ └── util.go │ │ ├── prompb │ │ │ ├── README.md │ │ │ ├── buf.gen.yaml │ │ │ ├── buf.lock │ │ │ ├── buf.yaml │ │ │ ├── codec.go │ │ │ ├── custom.go │ │ │ ├── io │ │ │ │ └── prometheus │ │ │ │ │ ├── client │ │ │ │ │ ├── decoder.go │ │ │ │ │ ├── metrics.pb.go │ │ │ │ │ └── metrics.proto │ │ │ │ │ └── write │ │ │ │ │ └── v2 │ │ │ │ │ ├── codec.go │ │ │ │ │ ├── custom.go │ │ │ │ │ ├── symbols.go │ │ │ │ │ ├── types.pb.go │ │ │ │ │ └── types.proto │ │ │ ├── remote.pb.go │ │ │ ├── remote.proto │ │ │ ├── types.pb.go │ │ │ └── types.proto │ │ ├── promql │ │ │ ├── durations.go │ │ │ ├── engine.go │ │ │ ├── functions.go │ │ │ ├── fuzz.go │ │ │ ├── histogram_stats_iterator.go │ │ │ ├── info.go │ │ │ ├── parser │ │ │ │ ├── ast.go │ │ │ │ ├── functions.go │ │ │ │ ├── generated_parser.y │ │ │ │ ├── generated_parser.y.go │ │ │ │ ├── lex.go │ │ │ │ ├── parse.go │ │ │ │ ├── posrange │ │ │ │ │ └── posrange.go │ │ │ │ ├── prettier.go │ │ │ │ ├── prettier_rules.md │ │ │ │ ├── printer.go │ │ │ │ └── value.go │ │ │ ├── promqltest │ │ │ │ ├── README.md │ │ │ │ ├── test.go │ │ │ │ ├── test_migrate.go │ │ │ │ └── testdata │ │ │ │ │ ├── aggregators.test │ │ │ │ │ ├── at_modifier.test │ │ │ │ │ ├── collision.test │ │ │ │ │ ├── duration_expression.test │ │ │ │ │ ├── extended_vectors.test │ │ │ │ │ ├── functions.test │ │ │ │ │ ├── histograms.test │ │ │ │ │ ├── info.test │ │ │ │ │ ├── limit.test │ │ │ │ │ ├── literals.test │ │ │ │ │ ├── name_label_dropping.test │ │ │ │ │ ├── native_histograms.test │ │ │ │ │ ├── operators.test │ │ │ │ │ ├── range_queries.test │ │ │ │ │ ├── selectors.test │ │ │ │ │ ├── staleness.test │ │ │ │ │ ├── subquery.test │ │ │ │ │ ├── trig_functions.test │ │ │ │ │ └── type_and_unit.test │ │ │ ├── quantile.go │ │ │ ├── query_logger.go │ │ │ └── value.go │ │ ├── rules │ │ │ ├── alerting.go │ │ │ ├── group.go │ │ │ ├── manager.go │ │ │ ├── origin.go │ │ │ ├── recording.go │ │ │ └── rule.go │ │ ├── schema │ │ │ └── labels.go │ │ ├── scrape │ │ │ ├── clientprotobuf.go │ │ │ ├── manager.go │ │ │ ├── metrics.go │ │ │ ├── scrape.go │ │ │ └── target.go │ │ ├── storage │ │ │ ├── buffer.go │ │ │ ├── errors.go │ │ │ ├── fanout.go │ │ │ ├── generic.go │ │ │ ├── interface.go │ │ │ ├── labelvalues.go │ │ │ ├── lazy.go │ │ │ ├── memoized_iterator.go │ │ │ ├── merge.go │ │ │ ├── noop.go │ │ │ ├── remote │ │ │ │ ├── azuread │ │ │ │ │ ├── README.md │ │ │ │ │ └── azuread.go │ │ │ │ ├── chunked.go │ │ │ │ ├── client.go │ │ │ │ ├── codec.go │ │ │ │ ├── dial_context.go │ │ │ │ ├── ewma.go │ │ │ │ ├── googleiam │ │ │ │ │ └── googleiam.go │ │ │ │ ├── intern.go │ │ │ │ ├── max_timestamp.go │ │ │ │ ├── metadata_watcher.go │ │ │ │ ├── otlptranslator │ │ │ │ │ └── prometheusremotewrite │ │ │ │ │ │ ├── combined_appender.go │ │ │ │ │ │ ├── context.go │ │ │ │ │ │ ├── helper.go │ │ │ │ │ │ ├── histograms.go │ │ │ │ │ │ ├── metrics_to_prw.go │ │ │ │ │ │ ├── number_data_points.go │ │ │ │ │ │ └── otlp_to_openmetrics_metadata.go │ │ │ │ ├── queue_manager.go │ │ │ │ ├── read.go │ │ │ │ ├── read_handler.go │ │ │ │ ├── stats.go │ │ │ │ ├── storage.go │ │ │ │ ├── write.go │ │ │ │ └── write_handler.go │ │ │ ├── secondary.go │ │ │ └── series.go │ │ ├── template │ │ │ └── template.go │ │ ├── tsdb │ │ │ ├── .gitignore │ │ │ ├── CHANGELOG.md │ │ │ ├── README.md │ │ │ ├── addsymbol.go │ │ │ ├── addsymbol_stringlabels.go │ │ │ ├── async_block_writer.go │ │ │ ├── block.go │ │ │ ├── blockwriter.go │ │ │ ├── chunkenc │ │ │ │ ├── bstream.go │ │ │ │ ├── chunk.go │ │ │ │ ├── float_histogram.go │ │ │ │ ├── histogram.go │ │ │ │ ├── histogram_meta.go │ │ │ │ ├── varbit.go │ │ │ │ └── xor.go │ │ │ ├── chunks │ │ │ │ ├── chunk_write_queue.go │ │ │ │ ├── chunks.go │ │ │ │ ├── head_chunks.go │ │ │ │ ├── head_chunks_other.go │ │ │ │ ├── head_chunks_windows.go │ │ │ │ ├── queue.go │ │ │ │ └── samples.go │ │ │ ├── compact.go │ │ │ ├── db.go │ │ │ ├── encoding │ │ │ │ └── encoding.go │ │ │ ├── errors │ │ │ │ └── errors.go │ │ │ ├── exemplar.go │ │ │ ├── fileutil │ │ │ │ ├── dir.go │ │ │ │ ├── dir_unix.go │ │ │ │ ├── dir_windows.go │ │ │ │ ├── direct_io.go │ │ │ │ ├── direct_io_force.go │ │ │ │ ├── direct_io_linux.go │ │ │ │ ├── direct_io_unsupported.go │ │ │ │ ├── direct_io_writer.go │ │ │ │ ├── fileutil.go │ │ │ │ ├── flock.go │ │ │ │ ├── flock_js.go │ │ │ │ ├── flock_plan9.go │ │ │ │ ├── flock_solaris.go │ │ │ │ ├── flock_unix.go │ │ │ │ ├── flock_windows.go │ │ │ │ ├── mmap.go │ │ │ │ ├── mmap_386.go │ │ │ │ ├── mmap_amd64.go │ │ │ │ ├── mmap_arm64.go │ │ │ │ ├── mmap_js.go │ │ │ │ ├── mmap_unix.go │ │ │ │ ├── mmap_windows.go │ │ │ │ ├── preallocate.go │ │ │ │ ├── preallocate_darwin.go │ │ │ │ ├── preallocate_linux.go │ │ │ │ ├── preallocate_other.go │ │ │ │ ├── sync.go │ │ │ │ ├── sync_darwin.go │ │ │ │ └── sync_linux.go │ │ │ ├── goversion │ │ │ │ ├── goversion.go │ │ │ │ └── init.go │ │ │ ├── hashcache │ │ │ │ └── series_hash_cache.go │ │ │ ├── head.go │ │ │ ├── head_append.go │ │ │ ├── head_dedupelabels.go │ │ │ ├── head_other.go │ │ │ ├── head_read.go │ │ │ ├── head_read_mimir.go │ │ │ ├── head_wal.go │ │ │ ├── index │ │ │ │ ├── index.go │ │ │ │ ├── labelvalues.go │ │ │ │ ├── lookup.go │ │ │ │ ├── postings.go │ │ │ │ ├── postings_cloner.go │ │ │ │ └── postingsstats.go │ │ │ ├── isolation.go │ │ │ ├── ooo_head.go │ │ │ ├── ooo_head_read.go │ │ │ ├── ooo_isolation.go │ │ │ ├── postings_for_matchers_cache.go │ │ │ ├── querier.go │ │ │ ├── record │ │ │ │ └── record.go │ │ │ ├── repair.go │ │ │ ├── symbols_batch.go │ │ │ ├── testutil.go │ │ │ ├── tombstones │ │ │ │ └── tombstones.go │ │ │ ├── tsdbblockutil.go │ │ │ ├── tsdbutil │ │ │ │ ├── dir_locker.go │ │ │ │ ├── dir_locker_testutil.go │ │ │ │ └── histogram.go │ │ │ └── wlog │ │ │ │ ├── checkpoint.go │ │ │ │ ├── live_reader.go │ │ │ │ ├── reader.go │ │ │ │ ├── watcher.go │ │ │ │ └── wlog.go │ │ ├── util │ │ │ ├── almost │ │ │ │ └── almost.go │ │ │ ├── annotations │ │ │ │ └── annotations.go │ │ │ ├── compression │ │ │ │ ├── buffers.go │ │ │ │ └── compression.go │ │ │ ├── context │ │ │ │ └── tracker.go │ │ │ ├── convertnhcb │ │ │ │ └── convertnhcb.go │ │ │ ├── gate │ │ │ │ └── gate.go │ │ │ ├── httputil │ │ │ │ ├── compression.go │ │ │ │ ├── context.go │ │ │ │ └── cors.go │ │ │ ├── jsonutil │ │ │ │ └── marshal.go │ │ │ ├── logging │ │ │ │ ├── dedupe.go │ │ │ │ └── file.go │ │ │ ├── namevalidationutil │ │ │ │ └── namevalidationutil.go │ │ │ ├── notifications │ │ │ │ └── notifications.go │ │ │ ├── osutil │ │ │ │ └── hostname.go │ │ │ ├── pool │ │ │ │ └── pool.go │ │ │ ├── stats │ │ │ │ ├── query_stats.go │ │ │ │ └── timer.go │ │ │ ├── strutil │ │ │ │ ├── quote.go │ │ │ │ └── strconv.go │ │ │ ├── teststorage │ │ │ │ └── storage.go │ │ │ ├── testutil │ │ │ │ ├── cmp.go │ │ │ │ ├── context.go │ │ │ │ ├── directory.go │ │ │ │ ├── port.go │ │ │ │ ├── roundtrip.go │ │ │ │ └── testing.go │ │ │ └── zeropool │ │ │ │ └── pool.go │ │ └── web │ │ │ └── api │ │ │ └── v1 │ │ │ ├── api.go │ │ │ ├── codec.go │ │ │ ├── json_codec.go │ │ │ └── translate_ast.go │ └── sigv4 │ │ ├── .golangci.yml │ │ ├── .yamllint │ │ ├── CODE_OF_CONDUCT.md │ │ ├── CONTRIBUTING.md │ │ ├── LICENSE │ │ ├── MAINTAINERS.md │ │ ├── Makefile │ │ ├── Makefile.common │ │ ├── NOTICE │ │ ├── README.md │ │ ├── RELEASE.md │ │ ├── SECURITY.md │ │ ├── sigv4.go │ │ └── sigv4_config.go ├── puzpuzpuz │ └── xsync │ │ └── v3 │ │ ├── .gitignore │ │ ├── BENCHMARKS.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── counter.go │ │ ├── map.go │ │ ├── mapof.go │ │ ├── mpmcqueue.go │ │ ├── mpmcqueueof.go │ │ ├── rbmutex.go │ │ ├── spscqueue.go │ │ ├── spscqueueof.go │ │ ├── util.go │ │ └── util_hash.go ├── rainycape │ └── unidecode │ │ ├── .gitignore │ │ ├── LICENSE │ │ ├── README.md │ │ ├── decode.go │ │ ├── make_table.go │ │ ├── table.go │ │ ├── table.txt │ │ └── unidecode.go ├── rs │ ├── cors │ │ ├── LICENSE │ │ ├── README.md │ │ ├── cors.go │ │ ├── internal │ │ │ └── sortedset.go │ │ └── utils.go │ └── xid │ │ ├── .appveyor.yml │ │ ├── .gitignore │ │ ├── .golangci.yml │ │ ├── .travis.yml │ │ ├── LICENSE │ │ ├── README.md │ │ ├── error.go │ │ ├── hostid_darwin.go │ │ ├── hostid_fallback.go │ │ ├── hostid_freebsd.go │ │ ├── hostid_linux.go │ │ ├── hostid_windows.go │ │ └── id.go ├── ryanuber │ └── go-glob │ │ ├── .travis.yml │ │ ├── LICENSE │ │ ├── README.md │ │ └── glob.go ├── sean- │ └── seed │ │ ├── .gitignore │ │ ├── LICENSE │ │ ├── README.md │ │ └── init.go ├── segmentio │ └── fasthash │ │ ├── LICENSE │ │ └── fnv1a │ │ ├── hash.go │ │ └── hash32.go ├── sercand │ └── kuberesolver │ │ └── v6 │ │ ├── .gitignore │ │ ├── LICENSE │ │ ├── README.md │ │ ├── builder.go │ │ ├── kubernetes.go │ │ ├── models.go │ │ ├── stream.go │ │ └── util.go ├── shirou │ └── gopsutil │ │ └── v4 │ │ ├── LICENSE │ │ ├── common │ │ └── env.go │ │ ├── cpu │ │ ├── cpu.go │ │ ├── cpu_aix.go │ │ ├── cpu_aix_cgo.go │ │ ├── cpu_aix_nocgo.go │ │ ├── cpu_darwin.go │ │ ├── cpu_darwin_arm64.go │ │ ├── cpu_darwin_fallback.go │ │ ├── cpu_dragonfly.go │ │ ├── cpu_dragonfly_amd64.go │ │ ├── cpu_fallback.go │ │ ├── cpu_freebsd.go │ │ ├── cpu_freebsd_386.go │ │ ├── cpu_freebsd_amd64.go │ │ ├── cpu_freebsd_arm.go │ │ ├── cpu_freebsd_arm64.go │ │ ├── cpu_linux.go │ │ ├── cpu_netbsd.go │ │ ├── cpu_netbsd_amd64.go │ │ ├── cpu_netbsd_arm.go │ │ ├── cpu_netbsd_arm64.go │ │ ├── cpu_openbsd.go │ │ ├── cpu_openbsd_386.go │ │ ├── cpu_openbsd_amd64.go │ │ ├── cpu_openbsd_arm.go │ │ ├── cpu_openbsd_arm64.go │ │ ├── cpu_openbsd_riscv64.go │ │ ├── cpu_plan9.go │ │ ├── cpu_solaris.go │ │ └── cpu_windows.go │ │ ├── internal │ │ └── common │ │ │ ├── common.go │ │ │ ├── common_darwin.go │ │ │ ├── common_freebsd.go │ │ │ ├── common_linux.go │ │ │ ├── common_netbsd.go │ │ │ ├── common_openbsd.go │ │ │ ├── common_unix.go │ │ │ ├── common_windows.go │ │ │ ├── endian.go │ │ │ ├── readlink_linux.go │ │ │ ├── sleep.go │ │ │ └── warnings.go │ │ ├── mem │ │ ├── ex_linux.go │ │ ├── ex_windows.go │ │ ├── mem.go │ │ ├── mem_aix.go │ │ ├── mem_aix_cgo.go │ │ ├── mem_aix_nocgo.go │ │ ├── mem_bsd.go │ │ ├── mem_darwin.go │ │ ├── mem_fallback.go │ │ ├── mem_freebsd.go │ │ ├── mem_linux.go │ │ ├── mem_netbsd.go │ │ ├── mem_openbsd.go │ │ ├── mem_openbsd_386.go │ │ ├── mem_openbsd_amd64.go │ │ ├── mem_openbsd_arm.go │ │ ├── mem_openbsd_arm64.go │ │ ├── mem_openbsd_riscv64.go │ │ ├── mem_plan9.go │ │ ├── mem_solaris.go │ │ └── mem_windows.go │ │ ├── net │ │ ├── net.go │ │ ├── net_aix.go │ │ ├── net_aix_cgo.go │ │ ├── net_aix_nocgo.go │ │ ├── net_darwin.go │ │ ├── net_fallback.go │ │ ├── net_freebsd.go │ │ ├── net_linux.go │ │ ├── net_openbsd.go │ │ ├── net_solaris.go │ │ ├── net_unix.go │ │ └── net_windows.go │ │ └── process │ │ ├── process.go │ │ ├── process_bsd.go │ │ ├── process_darwin.go │ │ ├── process_darwin_amd64.go │ │ ├── process_darwin_arm64.go │ │ ├── process_fallback.go │ │ ├── process_freebsd.go │ │ ├── process_freebsd_386.go │ │ ├── process_freebsd_amd64.go │ │ ├── process_freebsd_arm.go │ │ ├── process_freebsd_arm64.go │ │ ├── process_linux.go │ │ ├── process_openbsd.go │ │ ├── process_openbsd_386.go │ │ ├── process_openbsd_amd64.go │ │ ├── process_openbsd_arm.go │ │ ├── process_openbsd_arm64.go │ │ ├── process_openbsd_riscv64.go │ │ ├── process_plan9.go │ │ ├── process_posix.go │ │ ├── process_solaris.go │ │ ├── process_windows.go │ │ ├── process_windows_32bit.go │ │ └── process_windows_64bit.go ├── shopspring │ └── decimal │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── CHANGELOG.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── decimal-go.go │ │ ├── decimal.go │ │ └── rounding.go ├── shurcooL │ ├── httpfs │ │ ├── LICENSE │ │ ├── filter │ │ │ ├── filter.go │ │ │ └── filters.go │ │ ├── union │ │ │ └── union.go │ │ └── vfsutil │ │ │ ├── file.go │ │ │ ├── vfsutil.go │ │ │ └── walk.go │ └── vfsgen │ │ ├── .travis.yml │ │ ├── CONTRIBUTING.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── commentwriter.go │ │ ├── doc.go │ │ ├── generator.go │ │ ├── options.go │ │ └── stringwriter.go ├── sirupsen │ └── logrus │ │ ├── .gitignore │ │ ├── .golangci.yml │ │ ├── .travis.yml │ │ ├── CHANGELOG.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── alt_exit.go │ │ ├── appveyor.yml │ │ ├── buffer_pool.go │ │ ├── doc.go │ │ ├── entry.go │ │ ├── exported.go │ │ ├── formatter.go │ │ ├── hooks.go │ │ ├── json_formatter.go │ │ ├── logger.go │ │ ├── logrus.go │ │ ├── terminal_check_appengine.go │ │ ├── terminal_check_bsd.go │ │ ├── terminal_check_js.go │ │ ├── terminal_check_no_terminal.go │ │ ├── terminal_check_notappengine.go │ │ ├── terminal_check_solaris.go │ │ ├── terminal_check_unix.go │ │ ├── terminal_check_windows.go │ │ ├── text_formatter.go │ │ └── writer.go ├── spf13 │ ├── afero │ │ ├── .editorconfig │ │ ├── .gitignore │ │ ├── .golangci.yaml │ │ ├── LICENSE.txt │ │ ├── README.md │ │ ├── afero.go │ │ ├── appveyor.yml │ │ ├── basepath.go │ │ ├── cacheOnReadFs.go │ │ ├── const_bsds.go │ │ ├── const_win_unix.go │ │ ├── copyOnWriteFs.go │ │ ├── httpFs.go │ │ ├── internal │ │ │ └── common │ │ │ │ └── adapters.go │ │ ├── iofs.go │ │ ├── ioutil.go │ │ ├── lstater.go │ │ ├── match.go │ │ ├── mem │ │ │ ├── dir.go │ │ │ ├── dirmap.go │ │ │ └── file.go │ │ ├── memmap.go │ │ ├── os.go │ │ ├── path.go │ │ ├── readonlyfs.go │ │ ├── regexpfs.go │ │ ├── symlink.go │ │ ├── unionFile.go │ │ └── util.go │ ├── cast │ │ ├── .gitignore │ │ ├── LICENSE │ │ ├── Makefile │ │ ├── README.md │ │ ├── cast.go │ │ ├── caste.go │ │ └── timeformattype_string.go │ ├── cobra │ │ ├── .gitignore │ │ ├── .golangci.yml │ │ ├── .mailmap │ │ ├── CONDUCT.md │ │ ├── CONTRIBUTING.md │ │ ├── LICENSE.txt │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── README.md │ │ ├── active_help.go │ │ ├── args.go │ │ ├── bash_completions.go │ │ ├── bash_completionsV2.go │ │ ├── cobra.go │ │ ├── command.go │ │ ├── command_notwin.go │ │ ├── command_win.go │ │ ├── completions.go │ │ ├── fish_completions.go │ │ ├── flag_groups.go │ │ ├── powershell_completions.go │ │ ├── shell_completions.go │ │ └── zsh_completions.go │ └── pflag │ │ ├── .editorconfig │ │ ├── .gitignore │ │ ├── .golangci.yaml │ │ ├── .travis.yml │ │ ├── LICENSE │ │ ├── README.md │ │ ├── bool.go │ │ ├── bool_func.go │ │ ├── bool_slice.go │ │ ├── bytes.go │ │ ├── count.go │ │ ├── duration.go │ │ ├── duration_slice.go │ │ ├── errors.go │ │ ├── flag.go │ │ ├── float32.go │ │ ├── float32_slice.go │ │ ├── float64.go │ │ ├── float64_slice.go │ │ ├── func.go │ │ ├── golangflag.go │ │ ├── int.go │ │ ├── int16.go │ │ ├── int32.go │ │ ├── int32_slice.go │ │ ├── int64.go │ │ ├── int64_slice.go │ │ ├── int8.go │ │ ├── int_slice.go │ │ ├── ip.go │ │ ├── ip_slice.go │ │ ├── ipmask.go │ │ ├── ipnet.go │ │ ├── ipnet_slice.go │ │ ├── string.go │ │ ├── string_array.go │ │ ├── string_slice.go │ │ ├── string_to_int.go │ │ ├── string_to_int64.go │ │ ├── string_to_string.go │ │ ├── text.go │ │ ├── time.go │ │ ├── uint.go │ │ ├── uint16.go │ │ ├── uint32.go │ │ ├── uint64.go │ │ ├── uint8.go │ │ └── uint_slice.go ├── spiffe │ └── go-spiffe │ │ └── v2 │ │ ├── LICENSE │ │ ├── bundle │ │ ├── jwtbundle │ │ │ ├── bundle.go │ │ │ ├── doc.go │ │ │ ├── set.go │ │ │ └── source.go │ │ ├── spiffebundle │ │ │ ├── bundle.go │ │ │ ├── doc.go │ │ │ ├── set.go │ │ │ └── source.go │ │ └── x509bundle │ │ │ ├── bundle.go │ │ │ ├── doc.go │ │ │ ├── set.go │ │ │ └── source.go │ │ ├── internal │ │ ├── cryptoutil │ │ │ └── keys.go │ │ ├── jwtutil │ │ │ └── util.go │ │ ├── pemutil │ │ │ └── pem.go │ │ └── x509util │ │ │ └── util.go │ │ └── spiffeid │ │ ├── charset_backcompat_allow.go │ │ ├── charset_backcompat_deny.go │ │ ├── errors.go │ │ ├── id.go │ │ ├── match.go │ │ ├── path.go │ │ ├── require.go │ │ └── trustdomain.go ├── stretchr │ ├── objx │ │ ├── .codeclimate.yml │ │ ├── .gitignore │ │ ├── LICENSE │ │ ├── README.md │ │ ├── Taskfile.yml │ │ ├── accessors.go │ │ ├── conversions.go │ │ ├── doc.go │ │ ├── map.go │ │ ├── mutations.go │ │ ├── security.go │ │ ├── tests.go │ │ ├── type_specific.go │ │ ├── type_specific_codegen.go │ │ └── value.go │ └── testify │ │ ├── LICENSE │ │ ├── assert │ │ ├── assertion_compare.go │ │ ├── assertion_format.go │ │ ├── assertion_format.go.tmpl │ │ ├── assertion_forward.go │ │ ├── assertion_forward.go.tmpl │ │ ├── assertion_order.go │ │ ├── assertions.go │ │ ├── doc.go │ │ ├── errors.go │ │ ├── forward_assertions.go │ │ ├── http_assertions.go │ │ └── yaml │ │ │ ├── yaml_custom.go │ │ │ ├── yaml_default.go │ │ │ └── yaml_fail.go │ │ ├── mock │ │ ├── doc.go │ │ └── mock.go │ │ └── require │ │ ├── doc.go │ │ ├── forward_requirements.go │ │ ├── require.go │ │ ├── require.go.tmpl │ │ ├── require_forward.go │ │ ├── require_forward.go.tmpl │ │ └── requirements.go ├── thanos-io │ └── objstore │ │ ├── .errcheck_excludes.txt │ │ ├── .gitignore │ │ ├── .go-version │ │ ├── .golangci.yml │ │ ├── .mdox.validate.yaml │ │ ├── CHANGELOG.md │ │ ├── COPYRIGHT │ │ ├── LICENSE │ │ ├── Makefile │ │ ├── README.md │ │ ├── Thanos-logo_fullmedium.png │ │ ├── exthttp │ │ ├── parse.go │ │ ├── tlsconfig.go │ │ └── transport.go │ │ ├── inmem.go │ │ ├── objstore.go │ │ ├── prefixed_bucket.go │ │ ├── providers │ │ ├── azure │ │ │ ├── azure.go │ │ │ └── helpers.go │ │ ├── filesystem │ │ │ └── filesystem.go │ │ ├── gcs │ │ │ └── gcs.go │ │ ├── s3 │ │ │ ├── s3.go │ │ │ └── s3_aws_sdk_auth.go │ │ └── swift │ │ │ └── swift.go │ │ ├── testing.go │ │ ├── tlsconfig.go │ │ └── tracing │ │ └── opentelemetry │ │ └── opentelemetry.go ├── tinylib │ └── msgp │ │ ├── LICENSE │ │ └── msgp │ │ ├── advise_linux.go │ │ ├── advise_other.go │ │ ├── circular.go │ │ ├── defs.go │ │ ├── edit.go │ │ ├── elsize.go │ │ ├── elsize_default.go │ │ ├── elsize_tinygo.go │ │ ├── errors.go │ │ ├── errors_default.go │ │ ├── errors_tinygo.go │ │ ├── extension.go │ │ ├── file.go │ │ ├── file_port.go │ │ ├── integers.go │ │ ├── json.go │ │ ├── json_bytes.go │ │ ├── number.go │ │ ├── purego.go │ │ ├── read.go │ │ ├── read_bytes.go │ │ ├── size.go │ │ ├── unsafe.go │ │ ├── write.go │ │ └── write_bytes.go ├── tjhop │ └── slog-gokit │ │ ├── .goreleaser.yaml │ │ ├── LICENSE │ │ ├── Makefile │ │ ├── README.md │ │ ├── handler.go │ │ └── level.go ├── tklauser │ ├── go-sysconf │ │ ├── .cirrus.yml │ │ ├── .gitignore │ │ ├── LICENSE │ │ ├── README.md │ │ ├── sysconf.go │ │ ├── sysconf_bsd.go │ │ ├── sysconf_darwin.go │ │ ├── sysconf_dragonfly.go │ │ ├── sysconf_freebsd.go │ │ ├── sysconf_generic.go │ │ ├── sysconf_linux.go │ │ ├── sysconf_netbsd.go │ │ ├── sysconf_openbsd.go │ │ ├── sysconf_posix.go │ │ ├── sysconf_solaris.go │ │ ├── sysconf_unsupported.go │ │ ├── zsysconf_defs_darwin.go │ │ ├── zsysconf_defs_dragonfly.go │ │ ├── zsysconf_defs_freebsd.go │ │ ├── zsysconf_defs_linux.go │ │ ├── zsysconf_defs_netbsd.go │ │ ├── zsysconf_defs_openbsd.go │ │ ├── zsysconf_defs_solaris.go │ │ ├── zsysconf_values_freebsd_386.go │ │ ├── zsysconf_values_freebsd_amd64.go │ │ ├── zsysconf_values_freebsd_arm.go │ │ ├── zsysconf_values_freebsd_arm64.go │ │ ├── zsysconf_values_freebsd_riscv64.go │ │ ├── zsysconf_values_linux_386.go │ │ ├── zsysconf_values_linux_amd64.go │ │ ├── zsysconf_values_linux_arm.go │ │ ├── zsysconf_values_linux_arm64.go │ │ ├── zsysconf_values_linux_loong64.go │ │ ├── zsysconf_values_linux_mips.go │ │ ├── zsysconf_values_linux_mips64.go │ │ ├── zsysconf_values_linux_mips64le.go │ │ ├── zsysconf_values_linux_mipsle.go │ │ ├── zsysconf_values_linux_ppc64.go │ │ ├── zsysconf_values_linux_ppc64le.go │ │ ├── zsysconf_values_linux_riscv64.go │ │ ├── zsysconf_values_linux_s390x.go │ │ ├── zsysconf_values_netbsd_386.go │ │ ├── zsysconf_values_netbsd_amd64.go │ │ ├── zsysconf_values_netbsd_arm.go │ │ └── zsysconf_values_netbsd_arm64.go │ └── numcpus │ │ ├── .cirrus.yml │ │ ├── LICENSE │ │ ├── README.md │ │ ├── numcpus.go │ │ ├── numcpus_bsd.go │ │ ├── numcpus_linux.go │ │ ├── numcpus_list_unsupported.go │ │ ├── numcpus_solaris.go │ │ ├── numcpus_unsupported.go │ │ └── numcpus_windows.go ├── twmb │ └── franz-go │ │ ├── LICENSE │ │ ├── pkg │ │ ├── kadm │ │ │ ├── LICENSE │ │ │ ├── acls.go │ │ │ ├── configs.go │ │ │ ├── dtoken.go │ │ │ ├── errors.go │ │ │ ├── groups.go │ │ │ ├── kadm.go │ │ │ ├── logdirs.go │ │ │ ├── metadata.go │ │ │ ├── misc.go │ │ │ ├── partas.go │ │ │ ├── topics.go │ │ │ └── txn.go │ │ ├── kbin │ │ │ └── primitives.go │ │ ├── kerr │ │ │ └── kerr.go │ │ ├── kfake │ │ │ ├── 00_produce.go │ │ │ ├── 01_fetch.go │ │ │ ├── 02_list_offsets.go │ │ │ ├── 03_metadata.go │ │ │ ├── 08_offset_commit.go │ │ │ ├── 09_offset_fetch.go │ │ │ ├── 10_find_coordinator.go │ │ │ ├── 11_join_group.go │ │ │ ├── 12_heartbeat.go │ │ │ ├── 13_leave_group.go │ │ │ ├── 14_sync_group.go │ │ │ ├── 15_describe_groups.go │ │ │ ├── 16_list_groups.go │ │ │ ├── 17_sasl_handshake.go │ │ │ ├── 18_api_versions.go │ │ │ ├── 19_create_topics.go │ │ │ ├── 20_delete_topics.go │ │ │ ├── 21_delete_records.go │ │ │ ├── 22_init_producer_id.go │ │ │ ├── 23_offset_for_leader_epoch.go │ │ │ ├── 32_describe_configs.go │ │ │ ├── 33_alter_configs.go │ │ │ ├── 34_alter_replica_log_dirs.go │ │ │ ├── 35_describe_log_dirs.go │ │ │ ├── 36_sasl_authenticate.go │ │ │ ├── 37_create_partitions.go │ │ │ ├── 42_delete_groups.go │ │ │ ├── 44_incremental_alter_configs.go │ │ │ ├── 47_offset_delete.go │ │ │ ├── 50_describe_user_scram_credentials.go │ │ │ ├── 51_alter_user_scram_credentials.go │ │ │ ├── LICENSE │ │ │ ├── NOTES │ │ │ ├── client_conn.go │ │ │ ├── cluster.go │ │ │ ├── config.go │ │ │ ├── data.go │ │ │ ├── groups.go │ │ │ ├── logger.go │ │ │ ├── main.go │ │ │ ├── misc.go │ │ │ ├── pid.go │ │ │ ├── sasl.go │ │ │ └── topic_partition.go │ │ ├── kgo │ │ │ ├── atomic_maybe_work.go │ │ │ ├── broker.go │ │ │ ├── client.go │ │ │ ├── compression.go │ │ │ ├── config.go │ │ │ ├── connreset_unix.go │ │ │ ├── connreset_windows.go │ │ │ ├── consumer.go │ │ │ ├── consumer_direct.go │ │ │ ├── consumer_group.go │ │ │ ├── consumer_group_848.go │ │ │ ├── errors.go │ │ │ ├── group_balancer.go │ │ │ ├── hooks.go │ │ │ ├── internal │ │ │ │ └── sticky │ │ │ │ │ ├── graph.go │ │ │ │ │ ├── rbtree.go │ │ │ │ │ └── sticky.go │ │ │ ├── logger.go │ │ │ ├── metadata.go │ │ │ ├── metrics_714.go │ │ │ ├── partitioner.go │ │ │ ├── pools.go │ │ │ ├── producer.go │ │ │ ├── record_and_fetch.go │ │ │ ├── record_formatter.go │ │ │ ├── ring.go │ │ │ ├── sink.go │ │ │ ├── source.go │ │ │ ├── strftime.go │ │ │ ├── topics_and_partitions.go │ │ │ └── txn.go │ │ ├── kmsg │ │ │ ├── LICENSE │ │ │ ├── api.go │ │ │ ├── generated.go │ │ │ ├── internal │ │ │ │ └── kbin │ │ │ │ │ └── primitives.go │ │ │ └── record.go │ │ ├── kversion │ │ │ ├── kversion.go │ │ │ └── requests.go │ │ └── sasl │ │ │ ├── plain │ │ │ └── plain.go │ │ │ └── sasl.go │ │ └── plugin │ │ ├── kotel │ │ ├── LICENSE │ │ ├── README.md │ │ ├── carrier.go │ │ ├── kotel.go │ │ ├── meter.go │ │ ├── tracer.go │ │ └── version.go │ │ └── kprom │ │ ├── LICENSE │ │ ├── README.md │ │ ├── config.go │ │ └── kprom.go ├── tylertreat │ └── BoomFilters │ │ ├── .gitignore │ │ ├── LICENSE │ │ ├── README.md │ │ ├── boom.go │ │ ├── buckets.go │ │ ├── classic.go │ │ ├── counting.go │ │ ├── countmin.go │ │ ├── cuckoo.go │ │ ├── deletable.go │ │ ├── fnv.go │ │ ├── hyperloglog.go │ │ ├── inverse.go │ │ ├── minhash.go │ │ ├── partitioned.go │ │ ├── scalable.go │ │ ├── stable.go │ │ └── topk.go ├── uber │ ├── jaeger-client-go │ │ ├── .gitignore │ │ ├── .gitmodules │ │ ├── .travis.yml │ │ ├── CHANGELOG.md │ │ ├── CODEOWNERS │ │ ├── CONTRIBUTING.md │ │ ├── DCO │ │ ├── Gopkg.lock │ │ ├── Gopkg.toml │ │ ├── LICENSE │ │ ├── Makefile │ │ ├── README.md │ │ ├── RELEASE.md │ │ ├── baggage_setter.go │ │ ├── config │ │ │ ├── config.go │ │ │ ├── config_env.go │ │ │ └── options.go │ │ ├── constants.go │ │ ├── contrib_observer.go │ │ ├── doc.go │ │ ├── glide.lock │ │ ├── glide.yaml │ │ ├── header.go │ │ ├── internal │ │ │ ├── baggage │ │ │ │ ├── remote │ │ │ │ │ ├── options.go │ │ │ │ │ └── restriction_manager.go │ │ │ │ └── restriction_manager.go │ │ │ ├── reporterstats │ │ │ │ └── stats.go │ │ │ ├── spanlog │ │ │ │ └── json.go │ │ │ └── throttler │ │ │ │ ├── remote │ │ │ │ ├── options.go │ │ │ │ └── throttler.go │ │ │ │ └── throttler.go │ │ ├── interop.go │ │ ├── jaeger_tag.go │ │ ├── jaeger_thrift_span.go │ │ ├── log │ │ │ └── logger.go │ │ ├── logger.go │ │ ├── metrics.go │ │ ├── observer.go │ │ ├── process.go │ │ ├── propagation.go │ │ ├── reference.go │ │ ├── reporter.go │ │ ├── reporter_options.go │ │ ├── rpcmetrics │ │ │ ├── README.md │ │ │ ├── doc.go │ │ │ ├── endpoints.go │ │ │ ├── metrics.go │ │ │ ├── normalizer.go │ │ │ └── observer.go │ │ ├── sampler.go │ │ ├── sampler_remote.go │ │ ├── sampler_remote_options.go │ │ ├── sampler_v2.go │ │ ├── span.go │ │ ├── span_allocator.go │ │ ├── span_context.go │ │ ├── thrift-gen │ │ │ ├── agent │ │ │ │ ├── GoUnusedProtection__.go │ │ │ │ ├── agent-consts.go │ │ │ │ └── agent.go │ │ │ ├── baggage │ │ │ │ ├── GoUnusedProtection__.go │ │ │ │ ├── baggage-consts.go │ │ │ │ └── baggage.go │ │ │ ├── jaeger │ │ │ │ ├── GoUnusedProtection__.go │ │ │ │ ├── jaeger-consts.go │ │ │ │ └── jaeger.go │ │ │ ├── sampling │ │ │ │ ├── GoUnusedProtection__.go │ │ │ │ ├── sampling-consts.go │ │ │ │ └── sampling.go │ │ │ └── zipkincore │ │ │ │ ├── GoUnusedProtection__.go │ │ │ │ ├── zipkincore-consts.go │ │ │ │ └── zipkincore.go │ │ ├── thrift │ │ │ ├── .nocover │ │ │ ├── README.md │ │ │ ├── application_exception.go │ │ │ ├── binary_protocol.go │ │ │ ├── client.go │ │ │ ├── compact_protocol.go │ │ │ ├── configuration.go │ │ │ ├── context.go │ │ │ ├── exception.go │ │ │ ├── header_context.go │ │ │ ├── header_protocol.go │ │ │ ├── header_transport.go │ │ │ ├── logger.go │ │ │ ├── memory_buffer.go │ │ │ ├── messagetype.go │ │ │ ├── numeric.go │ │ │ ├── processor_factory.go │ │ │ ├── protocol.go │ │ │ ├── protocol_exception.go │ │ │ ├── protocol_factory.go │ │ │ ├── response_helper.go │ │ │ ├── rich_transport.go │ │ │ ├── serializer.go │ │ │ ├── server_transport.go │ │ │ ├── simple_json_protocol.go │ │ │ ├── simple_server.go │ │ │ ├── transport.go │ │ │ ├── transport_exception.go │ │ │ ├── transport_factory.go │ │ │ └── type.go │ │ ├── tracer.go │ │ ├── tracer_options.go │ │ ├── transport.go │ │ ├── transport │ │ │ ├── doc.go │ │ │ └── http.go │ │ ├── transport_udp.go │ │ ├── utils │ │ │ ├── http_json.go │ │ │ ├── localip.go │ │ │ ├── rand.go │ │ │ ├── rate_limiter.go │ │ │ ├── reconnecting_udp_conn.go │ │ │ ├── udp_client.go │ │ │ └── utils.go │ │ ├── zipkin.go │ │ └── zipkin_thrift_span.go │ └── jaeger-lib │ │ ├── LICENSE │ │ └── metrics │ │ ├── counter.go │ │ ├── factory.go │ │ ├── gauge.go │ │ ├── histogram.go │ │ ├── keys.go │ │ ├── metrics.go │ │ ├── prometheus │ │ ├── cache.go │ │ └── factory.go │ │ ├── stopwatch.go │ │ └── timer.go ├── xhit │ └── go-str2duration │ │ └── v2 │ │ ├── LICENSE │ │ ├── README.md │ │ └── str2duration.go ├── xlab │ └── treeprint │ │ ├── .gitignore │ │ ├── LICENSE │ │ ├── README.md │ │ ├── helpers.go │ │ ├── struct.go │ │ └── treeprint.go └── yusufpapurcu │ └── wmi │ ├── LICENSE │ ├── README.md │ ├── swbemservices.go │ └── wmi.go ├── go.etcd.io └── etcd │ ├── api │ └── v3 │ │ ├── LICENSE │ │ ├── authpb │ │ ├── auth.pb.go │ │ └── auth.proto │ │ ├── etcdserverpb │ │ ├── etcdserver.pb.go │ │ ├── etcdserver.proto │ │ ├── raft_internal.pb.go │ │ ├── raft_internal.proto │ │ ├── raft_internal_stringer.go │ │ ├── rpc.pb.go │ │ └── rpc.proto │ │ ├── membershippb │ │ ├── membership.pb.go │ │ └── membership.proto │ │ ├── mvccpb │ │ ├── kv.pb.go │ │ └── kv.proto │ │ ├── v3rpc │ │ └── rpctypes │ │ │ ├── doc.go │ │ │ ├── error.go │ │ │ ├── md.go │ │ │ └── metadatafields.go │ │ ├── version │ │ └── version.go │ │ └── versionpb │ │ ├── version.pb.go │ │ └── version.proto │ └── client │ ├── pkg │ └── v3 │ │ ├── LICENSE │ │ ├── fileutil │ │ ├── dir_unix.go │ │ ├── dir_windows.go │ │ ├── doc.go │ │ ├── filereader.go │ │ ├── fileutil.go │ │ ├── lock.go │ │ ├── lock_flock.go │ │ ├── lock_linux.go │ │ ├── lock_plan9.go │ │ ├── lock_solaris.go │ │ ├── lock_unix.go │ │ ├── lock_windows.go │ │ ├── preallocate.go │ │ ├── preallocate_darwin.go │ │ ├── preallocate_unix.go │ │ ├── preallocate_unsupported.go │ │ ├── purge.go │ │ ├── read_dir.go │ │ ├── sync.go │ │ ├── sync_darwin.go │ │ └── sync_linux.go │ │ ├── logutil │ │ ├── doc.go │ │ ├── log_format.go │ │ ├── log_level.go │ │ ├── zap.go │ │ └── zap_journal.go │ │ ├── systemd │ │ ├── doc.go │ │ └── journal.go │ │ ├── tlsutil │ │ ├── cipher_suites.go │ │ ├── doc.go │ │ ├── tlsutil.go │ │ └── versions.go │ │ ├── transport │ │ ├── doc.go │ │ ├── keepalive_listener.go │ │ ├── keepalive_listener_openbsd.go │ │ ├── keepalive_listener_unix.go │ │ ├── limit_listen.go │ │ ├── listener.go │ │ ├── listener_opts.go │ │ ├── listener_tls.go │ │ ├── sockopt.go │ │ ├── sockopt_solaris.go │ │ ├── sockopt_unix.go │ │ ├── sockopt_wasm.go │ │ ├── sockopt_windows.go │ │ ├── timeout_conn.go │ │ ├── timeout_dialer.go │ │ ├── timeout_listener.go │ │ ├── timeout_transport.go │ │ ├── tls.go │ │ ├── transport.go │ │ └── unix_listener.go │ │ ├── types │ │ ├── doc.go │ │ ├── id.go │ │ ├── set.go │ │ ├── slice.go │ │ ├── urls.go │ │ └── urlsmap.go │ │ └── verify │ │ └── verify.go │ └── v3 │ ├── LICENSE │ ├── OWNERS │ ├── README.md │ ├── auth.go │ ├── client.go │ ├── cluster.go │ ├── compact_op.go │ ├── compare.go │ ├── config.go │ ├── credentials │ └── credentials.go │ ├── ctx.go │ ├── doc.go │ ├── internal │ ├── endpoint │ │ └── endpoint.go │ └── resolver │ │ └── resolver.go │ ├── kv.go │ ├── lease.go │ ├── logger.go │ ├── maintenance.go │ ├── op.go │ ├── options.go │ ├── retry.go │ ├── retry_interceptor.go │ ├── sort.go │ ├── txn.go │ ├── utils.go │ └── watch.go ├── go.mongodb.org └── mongo-driver │ ├── LICENSE │ ├── bson │ ├── bson.go │ ├── bsoncodec │ │ ├── array_codec.go │ │ ├── bsoncodec.go │ │ ├── byte_slice_codec.go │ │ ├── codec_cache.go │ │ ├── cond_addr_codec.go │ │ ├── default_value_decoders.go │ │ ├── default_value_encoders.go │ │ ├── doc.go │ │ ├── empty_interface_codec.go │ │ ├── map_codec.go │ │ ├── mode.go │ │ ├── pointer_codec.go │ │ ├── proxy.go │ │ ├── registry.go │ │ ├── slice_codec.go │ │ ├── string_codec.go │ │ ├── struct_codec.go │ │ ├── struct_tag_parser.go │ │ ├── time_codec.go │ │ ├── types.go │ │ └── uint_codec.go │ ├── bsonoptions │ │ ├── byte_slice_codec_options.go │ │ ├── doc.go │ │ ├── empty_interface_codec_options.go │ │ ├── map_codec_options.go │ │ ├── slice_codec_options.go │ │ ├── string_codec_options.go │ │ ├── struct_codec_options.go │ │ ├── time_codec_options.go │ │ └── uint_codec_options.go │ ├── bsonrw │ │ ├── copier.go │ │ ├── doc.go │ │ ├── extjson_parser.go │ │ ├── extjson_reader.go │ │ ├── extjson_tables.go │ │ ├── extjson_wrappers.go │ │ ├── extjson_writer.go │ │ ├── json_scanner.go │ │ ├── mode.go │ │ ├── reader.go │ │ ├── value_reader.go │ │ ├── value_writer.go │ │ └── writer.go │ ├── bsontype │ │ └── bsontype.go │ ├── decoder.go │ ├── doc.go │ ├── encoder.go │ ├── marshal.go │ ├── primitive │ │ ├── decimal.go │ │ ├── objectid.go │ │ └── primitive.go │ ├── primitive_codecs.go │ ├── raw.go │ ├── raw_element.go │ ├── raw_value.go │ ├── registry.go │ ├── types.go │ └── unmarshal.go │ └── x │ └── bsonx │ └── bsoncore │ ├── array.go │ ├── bson_arraybuilder.go │ ├── bson_documentbuilder.go │ ├── bsoncore.go │ ├── doc.go │ ├── document.go │ ├── document_sequence.go │ ├── element.go │ ├── tables.go │ └── value.go ├── go.opentelemetry.io ├── auto │ └── sdk │ │ ├── CONTRIBUTING.md │ │ ├── LICENSE │ │ ├── VERSIONING.md │ │ ├── doc.go │ │ ├── internal │ │ └── telemetry │ │ │ ├── attr.go │ │ │ ├── doc.go │ │ │ ├── id.go │ │ │ ├── number.go │ │ │ ├── resource.go │ │ │ ├── scope.go │ │ │ ├── span.go │ │ │ ├── status.go │ │ │ ├── traces.go │ │ │ └── value.go │ │ ├── limit.go │ │ ├── span.go │ │ ├── tracer.go │ │ └── tracer_provider.go ├── collector │ ├── component │ │ ├── LICENSE │ │ ├── Makefile │ │ ├── build_info.go │ │ ├── component.go │ │ ├── config.go │ │ ├── doc.go │ │ ├── host.go │ │ ├── identifiable.go │ │ └── telemetry.go │ ├── confmap │ │ ├── LICENSE │ │ ├── Makefile │ │ ├── README.md │ │ ├── confmap.go │ │ ├── converter.go │ │ ├── expand.go │ │ ├── factory.go │ │ ├── internal │ │ │ ├── conf.go │ │ │ ├── confmap.go │ │ │ ├── decoder.go │ │ │ ├── encoder.go │ │ │ ├── expand.go │ │ │ ├── featuregates.go │ │ │ ├── mapstructure │ │ │ │ └── encoder.go │ │ │ ├── marshaloption.go │ │ │ ├── merge.go │ │ │ ├── third_party │ │ │ │ └── composehook │ │ │ │ │ └── compose_hook.go │ │ │ └── unmarshaloption.go │ │ ├── metadata.yaml │ │ ├── provider.go │ │ ├── resolver.go │ │ └── xconfmap │ │ │ ├── LICENSE │ │ │ ├── Makefile │ │ │ └── config.go │ ├── consumer │ │ ├── LICENSE │ │ ├── Makefile │ │ ├── consumer.go │ │ ├── doc.go │ │ ├── internal │ │ │ └── consumer.go │ │ ├── logs.go │ │ ├── metrics.go │ │ └── traces.go │ ├── featuregate │ │ ├── LICENSE │ │ ├── Makefile │ │ ├── README.md │ │ ├── flag.go │ │ ├── gate.go │ │ ├── registry.go │ │ └── stage.go │ ├── pdata │ │ ├── LICENSE │ │ ├── internal │ │ │ ├── .gitignore │ │ │ ├── bytesid.go │ │ │ ├── generated_enum_aggregationtemporality.go │ │ │ ├── generated_enum_severitynumber.go │ │ │ ├── generated_enum_spankind.go │ │ │ ├── generated_enum_statuscode.go │ │ │ ├── generated_proto_anyvalue.go │ │ │ ├── generated_proto_arrayvalue.go │ │ │ ├── generated_proto_entityref.go │ │ │ ├── generated_proto_exemplar.go │ │ │ ├── generated_proto_exponentialhistogram.go │ │ │ ├── generated_proto_exponentialhistogramdatapoint.go │ │ │ ├── generated_proto_exponentialhistogramdatapointbuckets.go │ │ │ ├── generated_proto_exportlogspartialsuccess.go │ │ │ ├── generated_proto_exportlogsservicerequest.go │ │ │ ├── generated_proto_exportlogsserviceresponse.go │ │ │ ├── generated_proto_exportmetricspartialsuccess.go │ │ │ ├── generated_proto_exportmetricsservicerequest.go │ │ │ ├── generated_proto_exportmetricsserviceresponse.go │ │ │ ├── generated_proto_exportprofilespartialsuccess.go │ │ │ ├── generated_proto_exportprofilesservicerequest.go │ │ │ ├── generated_proto_exportprofilesserviceresponse.go │ │ │ ├── generated_proto_exporttracepartialsuccess.go │ │ │ ├── generated_proto_exporttraceservicerequest.go │ │ │ ├── generated_proto_exporttraceserviceresponse.go │ │ │ ├── generated_proto_function.go │ │ │ ├── generated_proto_gauge.go │ │ │ ├── generated_proto_histogram.go │ │ │ ├── generated_proto_histogramdatapoint.go │ │ │ ├── generated_proto_instrumentationscope.go │ │ │ ├── generated_proto_ipaddr.go │ │ │ ├── generated_proto_keyvalue.go │ │ │ ├── generated_proto_keyvalueandunit.go │ │ │ ├── generated_proto_keyvaluelist.go │ │ │ ├── generated_proto_line.go │ │ │ ├── generated_proto_link.go │ │ │ ├── generated_proto_location.go │ │ │ ├── generated_proto_logrecord.go │ │ │ ├── generated_proto_logsdata.go │ │ │ ├── generated_proto_logsrequest.go │ │ │ ├── generated_proto_mapping.go │ │ │ ├── generated_proto_metric.go │ │ │ ├── generated_proto_metricsdata.go │ │ │ ├── generated_proto_metricsrequest.go │ │ │ ├── generated_proto_numberdatapoint.go │ │ │ ├── generated_proto_profile.go │ │ │ ├── generated_proto_profilesdata.go │ │ │ ├── generated_proto_profilesdictionary.go │ │ │ ├── generated_proto_profilesrequest.go │ │ │ ├── generated_proto_requestcontext.go │ │ │ ├── generated_proto_resource.go │ │ │ ├── generated_proto_resourcelogs.go │ │ │ ├── generated_proto_resourcemetrics.go │ │ │ ├── generated_proto_resourceprofiles.go │ │ │ ├── generated_proto_resourcespans.go │ │ │ ├── generated_proto_sample.go │ │ │ ├── generated_proto_scopelogs.go │ │ │ ├── generated_proto_scopemetrics.go │ │ │ ├── generated_proto_scopeprofiles.go │ │ │ ├── generated_proto_scopespans.go │ │ │ ├── generated_proto_span.go │ │ │ ├── generated_proto_spancontext.go │ │ │ ├── generated_proto_spanevent.go │ │ │ ├── generated_proto_spanlink.go │ │ │ ├── generated_proto_stack.go │ │ │ ├── generated_proto_status.go │ │ │ ├── generated_proto_sum.go │ │ │ ├── generated_proto_summary.go │ │ │ ├── generated_proto_summarydatapoint.go │ │ │ ├── generated_proto_summarydatapointvalueatquantile.go │ │ │ ├── generated_proto_tcpaddr.go │ │ │ ├── generated_proto_tracesdata.go │ │ │ ├── generated_proto_tracesrequest.go │ │ │ ├── generated_proto_udpaddr.go │ │ │ ├── generated_proto_unixaddr.go │ │ │ ├── generated_proto_valuetype.go │ │ │ ├── generated_wrapper_anyvalueslice.go │ │ │ ├── generated_wrapper_byteslice.go │ │ │ ├── generated_wrapper_entityref.go │ │ │ ├── generated_wrapper_entityrefslice.go │ │ │ ├── generated_wrapper_exportlogsservicerequest.go │ │ │ ├── generated_wrapper_exportmetricsservicerequest.go │ │ │ ├── generated_wrapper_exportprofilesservicerequest.go │ │ │ ├── generated_wrapper_exporttraceservicerequest.go │ │ │ ├── generated_wrapper_float64slice.go │ │ │ ├── generated_wrapper_instrumentationscope.go │ │ │ ├── generated_wrapper_int32slice.go │ │ │ ├── generated_wrapper_int64slice.go │ │ │ ├── generated_wrapper_profilesdata.go │ │ │ ├── generated_wrapper_resource.go │ │ │ ├── generated_wrapper_stringslice.go │ │ │ ├── generated_wrapper_uint64slice.go │ │ │ ├── json │ │ │ │ ├── iterator.go │ │ │ │ └── stream.go │ │ │ ├── otelgrpc │ │ │ │ ├── encoding.go │ │ │ │ ├── logs_service.go │ │ │ │ ├── metrics_service.go │ │ │ │ ├── profiles_service.go │ │ │ │ └── trace_service.go │ │ │ ├── otlp │ │ │ │ ├── logs.go │ │ │ │ ├── metrics.go │ │ │ │ ├── profiles.go │ │ │ │ └── traces.go │ │ │ ├── profileid.go │ │ │ ├── proto │ │ │ │ ├── marshal.go │ │ │ │ ├── size.go │ │ │ │ └── unmarshal.go │ │ │ ├── spanid.go │ │ │ ├── state.go │ │ │ ├── traceid.go │ │ │ ├── wrapper_logs.go │ │ │ ├── wrapper_map.go │ │ │ ├── wrapper_metrics.go │ │ │ ├── wrapper_profiles.go │ │ │ ├── wrapper_traces.go │ │ │ ├── wrapper_tracestate.go │ │ │ └── wrapper_value.go │ │ ├── pcommon │ │ │ ├── generated_byteslice.go │ │ │ ├── generated_float64slice.go │ │ │ ├── generated_instrumentationscope.go │ │ │ ├── generated_int32slice.go │ │ │ ├── generated_int64slice.go │ │ │ ├── generated_resource.go │ │ │ ├── generated_slice.go │ │ │ ├── generated_stringslice.go │ │ │ ├── generated_uint64slice.go │ │ │ ├── map.go │ │ │ ├── slice.go │ │ │ ├── spanid.go │ │ │ ├── timestamp.go │ │ │ ├── trace_state.go │ │ │ ├── traceid.go │ │ │ └── value.go │ │ ├── plog │ │ │ ├── encoding.go │ │ │ ├── generated_logrecord.go │ │ │ ├── generated_logrecordslice.go │ │ │ ├── generated_logs.go │ │ │ ├── generated_resourcelogs.go │ │ │ ├── generated_resourcelogsslice.go │ │ │ ├── generated_scopelogs.go │ │ │ ├── generated_scopelogsslice.go │ │ │ ├── json.go │ │ │ ├── log_record_flags.go │ │ │ ├── logs.go │ │ │ ├── pb.go │ │ │ └── severity_number.go │ │ ├── pmetric │ │ │ ├── aggregation_temporality.go │ │ │ ├── encoding.go │ │ │ ├── exemplar_value_type.go │ │ │ ├── generated_exemplar.go │ │ │ ├── generated_exemplarslice.go │ │ │ ├── generated_exponentialhistogram.go │ │ │ ├── generated_exponentialhistogramdatapoint.go │ │ │ ├── generated_exponentialhistogramdatapointbuckets.go │ │ │ ├── generated_exponentialhistogramdatapointslice.go │ │ │ ├── generated_gauge.go │ │ │ ├── generated_histogram.go │ │ │ ├── generated_histogramdatapoint.go │ │ │ ├── generated_histogramdatapointslice.go │ │ │ ├── generated_metric.go │ │ │ ├── generated_metrics.go │ │ │ ├── generated_metricslice.go │ │ │ ├── generated_numberdatapoint.go │ │ │ ├── generated_numberdatapointslice.go │ │ │ ├── generated_resourcemetrics.go │ │ │ ├── generated_resourcemetricsslice.go │ │ │ ├── generated_scopemetrics.go │ │ │ ├── generated_scopemetricsslice.go │ │ │ ├── generated_sum.go │ │ │ ├── generated_summary.go │ │ │ ├── generated_summarydatapoint.go │ │ │ ├── generated_summarydatapointslice.go │ │ │ ├── generated_summarydatapointvalueatquantile.go │ │ │ ├── generated_summarydatapointvalueatquantileslice.go │ │ │ ├── json.go │ │ │ ├── metric_data_point_flags.go │ │ │ ├── metric_type.go │ │ │ ├── metrics.go │ │ │ ├── number_data_point_value_type.go │ │ │ ├── pb.go │ │ │ └── pmetricotlp │ │ │ │ ├── generated_exportpartialsuccess.go │ │ │ │ ├── generated_exportresponse.go │ │ │ │ ├── grpc.go │ │ │ │ ├── request.go │ │ │ │ └── response.go │ │ └── ptrace │ │ │ ├── encoding.go │ │ │ ├── generated_resourcespans.go │ │ │ ├── generated_resourcespansslice.go │ │ │ ├── generated_scopespans.go │ │ │ ├── generated_scopespansslice.go │ │ │ ├── generated_span.go │ │ │ ├── generated_spanevent.go │ │ │ ├── generated_spaneventslice.go │ │ │ ├── generated_spanlink.go │ │ │ ├── generated_spanlinkslice.go │ │ │ ├── generated_spanslice.go │ │ │ ├── generated_status.go │ │ │ ├── generated_traces.go │ │ │ ├── json.go │ │ │ ├── pb.go │ │ │ ├── span_kind.go │ │ │ ├── status_code.go │ │ │ └── traces.go │ ├── pipeline │ │ ├── LICENSE │ │ ├── Makefile │ │ ├── internal │ │ │ └── globalsignal │ │ │ │ └── signal.go │ │ ├── pipeline.go │ │ └── signal.go │ ├── processor │ │ ├── LICENSE │ │ ├── Makefile │ │ ├── README.md │ │ ├── internal │ │ │ ├── err.go │ │ │ └── obsmetrics.go │ │ └── processor.go │ └── semconv │ │ ├── LICENSE │ │ └── v1.6.1 │ │ ├── generated_resource.go │ │ ├── generated_trace.go │ │ ├── nonstandard.go │ │ └── schema.go ├── contrib │ ├── bridges │ │ └── prometheus │ │ │ ├── BENCHMARKS.md │ │ │ ├── LICENSE │ │ │ ├── config.go │ │ │ ├── doc.go │ │ │ └── producer.go │ ├── detectors │ │ └── gcp │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── cloud-function.go │ │ │ ├── cloud-run.go │ │ │ ├── detector.go │ │ │ ├── gce.go │ │ │ ├── gke.go │ │ │ ├── types.go │ │ │ └── version.go │ ├── exporters │ │ └── autoexport │ │ │ ├── LICENSE │ │ │ ├── doc.go │ │ │ ├── logs.go │ │ │ ├── metrics.go │ │ │ ├── noop.go │ │ │ ├── registry.go │ │ │ ├── signal.go │ │ │ └── spans.go │ ├── instrumentation │ │ ├── google.golang.org │ │ │ └── grpc │ │ │ │ └── otelgrpc │ │ │ │ ├── LICENSE │ │ │ │ ├── config.go │ │ │ │ ├── doc.go │ │ │ │ ├── interceptor.go │ │ │ │ ├── interceptorinfo.go │ │ │ │ ├── internal │ │ │ │ └── parse.go │ │ │ │ ├── metadata_supplier.go │ │ │ │ ├── stats_handler.go │ │ │ │ └── version.go │ │ └── net │ │ │ └── http │ │ │ ├── httptrace │ │ │ └── otelhttptrace │ │ │ │ ├── LICENSE │ │ │ │ ├── api.go │ │ │ │ ├── clienttrace.go │ │ │ │ ├── httptrace.go │ │ │ │ ├── internal │ │ │ │ └── semconv │ │ │ │ │ ├── env.go │ │ │ │ │ ├── gen.go │ │ │ │ │ ├── httpconv.go │ │ │ │ │ └── util.go │ │ │ │ └── version.go │ │ │ └── otelhttp │ │ │ ├── LICENSE │ │ │ ├── client.go │ │ │ ├── common.go │ │ │ ├── config.go │ │ │ ├── doc.go │ │ │ ├── handler.go │ │ │ ├── internal │ │ │ ├── request │ │ │ │ ├── body_wrapper.go │ │ │ │ ├── gen.go │ │ │ │ └── resp_writer_wrapper.go │ │ │ └── semconv │ │ │ │ ├── env.go │ │ │ │ ├── gen.go │ │ │ │ ├── httpconv.go │ │ │ │ └── util.go │ │ │ ├── labeler.go │ │ │ ├── start_time_context.go │ │ │ ├── transport.go │ │ │ └── version.go │ ├── propagators │ │ └── jaeger │ │ │ ├── LICENSE │ │ │ ├── context.go │ │ │ ├── doc.go │ │ │ ├── jaeger_propagator.go │ │ │ └── version.go │ └── samplers │ │ └── jaegerremote │ │ ├── LICENSE │ │ ├── README.md │ │ ├── constants.go │ │ ├── doc.go │ │ ├── internal │ │ └── ratelimiter │ │ │ └── rate_limiter.go │ │ ├── sampler.go │ │ ├── sampler_remote.go │ │ ├── sampler_remote_options.go │ │ └── version.go ├── otel │ ├── .clomonitor.yml │ ├── .codespellignore │ ├── .codespellrc │ ├── .gitattributes │ ├── .gitignore │ ├── .golangci.yml │ ├── .lycheeignore │ ├── .markdownlint.yaml │ ├── CHANGELOG.md │ ├── CODEOWNERS │ ├── CONTRIBUTING.md │ ├── LICENSE │ ├── Makefile │ ├── README.md │ ├── RELEASING.md │ ├── SECURITY-INSIGHTS.yml │ ├── VERSIONING.md │ ├── attribute │ │ ├── README.md │ │ ├── doc.go │ │ ├── encoder.go │ │ ├── filter.go │ │ ├── internal │ │ │ └── attribute.go │ │ ├── iterator.go │ │ ├── key.go │ │ ├── kv.go │ │ ├── rawhelpers.go │ │ ├── set.go │ │ ├── type_string.go │ │ └── value.go │ ├── baggage │ │ ├── README.md │ │ ├── baggage.go │ │ ├── context.go │ │ └── doc.go │ ├── codes │ │ ├── README.md │ │ ├── codes.go │ │ └── doc.go │ ├── dependencies.Dockerfile │ ├── doc.go │ ├── error_handler.go │ ├── exporters │ │ ├── jaeger │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── agent.go │ │ │ ├── doc.go │ │ │ ├── env.go │ │ │ ├── internal │ │ │ │ ├── gen-go │ │ │ │ │ ├── agent │ │ │ │ │ │ ├── GoUnusedProtection__.go │ │ │ │ │ │ ├── agent-consts.go │ │ │ │ │ │ └── agent.go │ │ │ │ │ ├── jaeger │ │ │ │ │ │ ├── GoUnusedProtection__.go │ │ │ │ │ │ ├── jaeger-consts.go │ │ │ │ │ │ └── jaeger.go │ │ │ │ │ └── zipkincore │ │ │ │ │ │ ├── GoUnusedProtection__.go │ │ │ │ │ │ ├── zipkincore-consts.go │ │ │ │ │ │ └── zipkincore.go │ │ │ │ └── third_party │ │ │ │ │ └── thrift │ │ │ │ │ ├── LICENSE │ │ │ │ │ ├── NOTICE │ │ │ │ │ └── lib │ │ │ │ │ └── go │ │ │ │ │ └── thrift │ │ │ │ │ ├── application_exception.go │ │ │ │ │ ├── binary_protocol.go │ │ │ │ │ ├── buffered_transport.go │ │ │ │ │ ├── client.go │ │ │ │ │ ├── compact_protocol.go │ │ │ │ │ ├── configuration.go │ │ │ │ │ ├── context.go │ │ │ │ │ ├── debug_protocol.go │ │ │ │ │ ├── deserializer.go │ │ │ │ │ ├── exception.go │ │ │ │ │ ├── framed_transport.go │ │ │ │ │ ├── header_context.go │ │ │ │ │ ├── header_protocol.go │ │ │ │ │ ├── header_transport.go │ │ │ │ │ ├── http_client.go │ │ │ │ │ ├── http_transport.go │ │ │ │ │ ├── iostream_transport.go │ │ │ │ │ ├── json_protocol.go │ │ │ │ │ ├── logger.go │ │ │ │ │ ├── memory_buffer.go │ │ │ │ │ ├── messagetype.go │ │ │ │ │ ├── middleware.go │ │ │ │ │ ├── multiplexed_protocol.go │ │ │ │ │ ├── numeric.go │ │ │ │ │ ├── pointerize.go │ │ │ │ │ ├── processor_factory.go │ │ │ │ │ ├── protocol.go │ │ │ │ │ ├── protocol_exception.go │ │ │ │ │ ├── protocol_factory.go │ │ │ │ │ ├── response_helper.go │ │ │ │ │ ├── rich_transport.go │ │ │ │ │ ├── serializer.go │ │ │ │ │ ├── server.go │ │ │ │ │ ├── server_socket.go │ │ │ │ │ ├── server_transport.go │ │ │ │ │ ├── simple_json_protocol.go │ │ │ │ │ ├── simple_server.go │ │ │ │ │ ├── socket.go │ │ │ │ │ ├── socket_conn.go │ │ │ │ │ ├── socket_unix_conn.go │ │ │ │ │ ├── socket_windows_conn.go │ │ │ │ │ ├── ssl_server_socket.go │ │ │ │ │ ├── ssl_socket.go │ │ │ │ │ ├── transport.go │ │ │ │ │ ├── transport_exception.go │ │ │ │ │ ├── transport_factory.go │ │ │ │ │ ├── type.go │ │ │ │ │ └── zlib_transport.go │ │ │ ├── jaeger.go │ │ │ ├── reconnecting_udp_client.go │ │ │ └── uploader.go │ │ ├── otlp │ │ │ ├── otlplog │ │ │ │ ├── otlploggrpc │ │ │ │ │ ├── LICENSE │ │ │ │ │ ├── README.md │ │ │ │ │ ├── client.go │ │ │ │ │ ├── config.go │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── exporter.go │ │ │ │ │ ├── internal │ │ │ │ │ │ ├── retry │ │ │ │ │ │ │ └── retry.go │ │ │ │ │ │ └── transform │ │ │ │ │ │ │ └── log.go │ │ │ │ │ └── version.go │ │ │ │ └── otlploghttp │ │ │ │ │ ├── LICENSE │ │ │ │ │ ├── README.md │ │ │ │ │ ├── client.go │ │ │ │ │ ├── config.go │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── exporter.go │ │ │ │ │ ├── internal │ │ │ │ │ ├── retry │ │ │ │ │ │ └── retry.go │ │ │ │ │ └── transform │ │ │ │ │ │ └── log.go │ │ │ │ │ └── version.go │ │ │ ├── otlpmetric │ │ │ │ ├── otlpmetricgrpc │ │ │ │ │ ├── LICENSE │ │ │ │ │ ├── README.md │ │ │ │ │ ├── client.go │ │ │ │ │ ├── config.go │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── exporter.go │ │ │ │ │ ├── internal │ │ │ │ │ │ ├── envconfig │ │ │ │ │ │ │ └── envconfig.go │ │ │ │ │ │ ├── gen.go │ │ │ │ │ │ ├── oconf │ │ │ │ │ │ │ ├── envconfig.go │ │ │ │ │ │ │ ├── options.go │ │ │ │ │ │ │ ├── optiontypes.go │ │ │ │ │ │ │ └── tls.go │ │ │ │ │ │ ├── partialsuccess.go │ │ │ │ │ │ ├── retry │ │ │ │ │ │ │ └── retry.go │ │ │ │ │ │ └── transform │ │ │ │ │ │ │ ├── attribute.go │ │ │ │ │ │ │ ├── error.go │ │ │ │ │ │ │ └── metricdata.go │ │ │ │ │ └── version.go │ │ │ │ └── otlpmetrichttp │ │ │ │ │ ├── LICENSE │ │ │ │ │ ├── README.md │ │ │ │ │ ├── client.go │ │ │ │ │ ├── config.go │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── exporter.go │ │ │ │ │ ├── internal │ │ │ │ │ ├── envconfig │ │ │ │ │ │ └── envconfig.go │ │ │ │ │ ├── gen.go │ │ │ │ │ ├── oconf │ │ │ │ │ │ ├── envconfig.go │ │ │ │ │ │ ├── options.go │ │ │ │ │ │ ├── optiontypes.go │ │ │ │ │ │ └── tls.go │ │ │ │ │ ├── partialsuccess.go │ │ │ │ │ ├── retry │ │ │ │ │ │ └── retry.go │ │ │ │ │ └── transform │ │ │ │ │ │ ├── attribute.go │ │ │ │ │ │ ├── error.go │ │ │ │ │ │ └── metricdata.go │ │ │ │ │ └── version.go │ │ │ └── otlptrace │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── clients.go │ │ │ │ ├── doc.go │ │ │ │ ├── exporter.go │ │ │ │ ├── internal │ │ │ │ └── tracetransform │ │ │ │ │ ├── attribute.go │ │ │ │ │ ├── instrumentation.go │ │ │ │ │ ├── resource.go │ │ │ │ │ └── span.go │ │ │ │ ├── otlptracegrpc │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── client.go │ │ │ │ ├── doc.go │ │ │ │ ├── exporter.go │ │ │ │ ├── internal │ │ │ │ │ ├── envconfig │ │ │ │ │ │ └── envconfig.go │ │ │ │ │ ├── gen.go │ │ │ │ │ ├── otlpconfig │ │ │ │ │ │ ├── envconfig.go │ │ │ │ │ │ ├── options.go │ │ │ │ │ │ ├── optiontypes.go │ │ │ │ │ │ └── tls.go │ │ │ │ │ ├── partialsuccess.go │ │ │ │ │ └── retry │ │ │ │ │ │ └── retry.go │ │ │ │ └── options.go │ │ │ │ ├── otlptracehttp │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── client.go │ │ │ │ ├── doc.go │ │ │ │ ├── exporter.go │ │ │ │ ├── internal │ │ │ │ │ ├── envconfig │ │ │ │ │ │ └── envconfig.go │ │ │ │ │ ├── gen.go │ │ │ │ │ ├── otlpconfig │ │ │ │ │ │ ├── envconfig.go │ │ │ │ │ │ ├── options.go │ │ │ │ │ │ ├── optiontypes.go │ │ │ │ │ │ └── tls.go │ │ │ │ │ ├── partialsuccess.go │ │ │ │ │ └── retry │ │ │ │ │ │ └── retry.go │ │ │ │ └── options.go │ │ │ │ └── version.go │ │ ├── prometheus │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── config.go │ │ │ ├── doc.go │ │ │ └── exporter.go │ │ └── stdout │ │ │ ├── stdoutlog │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── config.go │ │ │ ├── doc.go │ │ │ ├── exporter.go │ │ │ └── record.go │ │ │ ├── stdoutmetric │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── config.go │ │ │ ├── doc.go │ │ │ ├── encoder.go │ │ │ └── exporter.go │ │ │ └── stdouttrace │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── config.go │ │ │ ├── doc.go │ │ │ ├── internal │ │ │ ├── counter │ │ │ │ └── counter.go │ │ │ └── x │ │ │ │ ├── README.md │ │ │ │ └── x.go │ │ │ └── trace.go │ ├── handler.go │ ├── internal │ │ ├── baggage │ │ │ ├── baggage.go │ │ │ └── context.go │ │ └── global │ │ │ ├── handler.go │ │ │ ├── instruments.go │ │ │ ├── internal_logging.go │ │ │ ├── meter.go │ │ │ ├── propagator.go │ │ │ ├── state.go │ │ │ └── trace.go │ ├── internal_logging.go │ ├── log │ │ ├── DESIGN.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── doc.go │ │ ├── embedded │ │ │ ├── README.md │ │ │ └── embedded.go │ │ ├── keyvalue.go │ │ ├── kind_string.go │ │ ├── logger.go │ │ ├── noop │ │ │ ├── README.md │ │ │ └── noop.go │ │ ├── provider.go │ │ ├── record.go │ │ ├── severity.go │ │ └── severity_string.go │ ├── metric.go │ ├── metric │ │ ├── LICENSE │ │ ├── README.md │ │ ├── asyncfloat64.go │ │ ├── asyncint64.go │ │ ├── config.go │ │ ├── doc.go │ │ ├── embedded │ │ │ ├── README.md │ │ │ └── embedded.go │ │ ├── instrument.go │ │ ├── meter.go │ │ ├── noop │ │ │ ├── README.md │ │ │ └── noop.go │ │ ├── syncfloat64.go │ │ └── syncint64.go │ ├── propagation.go │ ├── propagation │ │ ├── README.md │ │ ├── baggage.go │ │ ├── doc.go │ │ ├── propagation.go │ │ └── trace_context.go │ ├── renovate.json │ ├── requirements.txt │ ├── sdk │ │ ├── LICENSE │ │ ├── README.md │ │ ├── instrumentation │ │ │ ├── README.md │ │ │ ├── doc.go │ │ │ ├── library.go │ │ │ └── scope.go │ │ ├── internal │ │ │ ├── env │ │ │ │ └── env.go │ │ │ └── x │ │ │ │ ├── README.md │ │ │ │ └── x.go │ │ ├── log │ │ │ ├── DESIGN.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── batch.go │ │ │ ├── doc.go │ │ │ ├── exporter.go │ │ │ ├── filter_processor.go │ │ │ ├── internal │ │ │ │ └── x │ │ │ │ │ ├── README.md │ │ │ │ │ └── x.go │ │ │ ├── logger.go │ │ │ ├── processor.go │ │ │ ├── provider.go │ │ │ ├── record.go │ │ │ ├── ring.go │ │ │ ├── setting.go │ │ │ └── simple.go │ │ ├── metric │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── aggregation.go │ │ │ ├── cache.go │ │ │ ├── config.go │ │ │ ├── doc.go │ │ │ ├── env.go │ │ │ ├── exemplar.go │ │ │ ├── exemplar │ │ │ │ ├── README.md │ │ │ │ ├── doc.go │ │ │ │ ├── exemplar.go │ │ │ │ ├── filter.go │ │ │ │ ├── fixed_size_reservoir.go │ │ │ │ ├── histogram_reservoir.go │ │ │ │ ├── reservoir.go │ │ │ │ ├── storage.go │ │ │ │ └── value.go │ │ │ ├── exporter.go │ │ │ ├── instrument.go │ │ │ ├── instrumentkind_string.go │ │ │ ├── internal │ │ │ │ ├── aggregate │ │ │ │ │ ├── aggregate.go │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── drop.go │ │ │ │ │ ├── exemplar.go │ │ │ │ │ ├── exponential_histogram.go │ │ │ │ │ ├── filtered_reservoir.go │ │ │ │ │ ├── histogram.go │ │ │ │ │ ├── lastvalue.go │ │ │ │ │ ├── limit.go │ │ │ │ │ └── sum.go │ │ │ │ ├── reuse_slice.go │ │ │ │ └── x │ │ │ │ │ ├── README.md │ │ │ │ │ └── x.go │ │ │ ├── manual_reader.go │ │ │ ├── meter.go │ │ │ ├── metricdata │ │ │ │ ├── README.md │ │ │ │ ├── data.go │ │ │ │ ├── temporality.go │ │ │ │ └── temporality_string.go │ │ │ ├── periodic_reader.go │ │ │ ├── pipeline.go │ │ │ ├── provider.go │ │ │ ├── reader.go │ │ │ ├── version.go │ │ │ └── view.go │ │ ├── resource │ │ │ ├── README.md │ │ │ ├── auto.go │ │ │ ├── builtin.go │ │ │ ├── config.go │ │ │ ├── container.go │ │ │ ├── doc.go │ │ │ ├── env.go │ │ │ ├── host_id.go │ │ │ ├── host_id_bsd.go │ │ │ ├── host_id_darwin.go │ │ │ ├── host_id_exec.go │ │ │ ├── host_id_linux.go │ │ │ ├── host_id_readfile.go │ │ │ ├── host_id_unsupported.go │ │ │ ├── host_id_windows.go │ │ │ ├── os.go │ │ │ ├── os_release_darwin.go │ │ │ ├── os_release_unix.go │ │ │ ├── os_unix.go │ │ │ ├── os_unsupported.go │ │ │ ├── os_windows.go │ │ │ ├── process.go │ │ │ └── resource.go │ │ ├── trace │ │ │ ├── README.md │ │ │ ├── batch_span_processor.go │ │ │ ├── doc.go │ │ │ ├── event.go │ │ │ ├── evictedqueue.go │ │ │ ├── id_generator.go │ │ │ ├── internal │ │ │ │ └── x │ │ │ │ │ ├── README.md │ │ │ │ │ └── x.go │ │ │ ├── link.go │ │ │ ├── provider.go │ │ │ ├── sampler_env.go │ │ │ ├── sampling.go │ │ │ ├── simple_span_processor.go │ │ │ ├── snapshot.go │ │ │ ├── span.go │ │ │ ├── span_exporter.go │ │ │ ├── span_limits.go │ │ │ ├── span_processor.go │ │ │ ├── tracer.go │ │ │ └── tracetest │ │ │ │ ├── README.md │ │ │ │ ├── exporter.go │ │ │ │ ├── recorder.go │ │ │ │ └── span.go │ │ └── version.go │ ├── semconv │ │ ├── v1.18.0 │ │ │ ├── README.md │ │ │ ├── doc.go │ │ │ ├── event.go │ │ │ ├── exception.go │ │ │ ├── http.go │ │ │ ├── resource.go │ │ │ ├── schema.go │ │ │ └── trace.go │ │ ├── v1.21.0 │ │ │ ├── README.md │ │ │ ├── attribute_group.go │ │ │ ├── doc.go │ │ │ ├── event.go │ │ │ ├── exception.go │ │ │ ├── resource.go │ │ │ ├── schema.go │ │ │ └── trace.go │ │ └── v1.37.0 │ │ │ ├── MIGRATION.md │ │ │ ├── README.md │ │ │ ├── attribute_group.go │ │ │ ├── doc.go │ │ │ ├── error_type.go │ │ │ ├── exception.go │ │ │ ├── httpconv │ │ │ └── metric.go │ │ │ ├── otelconv │ │ │ └── metric.go │ │ │ ├── rpcconv │ │ │ └── metric.go │ │ │ └── schema.go │ ├── trace.go │ ├── trace │ │ ├── LICENSE │ │ ├── README.md │ │ ├── auto.go │ │ ├── config.go │ │ ├── context.go │ │ ├── doc.go │ │ ├── embedded │ │ │ ├── README.md │ │ │ └── embedded.go │ │ ├── hex.go │ │ ├── internal │ │ │ └── telemetry │ │ │ │ ├── attr.go │ │ │ │ ├── doc.go │ │ │ │ ├── id.go │ │ │ │ ├── number.go │ │ │ │ ├── resource.go │ │ │ │ ├── scope.go │ │ │ │ ├── span.go │ │ │ │ ├── status.go │ │ │ │ ├── traces.go │ │ │ │ └── value.go │ │ ├── nonrecording.go │ │ ├── noop.go │ │ ├── noop │ │ │ ├── README.md │ │ │ └── noop.go │ │ ├── provider.go │ │ ├── span.go │ │ ├── trace.go │ │ ├── tracer.go │ │ └── tracestate.go │ ├── verify_released_changelog.sh │ ├── version.go │ └── versions.yaml └── proto │ └── otlp │ ├── LICENSE │ ├── collector │ ├── logs │ │ └── v1 │ │ │ ├── logs_service.pb.go │ │ │ ├── logs_service.pb.gw.go │ │ │ └── logs_service_grpc.pb.go │ ├── metrics │ │ └── v1 │ │ │ ├── metrics_service.pb.go │ │ │ ├── metrics_service.pb.gw.go │ │ │ └── metrics_service_grpc.pb.go │ └── trace │ │ └── v1 │ │ ├── trace_service.pb.go │ │ ├── trace_service.pb.gw.go │ │ └── trace_service_grpc.pb.go │ ├── common │ └── v1 │ │ └── common.pb.go │ ├── logs │ └── v1 │ │ └── logs.pb.go │ ├── metrics │ └── v1 │ │ └── metrics.pb.go │ ├── resource │ └── v1 │ │ └── resource.pb.go │ └── trace │ └── v1 │ └── trace.pb.go ├── go.uber.org ├── atomic │ ├── .codecov.yml │ ├── .gitignore │ ├── CHANGELOG.md │ ├── LICENSE.txt │ ├── Makefile │ ├── README.md │ ├── bool.go │ ├── bool_ext.go │ ├── doc.go │ ├── duration.go │ ├── duration_ext.go │ ├── error.go │ ├── error_ext.go │ ├── float32.go │ ├── float32_ext.go │ ├── float64.go │ ├── float64_ext.go │ ├── gen.go │ ├── int32.go │ ├── int64.go │ ├── nocmp.go │ ├── pointer_go118.go │ ├── pointer_go118_pre119.go │ ├── pointer_go119.go │ ├── string.go │ ├── string_ext.go │ ├── time.go │ ├── time_ext.go │ ├── uint32.go │ ├── uint64.go │ ├── uintptr.go │ ├── unsafe_pointer.go │ └── value.go ├── goleak │ ├── .gitignore │ ├── .golangci.yml │ ├── CHANGELOG.md │ ├── LICENSE │ ├── Makefile │ ├── README.md │ ├── doc.go │ ├── internal │ │ └── stack │ │ │ ├── doc.go │ │ │ ├── scan.go │ │ │ └── stacks.go │ ├── leaks.go │ ├── options.go │ ├── testmain.go │ └── tracestack_new.go ├── multierr │ ├── .codecov.yml │ ├── .gitignore │ ├── CHANGELOG.md │ ├── LICENSE.txt │ ├── Makefile │ ├── README.md │ ├── error.go │ ├── error_post_go120.go │ └── error_pre_go120.go └── zap │ ├── .codecov.yml │ ├── .gitignore │ ├── .golangci.yml │ ├── .readme.tmpl │ ├── CHANGELOG.md │ ├── CODE_OF_CONDUCT.md │ ├── CONTRIBUTING.md │ ├── FAQ.md │ ├── LICENSE │ ├── Makefile │ ├── README.md │ ├── array.go │ ├── buffer │ ├── buffer.go │ └── pool.go │ ├── checklicense.sh │ ├── config.go │ ├── doc.go │ ├── encoder.go │ ├── error.go │ ├── field.go │ ├── flag.go │ ├── glide.yaml │ ├── global.go │ ├── http_handler.go │ ├── internal │ ├── bufferpool │ │ └── bufferpool.go │ ├── color │ │ └── color.go │ ├── exit │ │ └── exit.go │ ├── level_enabler.go │ ├── pool │ │ └── pool.go │ └── stacktrace │ │ └── stack.go │ ├── level.go │ ├── logger.go │ ├── options.go │ ├── sink.go │ ├── sugar.go │ ├── time.go │ ├── writer.go │ ├── zapcore │ ├── buffered_write_syncer.go │ ├── clock.go │ ├── console_encoder.go │ ├── core.go │ ├── doc.go │ ├── encoder.go │ ├── entry.go │ ├── error.go │ ├── field.go │ ├── hook.go │ ├── increase_level.go │ ├── json_encoder.go │ ├── lazy_with.go │ ├── level.go │ ├── level_strings.go │ ├── marshaler.go │ ├── memory_encoder.go │ ├── reflected_encoder.go │ ├── sampler.go │ ├── tee.go │ └── write_syncer.go │ └── zapgrpc │ └── zapgrpc.go ├── go.yaml.in └── yaml │ ├── v2 │ ├── .travis.yml │ ├── LICENSE │ ├── LICENSE.libyaml │ ├── NOTICE │ ├── README.md │ ├── apic.go │ ├── decode.go │ ├── emitterc.go │ ├── encode.go │ ├── parserc.go │ ├── readerc.go │ ├── resolve.go │ ├── scannerc.go │ ├── sorter.go │ ├── writerc.go │ ├── yaml.go │ ├── yamlh.go │ └── yamlprivateh.go │ └── v3 │ ├── LICENSE │ ├── NOTICE │ ├── README.md │ ├── apic.go │ ├── decode.go │ ├── emitterc.go │ ├── encode.go │ ├── parserc.go │ ├── readerc.go │ ├── resolve.go │ ├── scannerc.go │ ├── sorter.go │ ├── writerc.go │ ├── yaml.go │ ├── yamlh.go │ └── yamlprivateh.go ├── golang.org └── x │ ├── crypto │ ├── LICENSE │ ├── PATENTS │ ├── argon2 │ │ ├── argon2.go │ │ ├── blake2b.go │ │ ├── blamka_amd64.go │ │ ├── blamka_amd64.s │ │ ├── blamka_generic.go │ │ └── blamka_ref.go │ ├── bcrypt │ │ ├── base64.go │ │ └── bcrypt.go │ ├── blake2b │ │ ├── blake2b.go │ │ ├── blake2bAVX2_amd64.go │ │ ├── blake2bAVX2_amd64.s │ │ ├── blake2b_amd64.s │ │ ├── blake2b_generic.go │ │ ├── blake2b_ref.go │ │ ├── blake2x.go │ │ ├── go125.go │ │ └── register.go │ ├── blowfish │ │ ├── block.go │ │ ├── cipher.go │ │ └── const.go │ ├── chacha20 │ │ ├── chacha_arm64.go │ │ ├── chacha_arm64.s │ │ ├── chacha_generic.go │ │ ├── chacha_noasm.go │ │ ├── chacha_ppc64x.go │ │ ├── chacha_ppc64x.s │ │ ├── chacha_s390x.go │ │ ├── chacha_s390x.s │ │ └── xor.go │ ├── chacha20poly1305 │ │ ├── chacha20poly1305.go │ │ ├── chacha20poly1305_amd64.go │ │ ├── chacha20poly1305_amd64.s │ │ ├── chacha20poly1305_generic.go │ │ ├── chacha20poly1305_noasm.go │ │ └── xchacha20poly1305.go │ ├── cryptobyte │ │ ├── asn1.go │ │ ├── asn1 │ │ │ └── asn1.go │ │ ├── builder.go │ │ └── string.go │ ├── hkdf │ │ └── hkdf.go │ ├── internal │ │ ├── alias │ │ │ ├── alias.go │ │ │ └── alias_purego.go │ │ └── poly1305 │ │ │ ├── mac_noasm.go │ │ │ ├── poly1305.go │ │ │ ├── sum_amd64.s │ │ │ ├── sum_asm.go │ │ │ ├── sum_generic.go │ │ │ ├── sum_loong64.s │ │ │ ├── sum_ppc64x.s │ │ │ ├── sum_s390x.go │ │ │ └── sum_s390x.s │ ├── pbkdf2 │ │ └── pbkdf2.go │ ├── pkcs12 │ │ ├── bmp-string.go │ │ ├── crypto.go │ │ ├── errors.go │ │ ├── internal │ │ │ └── rc2 │ │ │ │ └── rc2.go │ │ ├── mac.go │ │ ├── pbkdf.go │ │ ├── pkcs12.go │ │ └── safebags.go │ └── scrypt │ │ └── scrypt.go │ ├── exp │ ├── LICENSE │ ├── PATENTS │ ├── constraints │ │ └── constraints.go │ └── slices │ │ ├── slices.go │ │ └── sort.go │ ├── mod │ ├── LICENSE │ ├── PATENTS │ └── semver │ │ └── semver.go │ ├── net │ ├── LICENSE │ ├── PATENTS │ ├── bpf │ │ ├── asm.go │ │ ├── constants.go │ │ ├── doc.go │ │ ├── instructions.go │ │ ├── setter.go │ │ ├── vm.go │ │ └── vm_instructions.go │ ├── context │ │ └── ctxhttp │ │ │ └── ctxhttp.go │ ├── http │ │ ├── httpguts │ │ │ ├── guts.go │ │ │ └── httplex.go │ │ └── httpproxy │ │ │ └── proxy.go │ ├── http2 │ │ ├── .gitignore │ │ ├── ascii.go │ │ ├── ciphers.go │ │ ├── client_conn_pool.go │ │ ├── config.go │ │ ├── config_go125.go │ │ ├── config_go126.go │ │ ├── databuffer.go │ │ ├── errors.go │ │ ├── flow.go │ │ ├── frame.go │ │ ├── gotrack.go │ │ ├── hpack │ │ │ ├── encode.go │ │ │ ├── hpack.go │ │ │ ├── huffman.go │ │ │ ├── static_table.go │ │ │ └── tables.go │ │ ├── http2.go │ │ ├── pipe.go │ │ ├── server.go │ │ ├── transport.go │ │ ├── unencrypted.go │ │ ├── write.go │ │ ├── writesched.go │ │ ├── writesched_priority_rfc7540.go │ │ ├── writesched_priority_rfc9218.go │ │ ├── writesched_random.go │ │ └── writesched_roundrobin.go │ ├── idna │ │ ├── go118.go │ │ ├── idna10.0.0.go │ │ ├── idna9.0.0.go │ │ ├── pre_go118.go │ │ ├── punycode.go │ │ ├── tables10.0.0.go │ │ ├── tables11.0.0.go │ │ ├── tables12.0.0.go │ │ ├── tables13.0.0.go │ │ ├── tables15.0.0.go │ │ ├── tables9.0.0.go │ │ ├── trie.go │ │ ├── trie12.0.0.go │ │ ├── trie13.0.0.go │ │ └── trieval.go │ ├── internal │ │ ├── httpcommon │ │ │ ├── ascii.go │ │ │ ├── headermap.go │ │ │ └── request.go │ │ ├── iana │ │ │ └── const.go │ │ ├── socket │ │ │ ├── cmsghdr.go │ │ │ ├── cmsghdr_bsd.go │ │ │ ├── cmsghdr_linux_32bit.go │ │ │ ├── cmsghdr_linux_64bit.go │ │ │ ├── cmsghdr_solaris_64bit.go │ │ │ ├── cmsghdr_stub.go │ │ │ ├── cmsghdr_unix.go │ │ │ ├── cmsghdr_zos_s390x.go │ │ │ ├── complete_dontwait.go │ │ │ ├── complete_nodontwait.go │ │ │ ├── empty.s │ │ │ ├── error_unix.go │ │ │ ├── error_windows.go │ │ │ ├── iovec_32bit.go │ │ │ ├── iovec_64bit.go │ │ │ ├── iovec_solaris_64bit.go │ │ │ ├── iovec_stub.go │ │ │ ├── mmsghdr_stub.go │ │ │ ├── mmsghdr_unix.go │ │ │ ├── msghdr_bsd.go │ │ │ ├── msghdr_bsdvar.go │ │ │ ├── msghdr_linux.go │ │ │ ├── msghdr_linux_32bit.go │ │ │ ├── msghdr_linux_64bit.go │ │ │ ├── msghdr_openbsd.go │ │ │ ├── msghdr_solaris_64bit.go │ │ │ ├── msghdr_stub.go │ │ │ ├── msghdr_zos_s390x.go │ │ │ ├── norace.go │ │ │ ├── race.go │ │ │ ├── rawconn.go │ │ │ ├── rawconn_mmsg.go │ │ │ ├── rawconn_msg.go │ │ │ ├── rawconn_nommsg.go │ │ │ ├── rawconn_nomsg.go │ │ │ ├── socket.go │ │ │ ├── sys.go │ │ │ ├── sys_bsd.go │ │ │ ├── sys_const_unix.go │ │ │ ├── sys_linux.go │ │ │ ├── sys_linux_386.go │ │ │ ├── sys_linux_386.s │ │ │ ├── sys_linux_amd64.go │ │ │ ├── sys_linux_arm.go │ │ │ ├── sys_linux_arm64.go │ │ │ ├── sys_linux_loong64.go │ │ │ ├── sys_linux_mips.go │ │ │ ├── sys_linux_mips64.go │ │ │ ├── sys_linux_mips64le.go │ │ │ ├── sys_linux_mipsle.go │ │ │ ├── sys_linux_ppc.go │ │ │ ├── sys_linux_ppc64.go │ │ │ ├── sys_linux_ppc64le.go │ │ │ ├── sys_linux_riscv64.go │ │ │ ├── sys_linux_s390x.go │ │ │ ├── sys_linux_s390x.s │ │ │ ├── sys_netbsd.go │ │ │ ├── sys_posix.go │ │ │ ├── sys_stub.go │ │ │ ├── sys_unix.go │ │ │ ├── sys_windows.go │ │ │ ├── sys_zos_s390x.go │ │ │ ├── sys_zos_s390x.s │ │ │ ├── zsys_aix_ppc64.go │ │ │ ├── zsys_darwin_amd64.go │ │ │ ├── zsys_darwin_arm64.go │ │ │ ├── zsys_dragonfly_amd64.go │ │ │ ├── zsys_freebsd_386.go │ │ │ ├── zsys_freebsd_amd64.go │ │ │ ├── zsys_freebsd_arm.go │ │ │ ├── zsys_freebsd_arm64.go │ │ │ ├── zsys_freebsd_riscv64.go │ │ │ ├── zsys_linux_386.go │ │ │ ├── zsys_linux_amd64.go │ │ │ ├── zsys_linux_arm.go │ │ │ ├── zsys_linux_arm64.go │ │ │ ├── zsys_linux_loong64.go │ │ │ ├── zsys_linux_mips.go │ │ │ ├── zsys_linux_mips64.go │ │ │ ├── zsys_linux_mips64le.go │ │ │ ├── zsys_linux_mipsle.go │ │ │ ├── zsys_linux_ppc.go │ │ │ ├── zsys_linux_ppc64.go │ │ │ ├── zsys_linux_ppc64le.go │ │ │ ├── zsys_linux_riscv64.go │ │ │ ├── zsys_linux_s390x.go │ │ │ ├── zsys_netbsd_386.go │ │ │ ├── zsys_netbsd_amd64.go │ │ │ ├── zsys_netbsd_arm.go │ │ │ ├── zsys_netbsd_arm64.go │ │ │ ├── zsys_openbsd_386.go │ │ │ ├── zsys_openbsd_amd64.go │ │ │ ├── zsys_openbsd_arm.go │ │ │ ├── zsys_openbsd_arm64.go │ │ │ ├── zsys_openbsd_mips64.go │ │ │ ├── zsys_openbsd_ppc64.go │ │ │ ├── zsys_openbsd_riscv64.go │ │ │ ├── zsys_solaris_amd64.go │ │ │ └── zsys_zos_s390x.go │ │ └── timeseries │ │ │ └── timeseries.go │ ├── ipv4 │ │ ├── batch.go │ │ ├── control.go │ │ ├── control_bsd.go │ │ ├── control_pktinfo.go │ │ ├── control_stub.go │ │ ├── control_unix.go │ │ ├── control_windows.go │ │ ├── control_zos.go │ │ ├── dgramopt.go │ │ ├── doc.go │ │ ├── endpoint.go │ │ ├── genericopt.go │ │ ├── header.go │ │ ├── helper.go │ │ ├── iana.go │ │ ├── icmp.go │ │ ├── icmp_linux.go │ │ ├── icmp_stub.go │ │ ├── packet.go │ │ ├── payload.go │ │ ├── payload_cmsg.go │ │ ├── payload_nocmsg.go │ │ ├── sockopt.go │ │ ├── sockopt_posix.go │ │ ├── sockopt_stub.go │ │ ├── sys_aix.go │ │ ├── sys_asmreq.go │ │ ├── sys_asmreq_stub.go │ │ ├── sys_asmreqn.go │ │ ├── sys_asmreqn_stub.go │ │ ├── sys_bpf.go │ │ ├── sys_bpf_stub.go │ │ ├── sys_bsd.go │ │ ├── sys_darwin.go │ │ ├── sys_dragonfly.go │ │ ├── sys_freebsd.go │ │ ├── sys_linux.go │ │ ├── sys_solaris.go │ │ ├── sys_ssmreq.go │ │ ├── sys_ssmreq_stub.go │ │ ├── sys_stub.go │ │ ├── sys_windows.go │ │ ├── sys_zos.go │ │ ├── zsys_aix_ppc64.go │ │ ├── zsys_darwin.go │ │ ├── zsys_dragonfly.go │ │ ├── zsys_freebsd_386.go │ │ ├── zsys_freebsd_amd64.go │ │ ├── zsys_freebsd_arm.go │ │ ├── zsys_freebsd_arm64.go │ │ ├── zsys_freebsd_riscv64.go │ │ ├── zsys_linux_386.go │ │ ├── zsys_linux_amd64.go │ │ ├── zsys_linux_arm.go │ │ ├── zsys_linux_arm64.go │ │ ├── zsys_linux_loong64.go │ │ ├── zsys_linux_mips.go │ │ ├── zsys_linux_mips64.go │ │ ├── zsys_linux_mips64le.go │ │ ├── zsys_linux_mipsle.go │ │ ├── zsys_linux_ppc.go │ │ ├── zsys_linux_ppc64.go │ │ ├── zsys_linux_ppc64le.go │ │ ├── zsys_linux_riscv64.go │ │ ├── zsys_linux_s390x.go │ │ ├── zsys_netbsd.go │ │ ├── zsys_openbsd.go │ │ ├── zsys_solaris.go │ │ └── zsys_zos_s390x.go │ ├── ipv6 │ │ ├── batch.go │ │ ├── control.go │ │ ├── control_rfc2292_unix.go │ │ ├── control_rfc3542_unix.go │ │ ├── control_stub.go │ │ ├── control_unix.go │ │ ├── control_windows.go │ │ ├── dgramopt.go │ │ ├── doc.go │ │ ├── endpoint.go │ │ ├── genericopt.go │ │ ├── header.go │ │ ├── helper.go │ │ ├── iana.go │ │ ├── icmp.go │ │ ├── icmp_bsd.go │ │ ├── icmp_linux.go │ │ ├── icmp_solaris.go │ │ ├── icmp_stub.go │ │ ├── icmp_windows.go │ │ ├── icmp_zos.go │ │ ├── payload.go │ │ ├── payload_cmsg.go │ │ ├── payload_nocmsg.go │ │ ├── sockopt.go │ │ ├── sockopt_posix.go │ │ ├── sockopt_stub.go │ │ ├── sys_aix.go │ │ ├── sys_asmreq.go │ │ ├── sys_asmreq_stub.go │ │ ├── sys_bpf.go │ │ ├── sys_bpf_stub.go │ │ ├── sys_bsd.go │ │ ├── sys_darwin.go │ │ ├── sys_freebsd.go │ │ ├── sys_linux.go │ │ ├── sys_solaris.go │ │ ├── sys_ssmreq.go │ │ ├── sys_ssmreq_stub.go │ │ ├── sys_stub.go │ │ ├── sys_windows.go │ │ ├── sys_zos.go │ │ ├── zsys_aix_ppc64.go │ │ ├── zsys_darwin.go │ │ ├── zsys_dragonfly.go │ │ ├── zsys_freebsd_386.go │ │ ├── zsys_freebsd_amd64.go │ │ ├── zsys_freebsd_arm.go │ │ ├── zsys_freebsd_arm64.go │ │ ├── zsys_freebsd_riscv64.go │ │ ├── zsys_linux_386.go │ │ ├── zsys_linux_amd64.go │ │ ├── zsys_linux_arm.go │ │ ├── zsys_linux_arm64.go │ │ ├── zsys_linux_loong64.go │ │ ├── zsys_linux_mips.go │ │ ├── zsys_linux_mips64.go │ │ ├── zsys_linux_mips64le.go │ │ ├── zsys_linux_mipsle.go │ │ ├── zsys_linux_ppc.go │ │ ├── zsys_linux_ppc64.go │ │ ├── zsys_linux_ppc64le.go │ │ ├── zsys_linux_riscv64.go │ │ ├── zsys_linux_s390x.go │ │ ├── zsys_netbsd.go │ │ ├── zsys_openbsd.go │ │ ├── zsys_solaris.go │ │ └── zsys_zos_s390x.go │ ├── netutil │ │ └── listen.go │ ├── publicsuffix │ │ ├── data │ │ │ ├── children │ │ │ ├── nodes │ │ │ └── text │ │ ├── list.go │ │ └── table.go │ ├── trace │ │ ├── events.go │ │ ├── histogram.go │ │ └── trace.go │ └── websocket │ │ ├── client.go │ │ ├── dial.go │ │ ├── hybi.go │ │ ├── server.go │ │ └── websocket.go │ ├── oauth2 │ ├── .travis.yml │ ├── CONTRIBUTING.md │ ├── LICENSE │ ├── README.md │ ├── authhandler │ │ └── authhandler.go │ ├── clientcredentials │ │ └── clientcredentials.go │ ├── deviceauth.go │ ├── google │ │ ├── appengine.go │ │ ├── default.go │ │ ├── doc.go │ │ ├── error.go │ │ ├── externalaccount │ │ │ ├── aws.go │ │ │ ├── basecredentials.go │ │ │ ├── executablecredsource.go │ │ │ ├── filecredsource.go │ │ │ ├── header.go │ │ │ ├── programmaticrefreshcredsource.go │ │ │ └── urlcredsource.go │ │ ├── google.go │ │ ├── internal │ │ │ ├── externalaccountauthorizeduser │ │ │ │ └── externalaccountauthorizeduser.go │ │ │ ├── impersonate │ │ │ │ └── impersonate.go │ │ │ └── stsexchange │ │ │ │ ├── clientauth.go │ │ │ │ └── sts_exchange.go │ │ ├── jwt.go │ │ └── sdk.go │ ├── internal │ │ ├── doc.go │ │ ├── oauth2.go │ │ ├── token.go │ │ └── transport.go │ ├── jws │ │ └── jws.go │ ├── jwt │ │ └── jwt.go │ ├── oauth2.go │ ├── pkce.go │ ├── token.go │ └── transport.go │ ├── sync │ ├── LICENSE │ ├── PATENTS │ ├── errgroup │ │ └── errgroup.go │ ├── semaphore │ │ └── semaphore.go │ └── singleflight │ │ └── singleflight.go │ ├── sys │ ├── LICENSE │ ├── PATENTS │ ├── cpu │ │ ├── asm_aix_ppc64.s │ │ ├── asm_darwin_x86_gc.s │ │ ├── byteorder.go │ │ ├── cpu.go │ │ ├── cpu_aix.go │ │ ├── cpu_arm.go │ │ ├── cpu_arm64.go │ │ ├── cpu_arm64.s │ │ ├── cpu_darwin_x86.go │ │ ├── cpu_gc_arm64.go │ │ ├── cpu_gc_s390x.go │ │ ├── cpu_gc_x86.go │ │ ├── cpu_gc_x86.s │ │ ├── cpu_gccgo_arm64.go │ │ ├── cpu_gccgo_s390x.go │ │ ├── cpu_gccgo_x86.c │ │ ├── cpu_gccgo_x86.go │ │ ├── cpu_linux.go │ │ ├── cpu_linux_arm.go │ │ ├── cpu_linux_arm64.go │ │ ├── cpu_linux_loong64.go │ │ ├── cpu_linux_mips64x.go │ │ ├── cpu_linux_noinit.go │ │ ├── cpu_linux_ppc64x.go │ │ ├── cpu_linux_riscv64.go │ │ ├── cpu_linux_s390x.go │ │ ├── cpu_loong64.go │ │ ├── cpu_loong64.s │ │ ├── cpu_mips64x.go │ │ ├── cpu_mipsx.go │ │ ├── cpu_netbsd_arm64.go │ │ ├── cpu_openbsd_arm64.go │ │ ├── cpu_openbsd_arm64.s │ │ ├── cpu_other_arm.go │ │ ├── cpu_other_arm64.go │ │ ├── cpu_other_mips64x.go │ │ ├── cpu_other_ppc64x.go │ │ ├── cpu_other_riscv64.go │ │ ├── cpu_other_x86.go │ │ ├── cpu_ppc64x.go │ │ ├── cpu_riscv64.go │ │ ├── cpu_s390x.go │ │ ├── cpu_s390x.s │ │ ├── cpu_wasm.go │ │ ├── cpu_x86.go │ │ ├── cpu_zos.go │ │ ├── cpu_zos_s390x.go │ │ ├── endian_big.go │ │ ├── endian_little.go │ │ ├── hwcap_linux.go │ │ ├── parse.go │ │ ├── proc_cpuinfo_linux.go │ │ ├── runtime_auxv.go │ │ ├── runtime_auxv_go121.go │ │ ├── syscall_aix_gccgo.go │ │ ├── syscall_aix_ppc64_gc.go │ │ └── syscall_darwin_x86_gc.go │ ├── plan9 │ │ ├── asm.s │ │ ├── asm_plan9_386.s │ │ ├── asm_plan9_amd64.s │ │ ├── asm_plan9_arm.s │ │ ├── const_plan9.go │ │ ├── dir_plan9.go │ │ ├── env_plan9.go │ │ ├── errors_plan9.go │ │ ├── mkall.sh │ │ ├── mkerrors.sh │ │ ├── mksysnum_plan9.sh │ │ ├── pwd_plan9.go │ │ ├── race.go │ │ ├── race0.go │ │ ├── str.go │ │ ├── syscall.go │ │ ├── syscall_plan9.go │ │ ├── zsyscall_plan9_386.go │ │ ├── zsyscall_plan9_amd64.go │ │ ├── zsyscall_plan9_arm.go │ │ └── zsysnum_plan9.go │ ├── unix │ │ ├── .gitignore │ │ ├── README.md │ │ ├── affinity_linux.go │ │ ├── aliases.go │ │ ├── asm_aix_ppc64.s │ │ ├── asm_bsd_386.s │ │ ├── asm_bsd_amd64.s │ │ ├── asm_bsd_arm.s │ │ ├── asm_bsd_arm64.s │ │ ├── asm_bsd_ppc64.s │ │ ├── asm_bsd_riscv64.s │ │ ├── asm_linux_386.s │ │ ├── asm_linux_amd64.s │ │ ├── asm_linux_arm.s │ │ ├── asm_linux_arm64.s │ │ ├── asm_linux_loong64.s │ │ ├── asm_linux_mips64x.s │ │ ├── asm_linux_mipsx.s │ │ ├── asm_linux_ppc64x.s │ │ ├── asm_linux_riscv64.s │ │ ├── asm_linux_s390x.s │ │ ├── asm_openbsd_mips64.s │ │ ├── asm_solaris_amd64.s │ │ ├── asm_zos_s390x.s │ │ ├── auxv.go │ │ ├── auxv_unsupported.go │ │ ├── bluetooth_linux.go │ │ ├── bpxsvc_zos.go │ │ ├── bpxsvc_zos.s │ │ ├── cap_freebsd.go │ │ ├── constants.go │ │ ├── dev_aix_ppc.go │ │ ├── dev_aix_ppc64.go │ │ ├── dev_darwin.go │ │ ├── dev_dragonfly.go │ │ ├── dev_freebsd.go │ │ ├── dev_linux.go │ │ ├── dev_netbsd.go │ │ ├── dev_openbsd.go │ │ ├── dev_zos.go │ │ ├── dirent.go │ │ ├── endian_big.go │ │ ├── endian_little.go │ │ ├── env_unix.go │ │ ├── fcntl.go │ │ ├── fcntl_darwin.go │ │ ├── fcntl_linux_32bit.go │ │ ├── fdset.go │ │ ├── gccgo.go │ │ ├── gccgo_c.c │ │ ├── gccgo_linux_amd64.go │ │ ├── ifreq_linux.go │ │ ├── ioctl_linux.go │ │ ├── ioctl_signed.go │ │ ├── ioctl_unsigned.go │ │ ├── ioctl_zos.go │ │ ├── mkall.sh │ │ ├── mkerrors.sh │ │ ├── mmap_nomremap.go │ │ ├── mremap.go │ │ ├── pagesize_unix.go │ │ ├── pledge_openbsd.go │ │ ├── ptrace_darwin.go │ │ ├── ptrace_ios.go │ │ ├── race.go │ │ ├── race0.go │ │ ├── readdirent_getdents.go │ │ ├── readdirent_getdirentries.go │ │ ├── sockcmsg_dragonfly.go │ │ ├── sockcmsg_linux.go │ │ ├── sockcmsg_unix.go │ │ ├── sockcmsg_unix_other.go │ │ ├── sockcmsg_zos.go │ │ ├── symaddr_zos_s390x.s │ │ ├── syscall.go │ │ ├── syscall_aix.go │ │ ├── syscall_aix_ppc.go │ │ ├── syscall_aix_ppc64.go │ │ ├── syscall_bsd.go │ │ ├── syscall_darwin.go │ │ ├── syscall_darwin_amd64.go │ │ ├── syscall_darwin_arm64.go │ │ ├── syscall_darwin_libSystem.go │ │ ├── syscall_dragonfly.go │ │ ├── syscall_dragonfly_amd64.go │ │ ├── syscall_freebsd.go │ │ ├── syscall_freebsd_386.go │ │ ├── syscall_freebsd_amd64.go │ │ ├── syscall_freebsd_arm.go │ │ ├── syscall_freebsd_arm64.go │ │ ├── syscall_freebsd_riscv64.go │ │ ├── syscall_hurd.go │ │ ├── syscall_hurd_386.go │ │ ├── syscall_illumos.go │ │ ├── syscall_linux.go │ │ ├── syscall_linux_386.go │ │ ├── syscall_linux_alarm.go │ │ ├── syscall_linux_amd64.go │ │ ├── syscall_linux_amd64_gc.go │ │ ├── syscall_linux_arm.go │ │ ├── syscall_linux_arm64.go │ │ ├── syscall_linux_gc.go │ │ ├── syscall_linux_gc_386.go │ │ ├── syscall_linux_gc_arm.go │ │ ├── syscall_linux_gccgo_386.go │ │ ├── syscall_linux_gccgo_arm.go │ │ ├── syscall_linux_loong64.go │ │ ├── syscall_linux_mips64x.go │ │ ├── syscall_linux_mipsx.go │ │ ├── syscall_linux_ppc.go │ │ ├── syscall_linux_ppc64x.go │ │ ├── syscall_linux_riscv64.go │ │ ├── syscall_linux_s390x.go │ │ ├── syscall_linux_sparc64.go │ │ ├── syscall_netbsd.go │ │ ├── syscall_netbsd_386.go │ │ ├── syscall_netbsd_amd64.go │ │ ├── syscall_netbsd_arm.go │ │ ├── syscall_netbsd_arm64.go │ │ ├── syscall_openbsd.go │ │ ├── syscall_openbsd_386.go │ │ ├── syscall_openbsd_amd64.go │ │ ├── syscall_openbsd_arm.go │ │ ├── syscall_openbsd_arm64.go │ │ ├── syscall_openbsd_libc.go │ │ ├── syscall_openbsd_mips64.go │ │ ├── syscall_openbsd_ppc64.go │ │ ├── syscall_openbsd_riscv64.go │ │ ├── syscall_solaris.go │ │ ├── syscall_solaris_amd64.go │ │ ├── syscall_unix.go │ │ ├── syscall_unix_gc.go │ │ ├── syscall_unix_gc_ppc64x.go │ │ ├── syscall_zos_s390x.go │ │ ├── sysvshm_linux.go │ │ ├── sysvshm_unix.go │ │ ├── sysvshm_unix_other.go │ │ ├── timestruct.go │ │ ├── unveil_openbsd.go │ │ ├── vgetrandom_linux.go │ │ ├── vgetrandom_unsupported.go │ │ ├── xattr_bsd.go │ │ ├── zerrors_aix_ppc.go │ │ ├── zerrors_aix_ppc64.go │ │ ├── zerrors_darwin_amd64.go │ │ ├── zerrors_darwin_arm64.go │ │ ├── zerrors_dragonfly_amd64.go │ │ ├── zerrors_freebsd_386.go │ │ ├── zerrors_freebsd_amd64.go │ │ ├── zerrors_freebsd_arm.go │ │ ├── zerrors_freebsd_arm64.go │ │ ├── zerrors_freebsd_riscv64.go │ │ ├── zerrors_linux.go │ │ ├── zerrors_linux_386.go │ │ ├── zerrors_linux_amd64.go │ │ ├── zerrors_linux_arm.go │ │ ├── zerrors_linux_arm64.go │ │ ├── zerrors_linux_loong64.go │ │ ├── zerrors_linux_mips.go │ │ ├── zerrors_linux_mips64.go │ │ ├── zerrors_linux_mips64le.go │ │ ├── zerrors_linux_mipsle.go │ │ ├── zerrors_linux_ppc.go │ │ ├── zerrors_linux_ppc64.go │ │ ├── zerrors_linux_ppc64le.go │ │ ├── zerrors_linux_riscv64.go │ │ ├── zerrors_linux_s390x.go │ │ ├── zerrors_linux_sparc64.go │ │ ├── zerrors_netbsd_386.go │ │ ├── zerrors_netbsd_amd64.go │ │ ├── zerrors_netbsd_arm.go │ │ ├── zerrors_netbsd_arm64.go │ │ ├── zerrors_openbsd_386.go │ │ ├── zerrors_openbsd_amd64.go │ │ ├── zerrors_openbsd_arm.go │ │ ├── zerrors_openbsd_arm64.go │ │ ├── zerrors_openbsd_mips64.go │ │ ├── zerrors_openbsd_ppc64.go │ │ ├── zerrors_openbsd_riscv64.go │ │ ├── zerrors_solaris_amd64.go │ │ ├── zerrors_zos_s390x.go │ │ ├── zptrace_armnn_linux.go │ │ ├── zptrace_linux_arm64.go │ │ ├── zptrace_mipsnn_linux.go │ │ ├── zptrace_mipsnnle_linux.go │ │ ├── zptrace_x86_linux.go │ │ ├── zsymaddr_zos_s390x.s │ │ ├── zsyscall_aix_ppc.go │ │ ├── zsyscall_aix_ppc64.go │ │ ├── zsyscall_aix_ppc64_gc.go │ │ ├── zsyscall_aix_ppc64_gccgo.go │ │ ├── zsyscall_darwin_amd64.go │ │ ├── zsyscall_darwin_amd64.s │ │ ├── zsyscall_darwin_arm64.go │ │ ├── zsyscall_darwin_arm64.s │ │ ├── zsyscall_dragonfly_amd64.go │ │ ├── zsyscall_freebsd_386.go │ │ ├── zsyscall_freebsd_amd64.go │ │ ├── zsyscall_freebsd_arm.go │ │ ├── zsyscall_freebsd_arm64.go │ │ ├── zsyscall_freebsd_riscv64.go │ │ ├── zsyscall_illumos_amd64.go │ │ ├── zsyscall_linux.go │ │ ├── zsyscall_linux_386.go │ │ ├── zsyscall_linux_amd64.go │ │ ├── zsyscall_linux_arm.go │ │ ├── zsyscall_linux_arm64.go │ │ ├── zsyscall_linux_loong64.go │ │ ├── zsyscall_linux_mips.go │ │ ├── zsyscall_linux_mips64.go │ │ ├── zsyscall_linux_mips64le.go │ │ ├── zsyscall_linux_mipsle.go │ │ ├── zsyscall_linux_ppc.go │ │ ├── zsyscall_linux_ppc64.go │ │ ├── zsyscall_linux_ppc64le.go │ │ ├── zsyscall_linux_riscv64.go │ │ ├── zsyscall_linux_s390x.go │ │ ├── zsyscall_linux_sparc64.go │ │ ├── zsyscall_netbsd_386.go │ │ ├── zsyscall_netbsd_amd64.go │ │ ├── zsyscall_netbsd_arm.go │ │ ├── zsyscall_netbsd_arm64.go │ │ ├── zsyscall_openbsd_386.go │ │ ├── zsyscall_openbsd_386.s │ │ ├── zsyscall_openbsd_amd64.go │ │ ├── zsyscall_openbsd_amd64.s │ │ ├── zsyscall_openbsd_arm.go │ │ ├── zsyscall_openbsd_arm.s │ │ ├── zsyscall_openbsd_arm64.go │ │ ├── zsyscall_openbsd_arm64.s │ │ ├── zsyscall_openbsd_mips64.go │ │ ├── zsyscall_openbsd_mips64.s │ │ ├── zsyscall_openbsd_ppc64.go │ │ ├── zsyscall_openbsd_ppc64.s │ │ ├── zsyscall_openbsd_riscv64.go │ │ ├── zsyscall_openbsd_riscv64.s │ │ ├── zsyscall_solaris_amd64.go │ │ ├── zsyscall_zos_s390x.go │ │ ├── zsysctl_openbsd_386.go │ │ ├── zsysctl_openbsd_amd64.go │ │ ├── zsysctl_openbsd_arm.go │ │ ├── zsysctl_openbsd_arm64.go │ │ ├── zsysctl_openbsd_mips64.go │ │ ├── zsysctl_openbsd_ppc64.go │ │ ├── zsysctl_openbsd_riscv64.go │ │ ├── zsysnum_darwin_amd64.go │ │ ├── zsysnum_darwin_arm64.go │ │ ├── zsysnum_dragonfly_amd64.go │ │ ├── zsysnum_freebsd_386.go │ │ ├── zsysnum_freebsd_amd64.go │ │ ├── zsysnum_freebsd_arm.go │ │ ├── zsysnum_freebsd_arm64.go │ │ ├── zsysnum_freebsd_riscv64.go │ │ ├── zsysnum_linux_386.go │ │ ├── zsysnum_linux_amd64.go │ │ ├── zsysnum_linux_arm.go │ │ ├── zsysnum_linux_arm64.go │ │ ├── zsysnum_linux_loong64.go │ │ ├── zsysnum_linux_mips.go │ │ ├── zsysnum_linux_mips64.go │ │ ├── zsysnum_linux_mips64le.go │ │ ├── zsysnum_linux_mipsle.go │ │ ├── zsysnum_linux_ppc.go │ │ ├── zsysnum_linux_ppc64.go │ │ ├── zsysnum_linux_ppc64le.go │ │ ├── zsysnum_linux_riscv64.go │ │ ├── zsysnum_linux_s390x.go │ │ ├── zsysnum_linux_sparc64.go │ │ ├── zsysnum_netbsd_386.go │ │ ├── zsysnum_netbsd_amd64.go │ │ ├── zsysnum_netbsd_arm.go │ │ ├── zsysnum_netbsd_arm64.go │ │ ├── zsysnum_openbsd_386.go │ │ ├── zsysnum_openbsd_amd64.go │ │ ├── zsysnum_openbsd_arm.go │ │ ├── zsysnum_openbsd_arm64.go │ │ ├── zsysnum_openbsd_mips64.go │ │ ├── zsysnum_openbsd_ppc64.go │ │ ├── zsysnum_openbsd_riscv64.go │ │ ├── zsysnum_zos_s390x.go │ │ ├── ztypes_aix_ppc.go │ │ ├── ztypes_aix_ppc64.go │ │ ├── ztypes_darwin_amd64.go │ │ ├── ztypes_darwin_arm64.go │ │ ├── ztypes_dragonfly_amd64.go │ │ ├── ztypes_freebsd_386.go │ │ ├── ztypes_freebsd_amd64.go │ │ ├── ztypes_freebsd_arm.go │ │ ├── ztypes_freebsd_arm64.go │ │ ├── ztypes_freebsd_riscv64.go │ │ ├── ztypes_linux.go │ │ ├── ztypes_linux_386.go │ │ ├── ztypes_linux_amd64.go │ │ ├── ztypes_linux_arm.go │ │ ├── ztypes_linux_arm64.go │ │ ├── ztypes_linux_loong64.go │ │ ├── ztypes_linux_mips.go │ │ ├── ztypes_linux_mips64.go │ │ ├── ztypes_linux_mips64le.go │ │ ├── ztypes_linux_mipsle.go │ │ ├── ztypes_linux_ppc.go │ │ ├── ztypes_linux_ppc64.go │ │ ├── ztypes_linux_ppc64le.go │ │ ├── ztypes_linux_riscv64.go │ │ ├── ztypes_linux_s390x.go │ │ ├── ztypes_linux_sparc64.go │ │ ├── ztypes_netbsd_386.go │ │ ├── ztypes_netbsd_amd64.go │ │ ├── ztypes_netbsd_arm.go │ │ ├── ztypes_netbsd_arm64.go │ │ ├── ztypes_openbsd_386.go │ │ ├── ztypes_openbsd_amd64.go │ │ ├── ztypes_openbsd_arm.go │ │ ├── ztypes_openbsd_arm64.go │ │ ├── ztypes_openbsd_mips64.go │ │ ├── ztypes_openbsd_ppc64.go │ │ ├── ztypes_openbsd_riscv64.go │ │ ├── ztypes_solaris_amd64.go │ │ └── ztypes_zos_s390x.go │ └── windows │ │ ├── aliases.go │ │ ├── dll_windows.go │ │ ├── env_windows.go │ │ ├── eventlog.go │ │ ├── exec_windows.go │ │ ├── memory_windows.go │ │ ├── mkerrors.bash │ │ ├── mkknownfolderids.bash │ │ ├── mksyscall.go │ │ ├── race.go │ │ ├── race0.go │ │ ├── registry │ │ ├── key.go │ │ ├── mksyscall.go │ │ ├── syscall.go │ │ ├── value.go │ │ └── zsyscall_windows.go │ │ ├── security_windows.go │ │ ├── service.go │ │ ├── setupapi_windows.go │ │ ├── str.go │ │ ├── syscall.go │ │ ├── syscall_windows.go │ │ ├── types_windows.go │ │ ├── types_windows_386.go │ │ ├── types_windows_amd64.go │ │ ├── types_windows_arm.go │ │ ├── types_windows_arm64.go │ │ ├── zerrors_windows.go │ │ ├── zknownfolderids_windows.go │ │ └── zsyscall_windows.go │ ├── term │ ├── CONTRIBUTING.md │ ├── LICENSE │ ├── PATENTS │ ├── README.md │ ├── codereview.cfg │ ├── term.go │ ├── term_plan9.go │ ├── term_unix.go │ ├── term_unix_bsd.go │ ├── term_unix_other.go │ ├── term_unsupported.go │ ├── term_windows.go │ └── terminal.go │ ├── text │ ├── LICENSE │ ├── PATENTS │ ├── cases │ │ ├── cases.go │ │ ├── context.go │ │ ├── fold.go │ │ ├── icu.go │ │ ├── info.go │ │ ├── map.go │ │ ├── tables10.0.0.go │ │ ├── tables11.0.0.go │ │ ├── tables12.0.0.go │ │ ├── tables13.0.0.go │ │ ├── tables15.0.0.go │ │ ├── tables9.0.0.go │ │ └── trieval.go │ ├── internal │ │ ├── internal.go │ │ ├── language │ │ │ ├── common.go │ │ │ ├── compact.go │ │ │ ├── compact │ │ │ │ ├── compact.go │ │ │ │ ├── language.go │ │ │ │ ├── parents.go │ │ │ │ ├── tables.go │ │ │ │ └── tags.go │ │ │ ├── compose.go │ │ │ ├── coverage.go │ │ │ ├── language.go │ │ │ ├── lookup.go │ │ │ ├── match.go │ │ │ ├── parse.go │ │ │ ├── tables.go │ │ │ └── tags.go │ │ ├── match.go │ │ └── tag │ │ │ └── tag.go │ ├── language │ │ ├── coverage.go │ │ ├── doc.go │ │ ├── language.go │ │ ├── match.go │ │ ├── parse.go │ │ ├── tables.go │ │ └── tags.go │ ├── runes │ │ ├── cond.go │ │ └── runes.go │ ├── secure │ │ └── bidirule │ │ │ ├── bidirule.go │ │ │ ├── bidirule10.0.0.go │ │ │ └── bidirule9.0.0.go │ ├── transform │ │ └── transform.go │ └── unicode │ │ ├── bidi │ │ ├── bidi.go │ │ ├── bracket.go │ │ ├── core.go │ │ ├── prop.go │ │ ├── tables10.0.0.go │ │ ├── tables11.0.0.go │ │ ├── tables12.0.0.go │ │ ├── tables13.0.0.go │ │ ├── tables15.0.0.go │ │ ├── tables9.0.0.go │ │ └── trieval.go │ │ └── norm │ │ ├── composition.go │ │ ├── forminfo.go │ │ ├── input.go │ │ ├── iter.go │ │ ├── normalize.go │ │ ├── readwriter.go │ │ ├── tables10.0.0.go │ │ ├── tables11.0.0.go │ │ ├── tables12.0.0.go │ │ ├── tables13.0.0.go │ │ ├── tables15.0.0.go │ │ ├── tables9.0.0.go │ │ ├── transform.go │ │ └── trie.go │ ├── time │ ├── LICENSE │ ├── PATENTS │ └── rate │ │ ├── rate.go │ │ └── sometimes.go │ └── tools │ ├── LICENSE │ ├── PATENTS │ ├── go │ ├── ast │ │ ├── edge │ │ │ └── edge.go │ │ └── inspector │ │ │ ├── cursor.go │ │ │ ├── inspector.go │ │ │ ├── iter.go │ │ │ ├── typeof.go │ │ │ └── walk.go │ ├── gcexportdata │ │ ├── gcexportdata.go │ │ └── importer.go │ ├── packages │ │ ├── doc.go │ │ ├── external.go │ │ ├── golist.go │ │ ├── golist_overlay.go │ │ ├── loadmode_string.go │ │ ├── packages.go │ │ └── visit.go │ └── types │ │ ├── objectpath │ │ └── objectpath.go │ │ └── typeutil │ │ ├── callee.go │ │ ├── imports.go │ │ ├── map.go │ │ ├── methodsetcache.go │ │ └── ui.go │ └── internal │ ├── aliases │ ├── aliases.go │ └── aliases_go122.go │ ├── event │ ├── core │ │ ├── event.go │ │ ├── export.go │ │ └── fast.go │ ├── doc.go │ ├── event.go │ ├── keys │ │ ├── keys.go │ │ ├── standard.go │ │ └── util.go │ └── label │ │ └── label.go │ ├── gcimporter │ ├── bimport.go │ ├── exportdata.go │ ├── gcimporter.go │ ├── iexport.go │ ├── iimport.go │ ├── predeclared.go │ ├── support.go │ └── ureader_yes.go │ ├── gocommand │ ├── invoke.go │ ├── invoke_notunix.go │ ├── invoke_unix.go │ ├── vendor.go │ └── version.go │ ├── packagesinternal │ └── packages.go │ ├── pkgbits │ ├── codes.go │ ├── decoder.go │ ├── doc.go │ ├── encoder.go │ ├── flags.go │ ├── reloc.go │ ├── support.go │ ├── sync.go │ ├── syncmarker_string.go │ └── version.go │ ├── stdlib │ ├── deps.go │ ├── import.go │ ├── manifest.go │ └── stdlib.go │ ├── typeparams │ ├── common.go │ ├── coretype.go │ ├── free.go │ ├── normalize.go │ ├── termlist.go │ └── typeterm.go │ ├── typesinternal │ ├── classify_call.go │ ├── element.go │ ├── errorcode.go │ ├── errorcode_string.go │ ├── fx.go │ ├── isnamed.go │ ├── qualifier.go │ ├── recv.go │ ├── toonew.go │ ├── types.go │ ├── varkind.go │ ├── varkind_go124.go │ └── zerovalue.go │ └── versions │ ├── features.go │ ├── gover.go │ ├── types.go │ └── versions.go ├── google.golang.org ├── api │ ├── AUTHORS │ ├── CONTRIBUTORS │ ├── LICENSE │ ├── googleapi │ │ ├── googleapi.go │ │ ├── transport │ │ │ └── apikey.go │ │ └── types.go │ ├── iamcredentials │ │ └── v1 │ │ │ ├── iamcredentials-api.json │ │ │ └── iamcredentials-gen.go │ ├── internal │ │ ├── cba.go │ │ ├── cert │ │ │ ├── default_cert.go │ │ │ ├── enterprise_cert.go │ │ │ └── secureconnect_cert.go │ │ ├── conn_pool.go │ │ ├── creds.go │ │ ├── gensupport │ │ │ ├── buffer.go │ │ │ ├── doc.go │ │ │ ├── error.go │ │ │ ├── json.go │ │ │ ├── jsonfloat.go │ │ │ ├── media.go │ │ │ ├── params.go │ │ │ ├── resumable.go │ │ │ ├── retry.go │ │ │ ├── send.go │ │ │ └── version.go │ │ ├── impersonate │ │ │ └── impersonate.go │ │ ├── s2a.go │ │ ├── settings.go │ │ ├── third_party │ │ │ └── uritemplates │ │ │ │ ├── LICENSE │ │ │ │ ├── METADATA │ │ │ │ ├── uritemplates.go │ │ │ │ └── utils.go │ │ └── version.go │ ├── iterator │ │ └── iterator.go │ ├── option │ │ ├── internaloption │ │ │ └── internaloption.go │ │ └── option.go │ ├── storage │ │ └── v1 │ │ │ ├── storage-api.json │ │ │ └── storage-gen.go │ └── transport │ │ ├── dial.go │ │ ├── doc.go │ │ ├── grpc │ │ ├── dial.go │ │ ├── dial_socketopt.go │ │ └── pool.go │ │ └── http │ │ └── dial.go ├── genproto │ ├── LICENSE │ └── googleapis │ │ ├── api │ │ ├── LICENSE │ │ ├── annotations │ │ │ ├── annotations.pb.go │ │ │ ├── client.pb.go │ │ │ ├── field_behavior.pb.go │ │ │ ├── field_info.pb.go │ │ │ ├── http.pb.go │ │ │ ├── resource.pb.go │ │ │ └── routing.pb.go │ │ ├── distribution │ │ │ └── distribution.pb.go │ │ ├── expr │ │ │ └── v1alpha1 │ │ │ │ ├── checked.pb.go │ │ │ │ ├── eval.pb.go │ │ │ │ ├── explain.pb.go │ │ │ │ ├── syntax.pb.go │ │ │ │ └── value.pb.go │ │ ├── httpbody │ │ │ └── httpbody.pb.go │ │ ├── label │ │ │ └── label.pb.go │ │ ├── launch_stage.pb.go │ │ ├── metric │ │ │ └── metric.pb.go │ │ └── monitoredres │ │ │ └── monitored_resource.pb.go │ │ ├── rpc │ │ ├── LICENSE │ │ ├── code │ │ │ └── code.pb.go │ │ ├── errdetails │ │ │ └── error_details.pb.go │ │ └── status │ │ │ └── status.pb.go │ │ └── type │ │ ├── calendarperiod │ │ └── calendar_period.pb.go │ │ ├── date │ │ └── date.pb.go │ │ ├── expr │ │ └── expr.pb.go │ │ └── timeofday │ │ └── timeofday.pb.go ├── grpc │ ├── AUTHORS │ ├── CODE-OF-CONDUCT.md │ ├── CONTRIBUTING.md │ ├── GOVERNANCE.md │ ├── LICENSE │ ├── MAINTAINERS.md │ ├── Makefile │ ├── NOTICE.txt │ ├── README.md │ ├── SECURITY.md │ ├── attributes │ │ └── attributes.go │ ├── authz │ │ └── audit │ │ │ ├── audit_logger.go │ │ │ └── stdout │ │ │ └── stdout_logger.go │ ├── backoff.go │ ├── backoff │ │ └── backoff.go │ ├── balancer │ │ ├── balancer.go │ │ ├── base │ │ │ ├── balancer.go │ │ │ └── base.go │ │ ├── conn_state_evaluator.go │ │ ├── endpointsharding │ │ │ └── endpointsharding.go │ │ ├── grpclb │ │ │ ├── grpc_lb_v1 │ │ │ │ ├── load_balancer.pb.go │ │ │ │ └── load_balancer_grpc.pb.go │ │ │ ├── grpclb.go │ │ │ ├── grpclb_config.go │ │ │ ├── grpclb_picker.go │ │ │ ├── grpclb_remote_balancer.go │ │ │ ├── grpclb_util.go │ │ │ └── state │ │ │ │ └── state.go │ │ ├── lazy │ │ │ └── lazy.go │ │ ├── leastrequest │ │ │ └── leastrequest.go │ │ ├── pickfirst │ │ │ ├── internal │ │ │ │ └── internal.go │ │ │ └── pickfirst.go │ │ ├── ringhash │ │ │ ├── config.go │ │ │ ├── logging.go │ │ │ ├── picker.go │ │ │ ├── ring.go │ │ │ └── ringhash.go │ │ ├── rls │ │ │ ├── balancer.go │ │ │ ├── cache.go │ │ │ ├── child_policy.go │ │ │ ├── config.go │ │ │ ├── control_channel.go │ │ │ ├── internal │ │ │ │ ├── adaptive │ │ │ │ │ ├── adaptive.go │ │ │ │ │ └── lookback.go │ │ │ │ └── keys │ │ │ │ │ └── builder.go │ │ │ └── picker.go │ │ ├── roundrobin │ │ │ └── roundrobin.go │ │ ├── subconn.go │ │ ├── weightedroundrobin │ │ │ ├── balancer.go │ │ │ ├── config.go │ │ │ ├── internal │ │ │ │ └── internal.go │ │ │ ├── logging.go │ │ │ └── scheduler.go │ │ └── weightedtarget │ │ │ ├── logging.go │ │ │ ├── weightedaggregator │ │ │ └── aggregator.go │ │ │ ├── weightedtarget.go │ │ │ └── weightedtarget_config.go │ ├── balancer_wrapper.go │ ├── binarylog │ │ └── grpc_binarylog_v1 │ │ │ └── binarylog.pb.go │ ├── call.go │ ├── channelz │ │ └── channelz.go │ ├── clientconn.go │ ├── codec.go │ ├── codes │ │ ├── code_string.go │ │ └── codes.go │ ├── connectivity │ │ └── connectivity.go │ ├── credentials │ │ ├── alts │ │ │ ├── alts.go │ │ │ ├── internal │ │ │ │ ├── authinfo │ │ │ │ │ └── authinfo.go │ │ │ │ ├── common.go │ │ │ │ ├── conn │ │ │ │ │ ├── aeadrekey.go │ │ │ │ │ ├── aes128gcm.go │ │ │ │ │ ├── aes128gcmrekey.go │ │ │ │ │ ├── common.go │ │ │ │ │ ├── counter.go │ │ │ │ │ ├── record.go │ │ │ │ │ └── utils.go │ │ │ │ ├── handshaker │ │ │ │ │ ├── handshaker.go │ │ │ │ │ └── service │ │ │ │ │ │ └── service.go │ │ │ │ └── proto │ │ │ │ │ └── grpc_gcp │ │ │ │ │ ├── altscontext.pb.go │ │ │ │ │ ├── handshaker.pb.go │ │ │ │ │ ├── handshaker_grpc.pb.go │ │ │ │ │ └── transport_security_common.pb.go │ │ │ └── utils.go │ │ ├── credentials.go │ │ ├── google │ │ │ ├── google.go │ │ │ └── xds.go │ │ ├── insecure │ │ │ └── insecure.go │ │ ├── jwt │ │ │ ├── doc.go │ │ │ ├── file_reader.go │ │ │ └── token_file_call_creds.go │ │ ├── oauth │ │ │ └── oauth.go │ │ ├── tls.go │ │ └── tls │ │ │ └── certprovider │ │ │ ├── distributor.go │ │ │ ├── pemfile │ │ │ ├── builder.go │ │ │ └── watcher.go │ │ │ ├── provider.go │ │ │ └── store.go │ ├── dialoptions.go │ ├── doc.go │ ├── encoding │ │ ├── encoding.go │ │ ├── encoding_v2.go │ │ ├── gzip │ │ │ └── gzip.go │ │ ├── internal │ │ │ └── internal.go │ │ └── proto │ │ │ └── proto.go │ ├── experimental │ │ ├── opentelemetry │ │ │ └── trace_options.go │ │ └── stats │ │ │ ├── metricregistry.go │ │ │ └── metrics.go │ ├── grpclog │ │ ├── component.go │ │ ├── grpclog.go │ │ ├── internal │ │ │ ├── grpclog.go │ │ │ ├── logger.go │ │ │ └── loggerv2.go │ │ ├── logger.go │ │ └── loggerv2.go │ ├── health │ │ └── grpc_health_v1 │ │ │ ├── health.pb.go │ │ │ └── health_grpc.pb.go │ ├── interceptor.go │ ├── internal │ │ ├── admin │ │ │ └── admin.go │ │ ├── backoff │ │ │ └── backoff.go │ │ ├── balancer │ │ │ ├── gracefulswitch │ │ │ │ ├── config.go │ │ │ │ └── gracefulswitch.go │ │ │ ├── nop │ │ │ │ └── nop.go │ │ │ └── weight │ │ │ │ └── weight.go │ │ ├── balancergroup │ │ │ ├── balancergroup.go │ │ │ └── balancerstateaggregator.go │ │ ├── balancerload │ │ │ └── load.go │ │ ├── binarylog │ │ │ ├── binarylog.go │ │ │ ├── binarylog_testutil.go │ │ │ ├── env_config.go │ │ │ ├── method_logger.go │ │ │ └── sink.go │ │ ├── buffer │ │ │ └── unbounded.go │ │ ├── cache │ │ │ └── timeoutCache.go │ │ ├── channelz │ │ │ ├── channel.go │ │ │ ├── channelmap.go │ │ │ ├── funcs.go │ │ │ ├── logging.go │ │ │ ├── server.go │ │ │ ├── socket.go │ │ │ ├── subchannel.go │ │ │ ├── syscall_linux.go │ │ │ ├── syscall_nonlinux.go │ │ │ └── trace.go │ │ ├── credentials │ │ │ ├── credentials.go │ │ │ ├── spiffe.go │ │ │ ├── spiffe │ │ │ │ └── spiffe.go │ │ │ ├── syscallconn.go │ │ │ ├── util.go │ │ │ └── xds │ │ │ │ └── handshake_info.go │ │ ├── envconfig │ │ │ ├── envconfig.go │ │ │ ├── observability.go │ │ │ └── xds.go │ │ ├── experimental.go │ │ ├── googlecloud │ │ │ ├── googlecloud.go │ │ │ ├── manufacturer.go │ │ │ ├── manufacturer_linux.go │ │ │ └── manufacturer_windows.go │ │ ├── grpclog │ │ │ └── prefix_logger.go │ │ ├── grpcsync │ │ │ ├── callback_serializer.go │ │ │ ├── event.go │ │ │ └── pubsub.go │ │ ├── grpcutil │ │ │ ├── compressor.go │ │ │ ├── encode_duration.go │ │ │ ├── grpcutil.go │ │ │ ├── metadata.go │ │ │ ├── method.go │ │ │ └── regex.go │ │ ├── hierarchy │ │ │ └── hierarchy.go │ │ ├── idle │ │ │ └── idle.go │ │ ├── internal.go │ │ ├── metadata │ │ │ └── metadata.go │ │ ├── pretty │ │ │ └── pretty.go │ │ ├── proto │ │ │ └── grpc_lookup_v1 │ │ │ │ ├── rls.pb.go │ │ │ │ ├── rls_config.pb.go │ │ │ │ └── rls_grpc.pb.go │ │ ├── proxyattributes │ │ │ └── proxyattributes.go │ │ ├── resolver │ │ │ ├── config_selector.go │ │ │ ├── delegatingresolver │ │ │ │ └── delegatingresolver.go │ │ │ ├── dns │ │ │ │ ├── dns_resolver.go │ │ │ │ └── internal │ │ │ │ │ └── internal.go │ │ │ ├── passthrough │ │ │ │ └── passthrough.go │ │ │ └── unix │ │ │ │ └── unix.go │ │ ├── ringhash │ │ │ └── ringhash.go │ │ ├── serviceconfig │ │ │ ├── duration.go │ │ │ └── serviceconfig.go │ │ ├── stats │ │ │ ├── labels.go │ │ │ ├── metrics_recorder_list.go │ │ │ └── stats.go │ │ ├── status │ │ │ └── status.go │ │ ├── syscall │ │ │ ├── syscall_linux.go │ │ │ └── syscall_nonlinux.go │ │ ├── tcp_keepalive_others.go │ │ ├── tcp_keepalive_unix.go │ │ ├── tcp_keepalive_windows.go │ │ ├── transport │ │ │ ├── bdp_estimator.go │ │ │ ├── client_stream.go │ │ │ ├── controlbuf.go │ │ │ ├── defaults.go │ │ │ ├── flowcontrol.go │ │ │ ├── handler_server.go │ │ │ ├── http2_client.go │ │ │ ├── http2_server.go │ │ │ ├── http_util.go │ │ │ ├── logging.go │ │ │ ├── networktype │ │ │ │ └── networktype.go │ │ │ ├── proxy.go │ │ │ ├── server_stream.go │ │ │ └── transport.go │ │ ├── wrr │ │ │ ├── edf.go │ │ │ ├── random.go │ │ │ └── wrr.go │ │ └── xds │ │ │ ├── balancer │ │ │ ├── balancer.go │ │ │ ├── cdsbalancer │ │ │ │ ├── cdsbalancer.go │ │ │ │ ├── cluster_watcher.go │ │ │ │ └── logging.go │ │ │ ├── clusterimpl │ │ │ │ ├── clusterimpl.go │ │ │ │ ├── config.go │ │ │ │ ├── logging.go │ │ │ │ └── picker.go │ │ │ ├── clustermanager │ │ │ │ ├── balancerstateaggregator.go │ │ │ │ ├── clustermanager.go │ │ │ │ ├── config.go │ │ │ │ └── picker.go │ │ │ ├── clusterresolver │ │ │ │ ├── clusterresolver.go │ │ │ │ ├── config.go │ │ │ │ ├── configbuilder.go │ │ │ │ ├── configbuilder_childname.go │ │ │ │ ├── logging.go │ │ │ │ ├── resource_resolver.go │ │ │ │ ├── resource_resolver_dns.go │ │ │ │ └── resource_resolver_eds.go │ │ │ ├── loadstore │ │ │ │ └── load_store_wrapper.go │ │ │ ├── outlierdetection │ │ │ │ ├── balancer.go │ │ │ │ ├── callcounter.go │ │ │ │ ├── config.go │ │ │ │ ├── logging.go │ │ │ │ └── subconn_wrapper.go │ │ │ ├── priority │ │ │ │ ├── balancer.go │ │ │ │ ├── balancer_child.go │ │ │ │ ├── balancer_priority.go │ │ │ │ ├── config.go │ │ │ │ ├── ignore_resolve_now.go │ │ │ │ └── logging.go │ │ │ └── wrrlocality │ │ │ │ ├── balancer.go │ │ │ │ └── logging.go │ │ │ ├── bootstrap │ │ │ ├── bootstrap.go │ │ │ ├── jwtcreds │ │ │ │ └── call_creds.go │ │ │ ├── logging.go │ │ │ ├── template.go │ │ │ └── tlscreds │ │ │ │ └── bundle.go │ │ │ ├── clients │ │ │ ├── config.go │ │ │ ├── grpctransport │ │ │ │ └── grpc_transport.go │ │ │ ├── internal │ │ │ │ ├── backoff │ │ │ │ │ └── backoff.go │ │ │ │ ├── buffer │ │ │ │ │ └── unbounded.go │ │ │ │ ├── internal.go │ │ │ │ ├── pretty │ │ │ │ │ └── pretty.go │ │ │ │ └── syncutil │ │ │ │ │ ├── callback_serializer.go │ │ │ │ │ └── event.go │ │ │ ├── lrsclient │ │ │ │ ├── internal │ │ │ │ │ └── internal.go │ │ │ │ ├── load_store.go │ │ │ │ ├── logging.go │ │ │ │ ├── lrs_stream.go │ │ │ │ ├── lrsclient.go │ │ │ │ └── lrsconfig.go │ │ │ ├── transport_builder.go │ │ │ └── xdsclient │ │ │ │ ├── ads_stream.go │ │ │ │ ├── authority.go │ │ │ │ ├── channel.go │ │ │ │ ├── clientimpl_watchers.go │ │ │ │ ├── internal │ │ │ │ ├── internal.go │ │ │ │ └── xdsresource │ │ │ │ │ ├── ads_stream.go │ │ │ │ │ ├── errors.go │ │ │ │ │ ├── name.go │ │ │ │ │ ├── type.go │ │ │ │ │ └── version.go │ │ │ │ ├── logging.go │ │ │ │ ├── metrics │ │ │ │ └── metrics.go │ │ │ │ ├── resource_type.go │ │ │ │ ├── resource_watcher.go │ │ │ │ ├── xdsclient.go │ │ │ │ └── xdsconfig.go │ │ │ ├── clusterspecifier │ │ │ ├── cluster_specifier.go │ │ │ └── rls │ │ │ │ └── rls.go │ │ │ ├── httpfilter │ │ │ ├── fault │ │ │ │ └── fault.go │ │ │ ├── httpfilter.go │ │ │ ├── rbac │ │ │ │ └── rbac.go │ │ │ └── router │ │ │ │ └── router.go │ │ │ ├── matcher │ │ │ ├── matcher_header.go │ │ │ └── string_matcher.go │ │ │ ├── rbac │ │ │ ├── converter.go │ │ │ ├── matchers.go │ │ │ └── rbac_engine.go │ │ │ ├── resolver │ │ │ ├── internal │ │ │ │ └── internal.go │ │ │ ├── logging.go │ │ │ ├── serviceconfig.go │ │ │ ├── watch_service.go │ │ │ └── xds_resolver.go │ │ │ ├── server │ │ │ ├── conn_wrapper.go │ │ │ ├── listener_wrapper.go │ │ │ └── rds_handler.go │ │ │ ├── xds.go │ │ │ └── xdsclient │ │ │ ├── attributes.go │ │ │ ├── client.go │ │ │ ├── clientimpl.go │ │ │ ├── clientimpl_loadreport.go │ │ │ ├── clientimpl_watchers.go │ │ │ ├── logging.go │ │ │ ├── pool.go │ │ │ ├── requests_counter.go │ │ │ ├── resource_types.go │ │ │ ├── xdslbregistry │ │ │ ├── converter │ │ │ │ └── converter.go │ │ │ └── xdslbregistry.go │ │ │ └── xdsresource │ │ │ ├── cluster_resource_type.go │ │ │ ├── endpoints_resource_type.go │ │ │ ├── errors.go │ │ │ ├── filter_chain.go │ │ │ ├── listener_resource_type.go │ │ │ ├── logging.go │ │ │ ├── matcher.go │ │ │ ├── matcher_path.go │ │ │ ├── metadata.go │ │ │ ├── name.go │ │ │ ├── resource_type.go │ │ │ ├── route_config_resource_type.go │ │ │ ├── type.go │ │ │ ├── type_cds.go │ │ │ ├── type_eds.go │ │ │ ├── type_lds.go │ │ │ ├── type_rds.go │ │ │ ├── unmarshal_cds.go │ │ │ ├── unmarshal_eds.go │ │ │ ├── unmarshal_lds.go │ │ │ ├── unmarshal_rds.go │ │ │ └── version │ │ │ └── version.go │ ├── keepalive │ │ └── keepalive.go │ ├── mem │ │ ├── buffer_pool.go │ │ ├── buffer_slice.go │ │ └── buffers.go │ ├── metadata │ │ └── metadata.go │ ├── orca │ │ ├── call_metrics.go │ │ ├── internal │ │ │ └── internal.go │ │ ├── orca.go │ │ ├── producer.go │ │ ├── server_metrics.go │ │ └── service.go │ ├── peer │ │ └── peer.go │ ├── picker_wrapper.go │ ├── preloader.go │ ├── resolver │ │ ├── dns │ │ │ └── dns_resolver.go │ │ ├── manual │ │ │ └── manual.go │ │ ├── map.go │ │ ├── resolver.go │ │ └── ringhash │ │ │ └── attr.go │ ├── resolver_wrapper.go │ ├── rpc_util.go │ ├── server.go │ ├── service_config.go │ ├── serviceconfig │ │ └── serviceconfig.go │ ├── stats │ │ ├── handlers.go │ │ ├── metrics.go │ │ ├── opentelemetry │ │ │ ├── client_metrics.go │ │ │ ├── client_tracing.go │ │ │ ├── grpc_trace_bin_propagator.go │ │ │ ├── internal │ │ │ │ ├── pluginoption.go │ │ │ │ └── tracing │ │ │ │ │ └── carrier.go │ │ │ ├── opentelemetry.go │ │ │ ├── server_metrics.go │ │ │ ├── server_tracing.go │ │ │ └── trace.go │ │ └── stats.go │ ├── status │ │ └── status.go │ ├── stream.go │ ├── stream_interfaces.go │ ├── tap │ │ └── tap.go │ ├── test │ │ └── bufconn │ │ │ └── bufconn.go │ ├── trace.go │ ├── trace_notrace.go │ ├── trace_withtrace.go │ ├── version.go │ └── xds │ │ ├── bootstrap │ │ ├── bootstrap.go │ │ └── credentials.go │ │ ├── csds │ │ └── csds.go │ │ ├── googledirectpath │ │ ├── googlec2p.go │ │ └── utils.go │ │ ├── server.go │ │ ├── server_options.go │ │ └── xds.go └── protobuf │ ├── LICENSE │ ├── PATENTS │ ├── encoding │ ├── protodelim │ │ └── protodelim.go │ ├── protojson │ │ ├── decode.go │ │ ├── doc.go │ │ ├── encode.go │ │ └── well_known_types.go │ ├── prototext │ │ ├── decode.go │ │ ├── doc.go │ │ └── encode.go │ └── protowire │ │ └── wire.go │ ├── internal │ ├── descfmt │ │ └── stringer.go │ ├── descopts │ │ └── options.go │ ├── detrand │ │ └── rand.go │ ├── editiondefaults │ │ ├── defaults.go │ │ └── editions_defaults.binpb │ ├── editionssupport │ │ └── editions.go │ ├── encoding │ │ ├── defval │ │ │ └── default.go │ │ ├── json │ │ │ ├── decode.go │ │ │ ├── decode_number.go │ │ │ ├── decode_string.go │ │ │ ├── decode_token.go │ │ │ └── encode.go │ │ ├── messageset │ │ │ └── messageset.go │ │ ├── tag │ │ │ └── tag.go │ │ └── text │ │ │ ├── decode.go │ │ │ ├── decode_number.go │ │ │ ├── decode_string.go │ │ │ ├── decode_token.go │ │ │ ├── doc.go │ │ │ └── encode.go │ ├── errors │ │ └── errors.go │ ├── filedesc │ │ ├── build.go │ │ ├── desc.go │ │ ├── desc_init.go │ │ ├── desc_lazy.go │ │ ├── desc_list.go │ │ ├── desc_list_gen.go │ │ ├── editions.go │ │ ├── placeholder.go │ │ └── presence.go │ ├── filetype │ │ └── build.go │ ├── flags │ │ ├── flags.go │ │ ├── proto_legacy_disable.go │ │ └── proto_legacy_enable.go │ ├── genid │ │ ├── any_gen.go │ │ ├── api_gen.go │ │ ├── descriptor_gen.go │ │ ├── doc.go │ │ ├── duration_gen.go │ │ ├── empty_gen.go │ │ ├── field_mask_gen.go │ │ ├── go_features_gen.go │ │ ├── goname.go │ │ ├── map_entry.go │ │ ├── name.go │ │ ├── source_context_gen.go │ │ ├── struct_gen.go │ │ ├── timestamp_gen.go │ │ ├── type_gen.go │ │ ├── wrappers.go │ │ └── wrappers_gen.go │ ├── impl │ │ ├── api_export.go │ │ ├── api_export_opaque.go │ │ ├── bitmap.go │ │ ├── bitmap_race.go │ │ ├── checkinit.go │ │ ├── codec_extension.go │ │ ├── codec_field.go │ │ ├── codec_field_opaque.go │ │ ├── codec_gen.go │ │ ├── codec_map.go │ │ ├── codec_message.go │ │ ├── codec_message_opaque.go │ │ ├── codec_messageset.go │ │ ├── codec_tables.go │ │ ├── codec_unsafe.go │ │ ├── convert.go │ │ ├── convert_list.go │ │ ├── convert_map.go │ │ ├── decode.go │ │ ├── encode.go │ │ ├── enum.go │ │ ├── equal.go │ │ ├── extension.go │ │ ├── lazy.go │ │ ├── legacy_enum.go │ │ ├── legacy_export.go │ │ ├── legacy_extension.go │ │ ├── legacy_file.go │ │ ├── legacy_message.go │ │ ├── merge.go │ │ ├── merge_gen.go │ │ ├── message.go │ │ ├── message_opaque.go │ │ ├── message_opaque_gen.go │ │ ├── message_reflect.go │ │ ├── message_reflect_field.go │ │ ├── message_reflect_field_gen.go │ │ ├── message_reflect_gen.go │ │ ├── pointer_unsafe.go │ │ ├── pointer_unsafe_opaque.go │ │ ├── presence.go │ │ └── validate.go │ ├── order │ │ ├── order.go │ │ └── range.go │ ├── pragma │ │ └── pragma.go │ ├── protolazy │ │ ├── bufferreader.go │ │ ├── lazy.go │ │ └── pointer_unsafe.go │ ├── set │ │ └── ints.go │ ├── strs │ │ ├── strings.go │ │ └── strings_unsafe.go │ └── version │ │ └── version.go │ ├── proto │ ├── checkinit.go │ ├── decode.go │ ├── decode_gen.go │ ├── doc.go │ ├── encode.go │ ├── encode_gen.go │ ├── equal.go │ ├── extension.go │ ├── merge.go │ ├── messageset.go │ ├── proto.go │ ├── proto_methods.go │ ├── proto_reflect.go │ ├── reset.go │ ├── size.go │ ├── size_gen.go │ ├── wrapperopaque.go │ └── wrappers.go │ ├── protoadapt │ └── convert.go │ ├── reflect │ ├── protodesc │ │ ├── desc.go │ │ ├── desc_init.go │ │ ├── desc_resolve.go │ │ ├── desc_validate.go │ │ ├── editions.go │ │ └── proto.go │ ├── protoreflect │ │ ├── methods.go │ │ ├── proto.go │ │ ├── source.go │ │ ├── source_gen.go │ │ ├── type.go │ │ ├── value.go │ │ ├── value_equal.go │ │ ├── value_union.go │ │ └── value_unsafe.go │ └── protoregistry │ │ └── registry.go │ ├── runtime │ ├── protoiface │ │ ├── legacy.go │ │ └── methods.go │ └── protoimpl │ │ ├── impl.go │ │ └── version.go │ └── types │ ├── descriptorpb │ └── descriptor.pb.go │ ├── gofeaturespb │ └── go_features.pb.go │ └── known │ ├── anypb │ └── any.pb.go │ ├── durationpb │ └── duration.pb.go │ ├── emptypb │ └── empty.pb.go │ ├── fieldmaskpb │ └── field_mask.pb.go │ ├── structpb │ └── struct.pb.go │ ├── timestamppb │ └── timestamp.pb.go │ └── wrapperspb │ └── wrappers.pb.go ├── gopkg.in ├── alexcesaro │ └── quotedprintable.v3 │ │ ├── LICENSE │ │ ├── README.md │ │ ├── encodedword.go │ │ ├── pool.go │ │ ├── pool_go12.go │ │ ├── reader.go │ │ └── writer.go ├── mail.v2 │ ├── .gitignore │ ├── .travis.yml │ ├── CHANGELOG.md │ ├── CONTRIBUTING.md │ ├── LICENSE │ ├── README.md │ ├── auth.go │ ├── doc.go │ ├── errors.go │ ├── message.go │ ├── mime.go │ ├── mime_go14.go │ ├── send.go │ ├── smtp.go │ └── writeto.go ├── telebot.v3 │ ├── .gitignore │ ├── LICENSE │ ├── README.md │ ├── admin.go │ ├── api.go │ ├── bot.go │ ├── callback.go │ ├── chat.go │ ├── commands.go │ ├── context.go │ ├── editable.go │ ├── errors.go │ ├── file.go │ ├── game.go │ ├── inline.go │ ├── inline_types.go │ ├── input_types.go │ ├── markup.go │ ├── media.go │ ├── message.go │ ├── middleware.go │ ├── options.go │ ├── payments.go │ ├── payments_data.go │ ├── poll.go │ ├── poller.go │ ├── sendable.go │ ├── stickers.go │ ├── telebot.go │ ├── topic.go │ ├── update.go │ ├── video_chat.go │ ├── web_app.go │ └── webhook.go ├── yaml.v2 │ ├── .travis.yml │ ├── LICENSE │ ├── LICENSE.libyaml │ ├── NOTICE │ ├── README.md │ ├── apic.go │ ├── decode.go │ ├── emitterc.go │ ├── encode.go │ ├── parserc.go │ ├── readerc.go │ ├── resolve.go │ ├── scannerc.go │ ├── sorter.go │ ├── writerc.go │ ├── yaml.go │ ├── yamlh.go │ └── yamlprivateh.go └── yaml.v3 │ ├── LICENSE │ ├── NOTICE │ ├── README.md │ ├── apic.go │ ├── decode.go │ ├── emitterc.go │ ├── encode.go │ ├── parserc.go │ ├── readerc.go │ ├── resolve.go │ ├── scannerc.go │ ├── sorter.go │ ├── writerc.go │ ├── yaml.go │ ├── yamlh.go │ └── yamlprivateh.go ├── k8s.io ├── apimachinery │ ├── LICENSE │ └── pkg │ │ └── util │ │ ├── runtime │ │ └── runtime.go │ │ └── sets │ │ ├── byte.go │ │ ├── doc.go │ │ ├── empty.go │ │ ├── int.go │ │ ├── int32.go │ │ ├── int64.go │ │ ├── set.go │ │ └── string.go ├── client-go │ ├── LICENSE │ ├── tools │ │ └── metrics │ │ │ ├── OWNERS │ │ │ └── metrics.go │ └── util │ │ └── workqueue │ │ ├── default_rate_limiters.go │ │ ├── delaying_queue.go │ │ ├── doc.go │ │ ├── metrics.go │ │ ├── parallelizer.go │ │ ├── queue.go │ │ └── rate_limiting_queue.go ├── klog │ └── v2 │ │ ├── .gitignore │ │ ├── .golangci.yaml │ │ ├── CONTRIBUTING.md │ │ ├── LICENSE │ │ ├── OWNERS │ │ ├── README.md │ │ ├── RELEASE.md │ │ ├── SECURITY.md │ │ ├── SECURITY_CONTACTS │ │ ├── code-of-conduct.md │ │ ├── contextual.go │ │ ├── contextual_slog.go │ │ ├── exit.go │ │ ├── format.go │ │ ├── imports.go │ │ ├── internal │ │ ├── buffer │ │ │ └── buffer.go │ │ ├── clock │ │ │ ├── README.md │ │ │ └── clock.go │ │ ├── dbg │ │ │ └── dbg.go │ │ ├── serialize │ │ │ ├── keyvalues.go │ │ │ ├── keyvalues_no_slog.go │ │ │ └── keyvalues_slog.go │ │ ├── severity │ │ │ └── severity.go │ │ └── sloghandler │ │ │ └── sloghandler_slog.go │ │ ├── k8s_references.go │ │ ├── k8s_references_slog.go │ │ ├── klog.go │ │ ├── klog_file.go │ │ ├── klog_file_others.go │ │ ├── klog_file_windows.go │ │ ├── klogr.go │ │ ├── klogr_slog.go │ │ └── safeptr.go ├── kube-openapi │ ├── LICENSE │ └── pkg │ │ ├── internal │ │ ├── flags.go │ │ ├── serialization.go │ │ └── third_party │ │ │ ├── go-json-experiment │ │ │ └── json │ │ │ │ ├── AUTHORS │ │ │ │ ├── CONTRIBUTORS │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── arshal.go │ │ │ │ ├── arshal_any.go │ │ │ │ ├── arshal_default.go │ │ │ │ ├── arshal_funcs.go │ │ │ │ ├── arshal_inlined.go │ │ │ │ ├── arshal_methods.go │ │ │ │ ├── arshal_time.go │ │ │ │ ├── decode.go │ │ │ │ ├── doc.go │ │ │ │ ├── encode.go │ │ │ │ ├── errors.go │ │ │ │ ├── fields.go │ │ │ │ ├── fold.go │ │ │ │ ├── intern.go │ │ │ │ ├── pools.go │ │ │ │ ├── state.go │ │ │ │ ├── token.go │ │ │ │ └── value.go │ │ │ └── govalidator │ │ │ ├── LICENSE │ │ │ ├── patterns.go │ │ │ └── validator.go │ │ └── validation │ │ ├── errors │ │ ├── .gitignore │ │ ├── LICENSE │ │ ├── api.go │ │ ├── doc.go │ │ ├── headers.go │ │ └── schema.go │ │ ├── spec │ │ ├── .gitignore │ │ ├── LICENSE │ │ ├── contact_info.go │ │ ├── external_docs.go │ │ ├── gnostic.go │ │ ├── header.go │ │ ├── info.go │ │ ├── items.go │ │ ├── license.go │ │ ├── operation.go │ │ ├── parameter.go │ │ ├── path_item.go │ │ ├── paths.go │ │ ├── ref.go │ │ ├── response.go │ │ ├── responses.go │ │ ├── schema.go │ │ ├── security_scheme.go │ │ ├── swagger.go │ │ └── tag.go │ │ ├── strfmt │ │ ├── .gitignore │ │ ├── LICENSE │ │ ├── bson.go │ │ ├── bson │ │ │ └── objectid.go │ │ ├── date.go │ │ ├── default.go │ │ ├── doc.go │ │ ├── duration.go │ │ ├── format.go │ │ ├── kubernetes-extensions.go │ │ └── time.go │ │ └── validate │ │ ├── .gitignore │ │ ├── LICENSE │ │ ├── debug.go │ │ ├── doc.go │ │ ├── formats.go │ │ ├── helpers.go │ │ ├── object_validator.go │ │ ├── options.go │ │ ├── result.go │ │ ├── rexp.go │ │ ├── schema.go │ │ ├── schema_messages.go │ │ ├── schema_option.go │ │ ├── schema_props.go │ │ ├── slice_validator.go │ │ ├── type.go │ │ ├── validator.go │ │ └── values.go └── utils │ ├── LICENSE │ ├── clock │ ├── README.md │ └── clock.go │ ├── internal │ └── third_party │ │ └── forked │ │ └── golang │ │ ├── LICENSE │ │ ├── PATENTS │ │ └── net │ │ ├── ip.go │ │ └── parse.go │ └── net │ ├── ipfamily.go │ ├── ipnet.go │ ├── multi_listen.go │ ├── net.go │ ├── parse.go │ └── port.go ├── modules.txt └── sigs.k8s.io ├── kustomize └── kyaml │ ├── LICENSE │ ├── comments │ └── comments.go │ ├── errors │ └── errors.go │ ├── ext │ └── ext.go │ ├── fieldmeta │ └── fieldmeta.go │ ├── filesys │ ├── confirmeddir.go │ ├── doc.go │ ├── file.go │ ├── fileinfo.go │ ├── fileondisk.go │ ├── filesystem.go │ ├── fsnode.go │ ├── fsondisk.go │ ├── fsondisk_unix.go │ ├── fsondisk_windows.go │ └── util.go │ ├── fn │ ├── framework │ │ ├── command │ │ │ ├── command.go │ │ │ └── doc.go │ │ ├── doc.go │ │ ├── framework.go │ │ ├── function_definition.go │ │ ├── matchers.go │ │ ├── patch.go │ │ ├── processors.go │ │ ├── result.go │ │ ├── selector.go │ │ ├── template.go │ │ └── validation.go │ └── runtime │ │ └── runtimeutil │ │ ├── doc.go │ │ ├── functiontypes.go │ │ ├── runtimeutil.go │ │ └── types.go │ ├── kio │ ├── byteio_reader.go │ ├── byteio_writer.go │ ├── doc.go │ ├── filters │ │ ├── filters.go │ │ ├── fmtr.go │ │ ├── grep.go │ │ ├── local.go │ │ ├── merge.go │ │ ├── merge3.go │ │ ├── modify.go │ │ └── stripcomments.go │ ├── ignorefilesmatcher.go │ ├── kio.go │ ├── kioutil │ │ └── kioutil.go │ ├── pkgio_reader.go │ ├── pkgio_writer.go │ └── tree.go │ ├── openapi │ ├── Makefile │ ├── README.md │ ├── kubernetesapi │ │ ├── openapiinfo.go │ │ └── v1_21_2 │ │ │ ├── swagger.go │ │ │ └── swagger.pb │ ├── kustomizationapi │ │ ├── swagger.go │ │ └── swagger.json │ └── openapi.go │ ├── order │ └── syncorder.go │ ├── resid │ ├── gvk.go │ └── resid.go │ ├── sets │ ├── string.go │ └── stringlist.go │ ├── sliceutil │ └── slice.go │ ├── utils │ └── pathsplitter.go │ └── yaml │ ├── alias.go │ ├── compatibility.go │ ├── const.go │ ├── datamap.go │ ├── doc.go │ ├── filters.go │ ├── fns.go │ ├── internal │ └── k8sgen │ │ └── pkg │ │ ├── labels │ │ ├── copied.deepcopy.go │ │ ├── labels.go │ │ └── selector.go │ │ ├── selection │ │ └── operator.go │ │ └── util │ │ ├── errors │ │ └── errors.go │ │ ├── sets │ │ ├── empty.go │ │ └── string.go │ │ └── validation │ │ ├── field │ │ ├── errors.go │ │ └── path.go │ │ └── validation.go │ ├── kfns.go │ ├── mapnode.go │ ├── match.go │ ├── merge2 │ ├── merge2.go │ ├── smpdirective.go │ └── smpdirective_string.go │ ├── merge3 │ ├── merge3.go │ └── visitor.go │ ├── order.go │ ├── rnode.go │ ├── schema │ └── schema.go │ ├── types.go │ ├── util.go │ └── walk │ ├── associative_sequence.go │ ├── map.go │ ├── nonassociative_sequence.go │ ├── scalar.go │ ├── visitor.go │ └── walk.go └── yaml ├── .gitignore ├── CONTRIBUTING.md ├── LICENSE ├── OWNERS ├── README.md ├── RELEASE.md ├── SECURITY_CONTACTS ├── code-of-conduct.md ├── fields.go └── yaml.go /.config/go/env: -------------------------------------------------------------------------------- 1 | GOPRIVATE=github.com/grafana/* 2 | -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/.gitconfig -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- 1 | blank_issues_enabled: true 2 | -------------------------------------------------------------------------------- /.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/.github/pull_request_template.md -------------------------------------------------------------------------------- /.github/stale.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/.github/stale.yml -------------------------------------------------------------------------------- /.github/workflows/backport.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/.github/workflows/backport.yaml -------------------------------------------------------------------------------- /.github/workflows/flaky-tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/.github/workflows/flaky-tests.yml -------------------------------------------------------------------------------- /.github/workflows/helm-ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/.github/workflows/helm-ci.yml -------------------------------------------------------------------------------- /.github/workflows/stale.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/.github/workflows/stale.yaml -------------------------------------------------------------------------------- /.github/workflows/test-docs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/.github/workflows/test-docs.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/.gitignore -------------------------------------------------------------------------------- /.golangci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/.golangci.yml -------------------------------------------------------------------------------- /.lintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/.lintignore -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/.prettierignore -------------------------------------------------------------------------------- /ADOPTERS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/ADOPTERS.md -------------------------------------------------------------------------------- /AGENTS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/AGENTS.md -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CLAUDE.md: -------------------------------------------------------------------------------- 1 | docs/internal/contributing/README.md -------------------------------------------------------------------------------- /CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/CODEOWNERS -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /GOVERNANCE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/GOVERNANCE.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/LICENSE -------------------------------------------------------------------------------- /LICENSING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/LICENSING.md -------------------------------------------------------------------------------- /MAINTAINERS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/MAINTAINERS.md -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/Makefile -------------------------------------------------------------------------------- /Makefile.local.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/Makefile.local.example -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/README.md -------------------------------------------------------------------------------- /RELEASE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/RELEASE.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/SECURITY.md -------------------------------------------------------------------------------- /VERSION: -------------------------------------------------------------------------------- 1 | 3.0.1 2 | -------------------------------------------------------------------------------- /cmd/metaconvert/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/cmd/metaconvert/Dockerfile -------------------------------------------------------------------------------- /cmd/metaconvert/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/cmd/metaconvert/main.go -------------------------------------------------------------------------------- /cmd/metaconvert/main_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/cmd/metaconvert/main_test.go -------------------------------------------------------------------------------- /cmd/mimir/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/cmd/mimir/Dockerfile -------------------------------------------------------------------------------- /cmd/mimir/config-descriptor.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/cmd/mimir/config-descriptor.json -------------------------------------------------------------------------------- /cmd/mimir/help-all.txt.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/cmd/mimir/help-all.txt.tmpl -------------------------------------------------------------------------------- /cmd/mimir/help.txt.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/cmd/mimir/help.txt.tmpl -------------------------------------------------------------------------------- /cmd/mimir/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/cmd/mimir/main.go -------------------------------------------------------------------------------- /cmd/mimir/main_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/cmd/mimir/main_test.go -------------------------------------------------------------------------------- /cmd/mimirtool/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/cmd/mimirtool/Dockerfile -------------------------------------------------------------------------------- /cmd/mimirtool/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/cmd/mimirtool/main.go -------------------------------------------------------------------------------- /cmd/mimirtool/tools/image-tag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/cmd/mimirtool/tools/image-tag -------------------------------------------------------------------------------- /cmd/query-tee/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/cmd/query-tee/Dockerfile -------------------------------------------------------------------------------- /cmd/query-tee/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/cmd/query-tee/main.go -------------------------------------------------------------------------------- /cmd/query-tee/main_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/cmd/query-tee/main_test.go -------------------------------------------------------------------------------- /development/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/development/README.md -------------------------------------------------------------------------------- /development/mimir-ingest-storage/.data-ingester-zone-a-1/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /development/mimir-ingest-storage/.data-ingester-zone-b-1/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /development/mimir-ingest-storage/.data-minio/mimir-alertmanager/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /development/mimir-ingest-storage/.data-minio/mimir-blocks/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /development/mimir-ingest-storage/.data-minio/mimir-ruler/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /development/mimir-ingest-storage/.gitignore: -------------------------------------------------------------------------------- 1 | mimir 2 | -------------------------------------------------------------------------------- /development/mimir-ingest-storage/activity/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /development/mimir-microservices-mode/.data-ingester-1/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /development/mimir-microservices-mode/.data-ingester-2/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /development/mimir-microservices-mode/.data-ingester-3/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /development/mimir-microservices-mode/.data-minio/mimir-alertmanager/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /development/mimir-microservices-mode/.data-minio/mimir-ruler/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /development/mimir-microservices-mode/.data-minio/mimir-tsdb/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /development/mimir-microservices-mode/.gitignore: -------------------------------------------------------------------------------- 1 | mimir -------------------------------------------------------------------------------- /development/mimir-microservices-mode/activity/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /development/mimir-monolithic-mode-with-swift-storage/.data-mimir-1/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /development/mimir-monolithic-mode-with-swift-storage/.data-mimir-2/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /development/mimir-monolithic-mode-with-swift-storage/.gitignore: -------------------------------------------------------------------------------- 1 | mimir 2 | .data-swift -------------------------------------------------------------------------------- /development/mimir-monolithic-mode/.data-mimir-1/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /development/mimir-monolithic-mode/.data-mimir-2/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /development/mimir-monolithic-mode/.data-minio/mimir-rules/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /development/mimir-monolithic-mode/.data-minio/mimir-tsdb/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /development/mimir-monolithic-mode/.gitignore: -------------------------------------------------------------------------------- 1 | mimir -------------------------------------------------------------------------------- /docs/CLAUDE.md: -------------------------------------------------------------------------------- 1 | internal/contributing/how-to-write-documentation.md -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/docs/README.md -------------------------------------------------------------------------------- /docs/configurations/demo.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/docs/configurations/demo.yaml -------------------------------------------------------------------------------- /docs/configurations/grafanacon-2022/alerts.yaml: -------------------------------------------------------------------------------- 1 | ../../../operations/mimir-mixin-compiled/alerts.yaml -------------------------------------------------------------------------------- /docs/configurations/grafanacon-2022/rules.yaml: -------------------------------------------------------------------------------- 1 | ../../../operations/mimir-mixin-compiled/rules.yaml -------------------------------------------------------------------------------- /docs/docs.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/docs/docs.mk -------------------------------------------------------------------------------- /docs/internal/tools/mark-blocks.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/docs/internal/tools/mark-blocks.md -------------------------------------------------------------------------------- /docs/internal/tools/trafficdump.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/docs/internal/tools/trafficdump.md -------------------------------------------------------------------------------- /docs/internal/tools/tsdb-tools.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/docs/internal/tools/tsdb-tools.md -------------------------------------------------------------------------------- /docs/internal/tools/ulidtime.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/docs/internal/tools/ulidtime.md -------------------------------------------------------------------------------- /docs/internal/usage-tracker.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/docs/internal/usage-tracker.md -------------------------------------------------------------------------------- /docs/make-docs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/docs/make-docs -------------------------------------------------------------------------------- /docs/proposals/query-blocking.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/docs/proposals/query-blocking.md -------------------------------------------------------------------------------- /docs/sources/mimir/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/docs/sources/mimir/_index.md -------------------------------------------------------------------------------- /docs/sources/mimir/configure/.gitignore: -------------------------------------------------------------------------------- 1 | AGENTS.md 2 | -------------------------------------------------------------------------------- /docs/sources/mimir/mimir-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/docs/sources/mimir/mimir-logo.png -------------------------------------------------------------------------------- /docs/sources/mimir/query/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/docs/sources/mimir/query/_index.md -------------------------------------------------------------------------------- /docs/sources/mimir/send/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/docs/sources/mimir/send/_index.md -------------------------------------------------------------------------------- /docs/test.org: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/variables.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/docs/variables.mk -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/go.sum -------------------------------------------------------------------------------- /images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/images/logo.png -------------------------------------------------------------------------------- /integration/.gitignore: -------------------------------------------------------------------------------- 1 | certs -------------------------------------------------------------------------------- /integration/CLAUDE.md: -------------------------------------------------------------------------------- 1 | ../docs/internal/contributing/how-integration-tests-work.md -------------------------------------------------------------------------------- /integration/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/integration/README.md -------------------------------------------------------------------------------- /integration/alertmanager_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/integration/alertmanager_test.go -------------------------------------------------------------------------------- /integration/api_endpoints_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/integration/api_endpoints_test.go -------------------------------------------------------------------------------- /integration/asserts.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/integration/asserts.go -------------------------------------------------------------------------------- /integration/asserts_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/integration/asserts_test.go -------------------------------------------------------------------------------- /integration/backfill_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/integration/backfill_test.go -------------------------------------------------------------------------------- /integration/ca/ca.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/integration/ca/ca.go -------------------------------------------------------------------------------- /integration/certs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/integration/certs.go -------------------------------------------------------------------------------- /integration/compactor_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/integration/compactor_test.go -------------------------------------------------------------------------------- /integration/configs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/integration/configs.go -------------------------------------------------------------------------------- /integration/distributor_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/integration/distributor_test.go -------------------------------------------------------------------------------- /integration/e2emimir/client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/integration/e2emimir/client.go -------------------------------------------------------------------------------- /integration/e2emimir/service.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/integration/e2emimir/service.go -------------------------------------------------------------------------------- /integration/e2emimir/services.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/integration/e2emimir/services.go -------------------------------------------------------------------------------- /integration/e2emimir/storage.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/integration/e2emimir/storage.go -------------------------------------------------------------------------------- /integration/images.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/integration/images.go -------------------------------------------------------------------------------- /integration/ingester_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/integration/ingester_test.go -------------------------------------------------------------------------------- /integration/kv_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/integration/kv_test.go -------------------------------------------------------------------------------- /integration/ooo_ingestion_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/integration/ooo_ingestion_test.go -------------------------------------------------------------------------------- /integration/otlp_ingestion_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/integration/otlp_ingestion_test.go -------------------------------------------------------------------------------- /integration/package.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/integration/package.go -------------------------------------------------------------------------------- /integration/querier_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/integration/querier_test.go -------------------------------------------------------------------------------- /integration/query_frontend_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/integration/query_frontend_test.go -------------------------------------------------------------------------------- /integration/ruler_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/integration/ruler_test.go -------------------------------------------------------------------------------- /integration/single_binary_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/integration/single_binary_test.go -------------------------------------------------------------------------------- /integration/util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/integration/util.go -------------------------------------------------------------------------------- /integration/vault_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/integration/vault_test.go -------------------------------------------------------------------------------- /integration/zone_aware_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/integration/zone_aware_test.go -------------------------------------------------------------------------------- /mimir-build-image/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/mimir-build-image/Dockerfile -------------------------------------------------------------------------------- /mimir-build-image/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/mimir-build-image/build.sh -------------------------------------------------------------------------------- /operations/.gitattributes: -------------------------------------------------------------------------------- 1 | /mimir-mixin-compiled*/**/*.json linguist-generated=true 2 | -------------------------------------------------------------------------------- /operations/.gitignore: -------------------------------------------------------------------------------- 1 | /mimir-mixin*.zip 2 | /compare-helm-with-jsonnet/scratch/ 3 | -------------------------------------------------------------------------------- /operations/LICENSE_APACHE2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/operations/LICENSE_APACHE2 -------------------------------------------------------------------------------- /operations/helm/.gitignore: -------------------------------------------------------------------------------- 1 | manifests-intermediate/ 2 | -------------------------------------------------------------------------------- /operations/helm/CLAUDE.md: -------------------------------------------------------------------------------- 1 | ../../docs/internal/contributing/contributing-to-helm-chart.md -------------------------------------------------------------------------------- /operations/helm/charts/mimir-distributed/.gitignore: -------------------------------------------------------------------------------- 1 | # Ignore dependencies downloaded by helm 2 | charts/ 3 | -------------------------------------------------------------------------------- /operations/helm/charts/mimir-distributed/ci/offline/classic-architecture-values.yaml: -------------------------------------------------------------------------------- 1 | ../../classic-architecture.yaml -------------------------------------------------------------------------------- /operations/helm/charts/mimir-distributed/ci/offline/large-values.yaml: -------------------------------------------------------------------------------- 1 | ../../large.yaml -------------------------------------------------------------------------------- /operations/helm/charts/mimir-distributed/ci/offline/small-values.yaml: -------------------------------------------------------------------------------- 1 | ../../small.yaml -------------------------------------------------------------------------------- /operations/helm/charts/mimir-distributed/mixins/alerts.yaml: -------------------------------------------------------------------------------- 1 | ../../../../mimir-mixin-compiled/alerts.yaml -------------------------------------------------------------------------------- /operations/helm/charts/mimir-distributed/mixins/dashboards: -------------------------------------------------------------------------------- 1 | ../../../../mimir-mixin-compiled/dashboards -------------------------------------------------------------------------------- /operations/helm/charts/mimir-distributed/mixins/rules.yaml: -------------------------------------------------------------------------------- 1 | ../../../../mimir-mixin-compiled/rules.yaml -------------------------------------------------------------------------------- /operations/helm/charts/mimir-distributed/templates/_config-render.tpl: -------------------------------------------------------------------------------- 1 | {{- tpl .Values.mimir.config . -}} -------------------------------------------------------------------------------- /operations/helm/cr.yaml: -------------------------------------------------------------------------------- 1 | git-repo: helm-charts 2 | owner: grafana 3 | skip-existing: true 4 | -------------------------------------------------------------------------------- /operations/helm/ct.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/operations/helm/ct.yaml -------------------------------------------------------------------------------- /operations/helm/scripts/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/operations/helm/scripts/build.sh -------------------------------------------------------------------------------- /operations/k6/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/operations/k6/README.md -------------------------------------------------------------------------------- /operations/mimir-mixin-tests/.gitignore: -------------------------------------------------------------------------------- 1 | # Any test output directory. 2 | test-*/ 3 | -------------------------------------------------------------------------------- /operations/mimir-mixin-tools/screenshots/.gitignore: -------------------------------------------------------------------------------- 1 | .config 2 | -------------------------------------------------------------------------------- /operations/mimir-mixin-tools/serve/.gitignore: -------------------------------------------------------------------------------- 1 | .config 2 | -------------------------------------------------------------------------------- /operations/mimir-mixin/.gitignore: -------------------------------------------------------------------------------- 1 | /vendor/ 2 | mixin-test.libsonnet 3 | -------------------------------------------------------------------------------- /operations/mimir-mixin/.lint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/operations/mimir-mixin/.lint -------------------------------------------------------------------------------- /operations/mimir-tests/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/operations/mimir-tests/build.sh -------------------------------------------------------------------------------- /operations/mimir/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/operations/mimir/README.md -------------------------------------------------------------------------------- /operations/mimir/common.libsonnet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/operations/mimir/common.libsonnet -------------------------------------------------------------------------------- /operations/mimir/config.libsonnet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/operations/mimir/config.libsonnet -------------------------------------------------------------------------------- /operations/mimir/consul.libsonnet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/operations/mimir/consul.libsonnet -------------------------------------------------------------------------------- /operations/mimir/images.libsonnet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/operations/mimir/images.libsonnet -------------------------------------------------------------------------------- /operations/mimir/jsonnetfile.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/operations/mimir/jsonnetfile.json -------------------------------------------------------------------------------- /operations/mimir/mimir.libsonnet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/operations/mimir/mimir.libsonnet -------------------------------------------------------------------------------- /operations/mimir/querier.libsonnet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/operations/mimir/querier.libsonnet -------------------------------------------------------------------------------- /operations/mimir/ruler.libsonnet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/operations/mimir/ruler.libsonnet -------------------------------------------------------------------------------- /operations/mimir/tracing.libsonnet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/operations/mimir/tracing.libsonnet -------------------------------------------------------------------------------- /operations/policies/common.rego: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/operations/policies/common.rego -------------------------------------------------------------------------------- /operations/policies/helm.yaml: -------------------------------------------------------------------------------- 1 | disable_restricted_security_context_checks: false 2 | -------------------------------------------------------------------------------- /operations/policies/jsonnet.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/operations/policies/jsonnet.yaml -------------------------------------------------------------------------------- /operations/policies/policies.rego: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/operations/policies/policies.rego -------------------------------------------------------------------------------- /packaging/nfpm/mimir/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/packaging/nfpm/mimir/config.yml -------------------------------------------------------------------------------- /packaging/nfpm/mimir/mimir.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/packaging/nfpm/mimir/mimir.env -------------------------------------------------------------------------------- /packaging/nfpm/mimir/mimir.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/packaging/nfpm/mimir/mimir.service -------------------------------------------------------------------------------- /packaging/nfpm/mimir/preremove.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/packaging/nfpm/mimir/preremove.sh -------------------------------------------------------------------------------- /packaging/nfpm/nfpm.jsonnet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/packaging/nfpm/nfpm.jsonnet -------------------------------------------------------------------------------- /packaging/nfpm/nfpm.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/packaging/nfpm/nfpm.sh -------------------------------------------------------------------------------- /pkg/CLAUDE.md: -------------------------------------------------------------------------------- 1 | ../docs/internal/contributing/design-patterns-and-conventions.md -------------------------------------------------------------------------------- /pkg/alertmanager/alertmanager.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/pkg/alertmanager/alertmanager.go -------------------------------------------------------------------------------- /pkg/alertmanager/api.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/pkg/alertmanager/api.go -------------------------------------------------------------------------------- /pkg/alertmanager/api_grafana.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/pkg/alertmanager/api_grafana.go -------------------------------------------------------------------------------- /pkg/alertmanager/api_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/pkg/alertmanager/api_test.go -------------------------------------------------------------------------------- /pkg/alertmanager/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/pkg/alertmanager/config.go -------------------------------------------------------------------------------- /pkg/alertmanager/config_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/pkg/alertmanager/config_test.go -------------------------------------------------------------------------------- /pkg/alertmanager/distributor.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/pkg/alertmanager/distributor.go -------------------------------------------------------------------------------- /pkg/alertmanager/merger/merger.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/pkg/alertmanager/merger/merger.go -------------------------------------------------------------------------------- /pkg/alertmanager/multitenant.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/pkg/alertmanager/multitenant.go -------------------------------------------------------------------------------- /pkg/alertmanager/sender_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/pkg/alertmanager/sender_test.go -------------------------------------------------------------------------------- /pkg/alertmanager/status.gohtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/pkg/alertmanager/status.gohtml -------------------------------------------------------------------------------- /pkg/api/api.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/pkg/api/api.go -------------------------------------------------------------------------------- /pkg/api/api_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/pkg/api/api_test.go -------------------------------------------------------------------------------- /pkg/api/error/error.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/pkg/api/error/error.go -------------------------------------------------------------------------------- /pkg/api/error/error_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/pkg/api/error/error_test.go -------------------------------------------------------------------------------- /pkg/api/handlers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/pkg/api/handlers.go -------------------------------------------------------------------------------- /pkg/api/handlers_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/pkg/api/handlers_test.go -------------------------------------------------------------------------------- /pkg/api/index.gohtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/pkg/api/index.gohtml -------------------------------------------------------------------------------- /pkg/api/memberlist_status.gohtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/pkg/api/memberlist_status.gohtml -------------------------------------------------------------------------------- /pkg/api/protobuf_codec.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/pkg/api/protobuf_codec.go -------------------------------------------------------------------------------- /pkg/api/protobuf_codec_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/pkg/api/protobuf_codec_test.go -------------------------------------------------------------------------------- /pkg/api/static/mimir-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/pkg/api/static/mimir-icon.png -------------------------------------------------------------------------------- /pkg/api/static/mimir-styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/pkg/api/static/mimir-styles.css -------------------------------------------------------------------------------- /pkg/api/tenant.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/pkg/api/tenant.go -------------------------------------------------------------------------------- /pkg/api/tenant_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/pkg/api/tenant_test.go -------------------------------------------------------------------------------- /pkg/blockbuilder/blockbuilder.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/pkg/blockbuilder/blockbuilder.go -------------------------------------------------------------------------------- /pkg/blockbuilder/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/pkg/blockbuilder/config.go -------------------------------------------------------------------------------- /pkg/blockbuilder/config_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/pkg/blockbuilder/config_test.go -------------------------------------------------------------------------------- /pkg/blockbuilder/metrics.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/pkg/blockbuilder/metrics.go -------------------------------------------------------------------------------- /pkg/blockbuilder/scheduler/jobs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/pkg/blockbuilder/scheduler/jobs.go -------------------------------------------------------------------------------- /pkg/blockbuilder/tsdb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/pkg/blockbuilder/tsdb.go -------------------------------------------------------------------------------- /pkg/blockbuilder/tsdb_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/pkg/blockbuilder/tsdb_test.go -------------------------------------------------------------------------------- /pkg/cardinality/request.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/pkg/cardinality/request.go -------------------------------------------------------------------------------- /pkg/cardinality/request_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/pkg/cardinality/request_test.go -------------------------------------------------------------------------------- /pkg/compactor/block_upload.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/pkg/compactor/block_upload.go -------------------------------------------------------------------------------- /pkg/compactor/block_upload_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/pkg/compactor/block_upload_test.go -------------------------------------------------------------------------------- /pkg/compactor/blocks_cleaner.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/pkg/compactor/blocks_cleaner.go -------------------------------------------------------------------------------- /pkg/compactor/bucket_compactor.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/pkg/compactor/bucket_compactor.go -------------------------------------------------------------------------------- /pkg/compactor/compactor.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/pkg/compactor/compactor.go -------------------------------------------------------------------------------- /pkg/compactor/compactor_http.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/pkg/compactor/compactor_http.go -------------------------------------------------------------------------------- /pkg/compactor/compactor_ring.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/pkg/compactor/compactor_ring.go -------------------------------------------------------------------------------- /pkg/compactor/compactor_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/pkg/compactor/compactor_test.go -------------------------------------------------------------------------------- /pkg/compactor/job.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/pkg/compactor/job.go -------------------------------------------------------------------------------- /pkg/compactor/job_sorting.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/pkg/compactor/job_sorting.go -------------------------------------------------------------------------------- /pkg/compactor/job_sorting_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/pkg/compactor/job_sorting_test.go -------------------------------------------------------------------------------- /pkg/compactor/job_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/pkg/compactor/job_test.go -------------------------------------------------------------------------------- /pkg/compactor/planned_jobs.gohtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/pkg/compactor/planned_jobs.gohtml -------------------------------------------------------------------------------- /pkg/compactor/planned_jobs_http.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/pkg/compactor/planned_jobs_http.go -------------------------------------------------------------------------------- /pkg/compactor/split_merge_job.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/pkg/compactor/split_merge_job.go -------------------------------------------------------------------------------- /pkg/compactor/status.gohtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/pkg/compactor/status.gohtml -------------------------------------------------------------------------------- /pkg/compactor/syncer_metrics.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/pkg/compactor/syncer_metrics.go -------------------------------------------------------------------------------- /pkg/continuoustest/client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/pkg/continuoustest/client.go -------------------------------------------------------------------------------- /pkg/continuoustest/client_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/pkg/continuoustest/client_test.go -------------------------------------------------------------------------------- /pkg/continuoustest/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/pkg/continuoustest/config.go -------------------------------------------------------------------------------- /pkg/continuoustest/manager.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/pkg/continuoustest/manager.go -------------------------------------------------------------------------------- /pkg/continuoustest/manager_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/pkg/continuoustest/manager_test.go -------------------------------------------------------------------------------- /pkg/continuoustest/metrics.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/pkg/continuoustest/metrics.go -------------------------------------------------------------------------------- /pkg/continuoustest/otlp_writer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/pkg/continuoustest/otlp_writer.go -------------------------------------------------------------------------------- /pkg/continuoustest/util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/pkg/continuoustest/util.go -------------------------------------------------------------------------------- /pkg/continuoustest/util_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/pkg/continuoustest/util_test.go -------------------------------------------------------------------------------- /pkg/costattribution/manager.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/pkg/costattribution/manager.go -------------------------------------------------------------------------------- /pkg/costattribution/metrics.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/pkg/costattribution/metrics.go -------------------------------------------------------------------------------- /pkg/distributor/distributor.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/pkg/distributor/distributor.go -------------------------------------------------------------------------------- /pkg/distributor/errors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/pkg/distributor/errors.go -------------------------------------------------------------------------------- /pkg/distributor/errors_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/pkg/distributor/errors_test.go -------------------------------------------------------------------------------- /pkg/distributor/ha_tracker.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/pkg/distributor/ha_tracker.go -------------------------------------------------------------------------------- /pkg/distributor/ha_tracker.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/pkg/distributor/ha_tracker.pb.go -------------------------------------------------------------------------------- /pkg/distributor/ha_tracker.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/pkg/distributor/ha_tracker.proto -------------------------------------------------------------------------------- /pkg/distributor/ha_tracker_http.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/pkg/distributor/ha_tracker_http.go -------------------------------------------------------------------------------- /pkg/distributor/ha_tracker_nop.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/pkg/distributor/ha_tracker_nop.go -------------------------------------------------------------------------------- /pkg/distributor/ha_tracker_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/pkg/distributor/ha_tracker_test.go -------------------------------------------------------------------------------- /pkg/distributor/http_admin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/pkg/distributor/http_admin.go -------------------------------------------------------------------------------- /pkg/distributor/http_server.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/pkg/distributor/http_server.go -------------------------------------------------------------------------------- /pkg/distributor/influx.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/pkg/distributor/influx.go -------------------------------------------------------------------------------- /pkg/distributor/influx_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/pkg/distributor/influx_test.go -------------------------------------------------------------------------------- /pkg/distributor/instance_count.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/pkg/distributor/instance_count.go -------------------------------------------------------------------------------- /pkg/distributor/instance_limits.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/pkg/distributor/instance_limits.go -------------------------------------------------------------------------------- /pkg/distributor/otel.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/pkg/distributor/otel.go -------------------------------------------------------------------------------- /pkg/distributor/otel_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/pkg/distributor/otel_test.go -------------------------------------------------------------------------------- /pkg/distributor/push.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/pkg/distributor/push.go -------------------------------------------------------------------------------- /pkg/distributor/push_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/pkg/distributor/push_test.go -------------------------------------------------------------------------------- /pkg/distributor/query.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/pkg/distributor/query.go -------------------------------------------------------------------------------- /pkg/distributor/query_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/pkg/distributor/query_test.go -------------------------------------------------------------------------------- /pkg/distributor/rate_strategy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/pkg/distributor/rate_strategy.go -------------------------------------------------------------------------------- /pkg/distributor/reactivelimiter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/pkg/distributor/reactivelimiter.go -------------------------------------------------------------------------------- /pkg/distributor/request.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/pkg/distributor/request.go -------------------------------------------------------------------------------- /pkg/distributor/request_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/pkg/distributor/request_test.go -------------------------------------------------------------------------------- /pkg/distributor/validate.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/pkg/distributor/validate.go -------------------------------------------------------------------------------- /pkg/distributor/validate_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/pkg/distributor/validate_test.go -------------------------------------------------------------------------------- /pkg/flusher/flusher.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/pkg/flusher/flusher.go -------------------------------------------------------------------------------- /pkg/frontend/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/pkg/frontend/config.go -------------------------------------------------------------------------------- /pkg/frontend/config_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/pkg/frontend/config_test.go -------------------------------------------------------------------------------- /pkg/frontend/transport/handler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/pkg/frontend/transport/handler.go -------------------------------------------------------------------------------- /pkg/frontend/v2/frontend.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/pkg/frontend/v2/frontend.go -------------------------------------------------------------------------------- /pkg/frontend/v2/frontend_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/pkg/frontend/v2/frontend_test.go -------------------------------------------------------------------------------- /pkg/frontend/v2/remoteexec.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/pkg/frontend/v2/remoteexec.go -------------------------------------------------------------------------------- /pkg/frontend/v2/remoteexec_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/pkg/frontend/v2/remoteexec_test.go -------------------------------------------------------------------------------- /pkg/ingester/active_series.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/pkg/ingester/active_series.go -------------------------------------------------------------------------------- /pkg/ingester/active_series_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/pkg/ingester/active_series_test.go -------------------------------------------------------------------------------- /pkg/ingester/api.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/pkg/ingester/api.go -------------------------------------------------------------------------------- /pkg/ingester/circuitbreaker.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/pkg/ingester/circuitbreaker.go -------------------------------------------------------------------------------- /pkg/ingester/client/chunkcompat.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/pkg/ingester/client/chunkcompat.go -------------------------------------------------------------------------------- /pkg/ingester/client/client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/pkg/ingester/client/client.go -------------------------------------------------------------------------------- /pkg/ingester/client/client_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/pkg/ingester/client/client_test.go -------------------------------------------------------------------------------- /pkg/ingester/client/compat.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/pkg/ingester/client/compat.go -------------------------------------------------------------------------------- /pkg/ingester/client/compat_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/pkg/ingester/client/compat_test.go -------------------------------------------------------------------------------- /pkg/ingester/client/custom.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/pkg/ingester/client/custom.go -------------------------------------------------------------------------------- /pkg/ingester/client/dep.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/pkg/ingester/client/dep.go -------------------------------------------------------------------------------- /pkg/ingester/client/ingester.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/pkg/ingester/client/ingester.pb.go -------------------------------------------------------------------------------- /pkg/ingester/client/ingester.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/pkg/ingester/client/ingester.proto -------------------------------------------------------------------------------- /pkg/ingester/client/metrics.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/pkg/ingester/client/metrics.go -------------------------------------------------------------------------------- /pkg/ingester/client/mimir_util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/pkg/ingester/client/mimir_util.go -------------------------------------------------------------------------------- /pkg/ingester/client/streaming.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/pkg/ingester/client/streaming.go -------------------------------------------------------------------------------- /pkg/ingester/downscale.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/pkg/ingester/downscale.go -------------------------------------------------------------------------------- /pkg/ingester/downscale_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/pkg/ingester/downscale_test.go -------------------------------------------------------------------------------- /pkg/ingester/errors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/pkg/ingester/errors.go -------------------------------------------------------------------------------- /pkg/ingester/errors_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/pkg/ingester/errors_test.go -------------------------------------------------------------------------------- /pkg/ingester/ingester.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/pkg/ingester/ingester.go -------------------------------------------------------------------------------- /pkg/ingester/ingester_activity.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/pkg/ingester/ingester_activity.go -------------------------------------------------------------------------------- /pkg/ingester/ingester_profiling.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/pkg/ingester/ingester_profiling.go -------------------------------------------------------------------------------- /pkg/ingester/ingester_ring.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/pkg/ingester/ingester_ring.go -------------------------------------------------------------------------------- /pkg/ingester/ingester_ring_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/pkg/ingester/ingester_ring_test.go -------------------------------------------------------------------------------- /pkg/ingester/ingester_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/pkg/ingester/ingester_test.go -------------------------------------------------------------------------------- /pkg/ingester/instance_limits.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/pkg/ingester/instance_limits.go -------------------------------------------------------------------------------- /pkg/ingester/lifecycle_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/pkg/ingester/lifecycle_test.go -------------------------------------------------------------------------------- /pkg/ingester/limiter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/pkg/ingester/limiter.go -------------------------------------------------------------------------------- /pkg/ingester/limiter_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/pkg/ingester/limiter_test.go -------------------------------------------------------------------------------- /pkg/ingester/list_series_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/pkg/ingester/list_series_test.go -------------------------------------------------------------------------------- /pkg/ingester/lookupplan/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/pkg/ingester/lookupplan/config.go -------------------------------------------------------------------------------- /pkg/ingester/lookupplan/metrics.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/pkg/ingester/lookupplan/metrics.go -------------------------------------------------------------------------------- /pkg/ingester/lookupplan/plan.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/pkg/ingester/lookupplan/plan.go -------------------------------------------------------------------------------- /pkg/ingester/lookupplan/stats.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/pkg/ingester/lookupplan/stats.go -------------------------------------------------------------------------------- /pkg/ingester/metric_counter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/pkg/ingester/metric_counter.go -------------------------------------------------------------------------------- /pkg/ingester/metrics.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/pkg/ingester/metrics.go -------------------------------------------------------------------------------- /pkg/ingester/metrics_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/pkg/ingester/metrics_test.go -------------------------------------------------------------------------------- /pkg/ingester/mirror_querier.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/pkg/ingester/mirror_querier.go -------------------------------------------------------------------------------- /pkg/ingester/owned_series.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/pkg/ingester/owned_series.go -------------------------------------------------------------------------------- /pkg/ingester/planner_provider.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/pkg/ingester/planner_provider.go -------------------------------------------------------------------------------- /pkg/ingester/reactivelimiter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/pkg/ingester/reactivelimiter.go -------------------------------------------------------------------------------- /pkg/ingester/shipper.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/pkg/ingester/shipper.go -------------------------------------------------------------------------------- /pkg/ingester/shipper_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/pkg/ingester/shipper_test.go -------------------------------------------------------------------------------- /pkg/ingester/stats.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/pkg/ingester/stats.go -------------------------------------------------------------------------------- /pkg/ingester/tenant_tsdb.gohtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/pkg/ingester/tenant_tsdb.gohtml -------------------------------------------------------------------------------- /pkg/ingester/tenants.gohtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/pkg/ingester/tenants.gohtml -------------------------------------------------------------------------------- /pkg/ingester/tenants_http.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/pkg/ingester/tenants_http.go -------------------------------------------------------------------------------- /pkg/ingester/user_tsdb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/pkg/ingester/user_tsdb.go -------------------------------------------------------------------------------- /pkg/ingester/user_tsdb_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/pkg/ingester/user_tsdb_test.go -------------------------------------------------------------------------------- /pkg/mimir/grpc_call_check.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/pkg/mimir/grpc_call_check.go -------------------------------------------------------------------------------- /pkg/mimir/mimir.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/pkg/mimir/mimir.go -------------------------------------------------------------------------------- /pkg/mimir/mimir_config_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/pkg/mimir/mimir_config_test.go -------------------------------------------------------------------------------- /pkg/mimir/mimir_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/pkg/mimir/mimir_test.go -------------------------------------------------------------------------------- /pkg/mimir/modules.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/pkg/mimir/modules.go -------------------------------------------------------------------------------- /pkg/mimir/modules_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/pkg/mimir/modules_test.go -------------------------------------------------------------------------------- /pkg/mimir/promexts.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/pkg/mimir/promexts.go -------------------------------------------------------------------------------- /pkg/mimir/runtime_config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/pkg/mimir/runtime_config.go -------------------------------------------------------------------------------- /pkg/mimir/runtime_config_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/pkg/mimir/runtime_config_test.go -------------------------------------------------------------------------------- /pkg/mimir/sanity_check.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/pkg/mimir/sanity_check.go -------------------------------------------------------------------------------- /pkg/mimir/sanity_check_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/pkg/mimir/sanity_check_test.go -------------------------------------------------------------------------------- /pkg/mimir/server_service.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/pkg/mimir/server_service.go -------------------------------------------------------------------------------- /pkg/mimir/server_service_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/pkg/mimir/server_service_test.go -------------------------------------------------------------------------------- /pkg/mimir/status.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/pkg/mimir/status.go -------------------------------------------------------------------------------- /pkg/mimir/status.gohtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/pkg/mimir/status.gohtml -------------------------------------------------------------------------------- /pkg/mimirpb/compat.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/pkg/mimirpb/compat.go -------------------------------------------------------------------------------- /pkg/mimirpb/compat_rw2.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/pkg/mimirpb/compat_rw2.go -------------------------------------------------------------------------------- /pkg/mimirpb/compat_rw2_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/pkg/mimirpb/compat_rw2_test.go -------------------------------------------------------------------------------- /pkg/mimirpb/compat_slice.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/pkg/mimirpb/compat_slice.go -------------------------------------------------------------------------------- /pkg/mimirpb/compat_slice_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/pkg/mimirpb/compat_slice_test.go -------------------------------------------------------------------------------- /pkg/mimirpb/compat_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/pkg/mimirpb/compat_test.go -------------------------------------------------------------------------------- /pkg/mimirpb/custom.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/pkg/mimirpb/custom.go -------------------------------------------------------------------------------- /pkg/mimirpb/custom_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/pkg/mimirpb/custom_test.go -------------------------------------------------------------------------------- /pkg/mimirpb/errors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/pkg/mimirpb/errors.go -------------------------------------------------------------------------------- /pkg/mimirpb/errors_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/pkg/mimirpb/errors_test.go -------------------------------------------------------------------------------- /pkg/mimirpb/fnv.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/pkg/mimirpb/fnv.go -------------------------------------------------------------------------------- /pkg/mimirpb/mimir.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/pkg/mimirpb/mimir.pb.go -------------------------------------------------------------------------------- /pkg/mimirpb/mimir.pb.go.expdiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/pkg/mimirpb/mimir.pb.go.expdiff -------------------------------------------------------------------------------- /pkg/mimirpb/mimir.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/pkg/mimirpb/mimir.proto -------------------------------------------------------------------------------- /pkg/mimirpb/prealloc_rw2.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/pkg/mimirpb/prealloc_rw2.go -------------------------------------------------------------------------------- /pkg/mimirpb/prealloc_rw2_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/pkg/mimirpb/prealloc_rw2_test.go -------------------------------------------------------------------------------- /pkg/mimirpb/series_sharding.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/pkg/mimirpb/series_sharding.go -------------------------------------------------------------------------------- /pkg/mimirpb/split.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/pkg/mimirpb/split.go -------------------------------------------------------------------------------- /pkg/mimirpb/split_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/pkg/mimirpb/split_test.go -------------------------------------------------------------------------------- /pkg/mimirpb/symbols.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/pkg/mimirpb/symbols.go -------------------------------------------------------------------------------- /pkg/mimirpb/symbols_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/pkg/mimirpb/symbols_test.go -------------------------------------------------------------------------------- /pkg/mimirpb/timeseries.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/pkg/mimirpb/timeseries.go -------------------------------------------------------------------------------- /pkg/mimirpb/timeseries_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/pkg/mimirpb/timeseries_test.go -------------------------------------------------------------------------------- /pkg/mimirtool/analyze/grafana.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/pkg/mimirtool/analyze/grafana.go -------------------------------------------------------------------------------- /pkg/mimirtool/analyze/ruler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/pkg/mimirtool/analyze/ruler.go -------------------------------------------------------------------------------- /pkg/mimirtool/client/alerts.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/pkg/mimirtool/client/alerts.go -------------------------------------------------------------------------------- /pkg/mimirtool/client/backfill.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/pkg/mimirtool/client/backfill.go -------------------------------------------------------------------------------- /pkg/mimirtool/client/client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/pkg/mimirtool/client/client.go -------------------------------------------------------------------------------- /pkg/mimirtool/client/rules.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/pkg/mimirtool/client/rules.go -------------------------------------------------------------------------------- /pkg/mimirtool/commands/alerts.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/pkg/mimirtool/commands/alerts.go -------------------------------------------------------------------------------- /pkg/mimirtool/commands/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/pkg/mimirtool/commands/config.go -------------------------------------------------------------------------------- /pkg/mimirtool/commands/logger.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/pkg/mimirtool/commands/logger.go -------------------------------------------------------------------------------- /pkg/mimirtool/commands/promql.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/pkg/mimirtool/commands/promql.go -------------------------------------------------------------------------------- /pkg/mimirtool/commands/rules.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/pkg/mimirtool/commands/rules.go -------------------------------------------------------------------------------- /pkg/mimirtool/config/convert.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/pkg/mimirtool/config/convert.go -------------------------------------------------------------------------------- /pkg/mimirtool/config/cortex.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/pkg/mimirtool/config/cortex.go -------------------------------------------------------------------------------- /pkg/mimirtool/config/gem.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/pkg/mimirtool/config/gem.go -------------------------------------------------------------------------------- /pkg/mimirtool/config/inspect.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/pkg/mimirtool/config/inspect.go -------------------------------------------------------------------------------- /pkg/mimirtool/config/mapping.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/pkg/mimirtool/config/mapping.go -------------------------------------------------------------------------------- /pkg/mimirtool/config/testdata/empty.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkg/mimirtool/config/testdata/empty.yaml: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /pkg/mimirtool/config/testdata/flags-precedence-new.flags.txt: -------------------------------------------------------------------------------- 1 | -distributor.remote-timeout=15s -------------------------------------------------------------------------------- /pkg/mimirtool/config/testdata/flags-precedence-old.flags.txt: -------------------------------------------------------------------------------- 1 | -distributor.remote-timeout=15s -------------------------------------------------------------------------------- /pkg/mimirtool/config/testdata/noop-flags-new.flags.txt: -------------------------------------------------------------------------------- 1 | -distributor.remote-timeout=10s -------------------------------------------------------------------------------- /pkg/mimirtool/config/testdata/noop-flags-old.flags.txt: -------------------------------------------------------------------------------- 1 | -distributor.remote-timeout=10s -------------------------------------------------------------------------------- /pkg/mimirtool/config/testdata/noop-new.yaml: -------------------------------------------------------------------------------- 1 | distributor: 2 | remote_timeout: 10s 3 | -------------------------------------------------------------------------------- /pkg/mimirtool/config/testdata/noop-old.yaml: -------------------------------------------------------------------------------- 1 | distributor: 2 | remote_timeout: 10s 3 | -------------------------------------------------------------------------------- /pkg/mimirtool/config/testdata/not-in-yaml-new.flags.txt: -------------------------------------------------------------------------------- 1 | -mem-ballast-size-bytes=1073741824 -------------------------------------------------------------------------------- /pkg/mimirtool/config/testdata/not-in-yaml-old.flags.txt: -------------------------------------------------------------------------------- 1 | -mem-ballast-size-bytes=1073741824 -------------------------------------------------------------------------------- /pkg/mimirtool/config/testdata/query-frontend-results-cache-old.yaml: -------------------------------------------------------------------------------- 1 | query_range: 2 | cache_results: true 3 | -------------------------------------------------------------------------------- /pkg/mimirtool/config/testdata/unsupported-config.yaml: -------------------------------------------------------------------------------- 1 | storage: 2 | engine: blocks 3 | -------------------------------------------------------------------------------- /pkg/mimirtool/config/testdata/value-flags-new.flags.txt: -------------------------------------------------------------------------------- 1 | -ruler.external.url=https://localhost:443 -------------------------------------------------------------------------------- /pkg/mimirtool/config/testdata/value-flags-old.flags.txt: -------------------------------------------------------------------------------- 1 | -ruler.external.url=https://localhost:443 -------------------------------------------------------------------------------- /pkg/mimirtool/config/value.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/pkg/mimirtool/config/value.go -------------------------------------------------------------------------------- /pkg/mimirtool/minisdk/board.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/pkg/mimirtool/minisdk/board.go -------------------------------------------------------------------------------- /pkg/mimirtool/minisdk/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/pkg/mimirtool/minisdk/doc.go -------------------------------------------------------------------------------- /pkg/mimirtool/minisdk/panel.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/pkg/mimirtool/minisdk/panel.go -------------------------------------------------------------------------------- /pkg/mimirtool/minisdk/row.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/pkg/mimirtool/minisdk/row.go -------------------------------------------------------------------------------- /pkg/mimirtool/printer/printer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/pkg/mimirtool/printer/printer.go -------------------------------------------------------------------------------- /pkg/mimirtool/rules/compare.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/pkg/mimirtool/rules/compare.go -------------------------------------------------------------------------------- /pkg/mimirtool/rules/parser.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/pkg/mimirtool/rules/parser.go -------------------------------------------------------------------------------- /pkg/mimirtool/rules/rules.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/pkg/mimirtool/rules/rules.go -------------------------------------------------------------------------------- /pkg/mimirtool/version/version.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/pkg/mimirtool/version/version.go -------------------------------------------------------------------------------- /pkg/querier/api/DESIGN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/pkg/querier/api/DESIGN.md -------------------------------------------------------------------------------- /pkg/querier/api/api.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/pkg/querier/api/api.go -------------------------------------------------------------------------------- /pkg/querier/api/consistency.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/pkg/querier/api/consistency.go -------------------------------------------------------------------------------- /pkg/querier/batch/batch.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/pkg/querier/batch/batch.go -------------------------------------------------------------------------------- /pkg/querier/batch/batch_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/pkg/querier/batch/batch_test.go -------------------------------------------------------------------------------- /pkg/querier/batch/chunk.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/pkg/querier/batch/chunk.go -------------------------------------------------------------------------------- /pkg/querier/batch/chunk_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/pkg/querier/batch/chunk_test.go -------------------------------------------------------------------------------- /pkg/querier/batch/merge.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/pkg/querier/batch/merge.go -------------------------------------------------------------------------------- /pkg/querier/batch/merge_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/pkg/querier/batch/merge_test.go -------------------------------------------------------------------------------- /pkg/querier/batch/stream.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/pkg/querier/batch/stream.go -------------------------------------------------------------------------------- /pkg/querier/batch/stream_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/pkg/querier/batch/stream_test.go -------------------------------------------------------------------------------- /pkg/querier/block.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/pkg/querier/block.go -------------------------------------------------------------------------------- /pkg/querier/block_streaming.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/pkg/querier/block_streaming.go -------------------------------------------------------------------------------- /pkg/querier/block_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/pkg/querier/block_test.go -------------------------------------------------------------------------------- /pkg/querier/dispatcher.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/pkg/querier/dispatcher.go -------------------------------------------------------------------------------- /pkg/querier/dispatcher_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/pkg/querier/dispatcher_test.go -------------------------------------------------------------------------------- /pkg/querier/dummy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/pkg/querier/dummy.go -------------------------------------------------------------------------------- /pkg/querier/engine/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/pkg/querier/engine/config.go -------------------------------------------------------------------------------- /pkg/querier/errors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/pkg/querier/errors.go -------------------------------------------------------------------------------- /pkg/querier/errors_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/pkg/querier/errors_test.go -------------------------------------------------------------------------------- /pkg/querier/filter_queryables.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/pkg/querier/filter_queryables.go -------------------------------------------------------------------------------- /pkg/querier/metadata_handler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/pkg/querier/metadata_handler.go -------------------------------------------------------------------------------- /pkg/querier/partitioner.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/pkg/querier/partitioner.go -------------------------------------------------------------------------------- /pkg/querier/partitioner_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/pkg/querier/partitioner_test.go -------------------------------------------------------------------------------- /pkg/querier/querier.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/pkg/querier/querier.go -------------------------------------------------------------------------------- /pkg/querier/querier_ring.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/pkg/querier/querier_ring.go -------------------------------------------------------------------------------- /pkg/querier/querier_ring_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/pkg/querier/querier_ring_test.go -------------------------------------------------------------------------------- /pkg/querier/querier_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/pkg/querier/querier_test.go -------------------------------------------------------------------------------- /pkg/querier/remote_read.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/pkg/querier/remote_read.go -------------------------------------------------------------------------------- /pkg/querier/remote_read_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/pkg/querier/remote_read_test.go -------------------------------------------------------------------------------- /pkg/querier/stats/stats.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/pkg/querier/stats/stats.go -------------------------------------------------------------------------------- /pkg/querier/stats/stats.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/pkg/querier/stats/stats.pb.go -------------------------------------------------------------------------------- /pkg/querier/stats/stats.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/pkg/querier/stats/stats.proto -------------------------------------------------------------------------------- /pkg/querier/stats/stats_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/pkg/querier/stats/stats_test.go -------------------------------------------------------------------------------- /pkg/querier/stats_renderer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/pkg/querier/stats_renderer.go -------------------------------------------------------------------------------- /pkg/querier/worker/util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/pkg/querier/worker/util.go -------------------------------------------------------------------------------- /pkg/querier/worker/util_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/pkg/querier/worker/util_test.go -------------------------------------------------------------------------------- /pkg/querier/worker/worker.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/pkg/querier/worker/worker.go -------------------------------------------------------------------------------- /pkg/ruler/api.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/pkg/ruler/api.go -------------------------------------------------------------------------------- /pkg/ruler/api_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/pkg/ruler/api_test.go -------------------------------------------------------------------------------- /pkg/ruler/client_pool.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/pkg/ruler/client_pool.go -------------------------------------------------------------------------------- /pkg/ruler/client_pool_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/pkg/ruler/client_pool_test.go -------------------------------------------------------------------------------- /pkg/ruler/compat.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/pkg/ruler/compat.go -------------------------------------------------------------------------------- /pkg/ruler/compat_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/pkg/ruler/compat_test.go -------------------------------------------------------------------------------- /pkg/ruler/grpc_roundtripper.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/pkg/ruler/grpc_roundtripper.go -------------------------------------------------------------------------------- /pkg/ruler/http_roundtripper.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/pkg/ruler/http_roundtripper.go -------------------------------------------------------------------------------- /pkg/ruler/lifecycle_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/pkg/ruler/lifecycle_test.go -------------------------------------------------------------------------------- /pkg/ruler/manager.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/pkg/ruler/manager.go -------------------------------------------------------------------------------- /pkg/ruler/manager_metrics.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/pkg/ruler/manager_metrics.go -------------------------------------------------------------------------------- /pkg/ruler/manager_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/pkg/ruler/manager_test.go -------------------------------------------------------------------------------- /pkg/ruler/mapper.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/pkg/ruler/mapper.go -------------------------------------------------------------------------------- /pkg/ruler/mapper_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/pkg/ruler/mapper_test.go -------------------------------------------------------------------------------- /pkg/ruler/notifier.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/pkg/ruler/notifier.go -------------------------------------------------------------------------------- /pkg/ruler/notifier_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/pkg/ruler/notifier_test.go -------------------------------------------------------------------------------- /pkg/ruler/pusher_mock_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/pkg/ruler/pusher_mock_test.go -------------------------------------------------------------------------------- /pkg/ruler/remotequerier.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/pkg/ruler/remotequerier.go -------------------------------------------------------------------------------- /pkg/ruler/remotequerier_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/pkg/ruler/remotequerier_test.go -------------------------------------------------------------------------------- /pkg/ruler/rule_concurrency.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/pkg/ruler/rule_concurrency.go -------------------------------------------------------------------------------- /pkg/ruler/rule_groups.gohtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/pkg/ruler/rule_groups.gohtml -------------------------------------------------------------------------------- /pkg/ruler/ruler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/pkg/ruler/ruler.go -------------------------------------------------------------------------------- /pkg/ruler/ruler.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/pkg/ruler/ruler.pb.go -------------------------------------------------------------------------------- /pkg/ruler/ruler.pb.go.expdiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/pkg/ruler/ruler.pb.go.expdiff -------------------------------------------------------------------------------- /pkg/ruler/ruler.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/pkg/ruler/ruler.proto -------------------------------------------------------------------------------- /pkg/ruler/ruler_ring.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/pkg/ruler/ruler_ring.go -------------------------------------------------------------------------------- /pkg/ruler/ruler_sync_queue.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/pkg/ruler/ruler_sync_queue.go -------------------------------------------------------------------------------- /pkg/ruler/ruler_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/pkg/ruler/ruler_test.go -------------------------------------------------------------------------------- /pkg/ruler/rulespb/compat.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/pkg/ruler/rulespb/compat.go -------------------------------------------------------------------------------- /pkg/ruler/rulespb/compat_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/pkg/ruler/rulespb/compat_test.go -------------------------------------------------------------------------------- /pkg/ruler/rulespb/custom.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/pkg/ruler/rulespb/custom.go -------------------------------------------------------------------------------- /pkg/ruler/rulespb/rules.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/pkg/ruler/rulespb/rules.pb.go -------------------------------------------------------------------------------- /pkg/ruler/rulespb/rules.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/pkg/ruler/rulespb/rules.proto -------------------------------------------------------------------------------- /pkg/ruler/rulestore/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/pkg/ruler/rulestore/config.go -------------------------------------------------------------------------------- /pkg/ruler/rulestore/store.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/pkg/ruler/rulestore/store.go -------------------------------------------------------------------------------- /pkg/ruler/service_discovery.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/pkg/ruler/service_discovery.go -------------------------------------------------------------------------------- /pkg/ruler/storage.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/pkg/ruler/storage.go -------------------------------------------------------------------------------- /pkg/ruler/store_mock_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/pkg/ruler/store_mock_test.go -------------------------------------------------------------------------------- /pkg/ruler/tenant_federation.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/pkg/ruler/tenant_federation.go -------------------------------------------------------------------------------- /pkg/ruler/tenants.gohtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/pkg/ruler/tenants.gohtml -------------------------------------------------------------------------------- /pkg/scheduler/DESIGN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/pkg/scheduler/DESIGN.md -------------------------------------------------------------------------------- /pkg/scheduler/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/pkg/scheduler/README.md -------------------------------------------------------------------------------- /pkg/scheduler/queue/queue.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/pkg/scheduler/queue/queue.go -------------------------------------------------------------------------------- /pkg/scheduler/scheduler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/pkg/scheduler/scheduler.go -------------------------------------------------------------------------------- /pkg/scheduler/scheduler_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/pkg/scheduler/scheduler_test.go -------------------------------------------------------------------------------- /pkg/storage/bucket/client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/pkg/storage/bucket/client.go -------------------------------------------------------------------------------- /pkg/storage/bucket/gcs/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/pkg/storage/bucket/gcs/config.go -------------------------------------------------------------------------------- /pkg/storage/bucket/s3/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/pkg/storage/bucket/s3/config.go -------------------------------------------------------------------------------- /pkg/storage/chunk/chunk.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/pkg/storage/chunk/chunk.go -------------------------------------------------------------------------------- /pkg/storage/chunk/chunk_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/pkg/storage/chunk/chunk_test.go -------------------------------------------------------------------------------- /pkg/storage/chunk/factory.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/pkg/storage/chunk/factory.go -------------------------------------------------------------------------------- /pkg/storage/indexheader/testdata/index_format_v1/chunks/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkg/storage/indexheader/testdata/index_format_v2/chunks/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkg/storage/ingest/DESIGN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/pkg/storage/ingest/DESIGN.md -------------------------------------------------------------------------------- /pkg/storage/ingest/INTERNALS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/pkg/storage/ingest/INTERNALS.md -------------------------------------------------------------------------------- /pkg/storage/ingest/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/pkg/storage/ingest/config.go -------------------------------------------------------------------------------- /pkg/storage/ingest/fetcher.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/pkg/storage/ingest/fetcher.go -------------------------------------------------------------------------------- /pkg/storage/ingest/logger.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/pkg/storage/ingest/logger.go -------------------------------------------------------------------------------- /pkg/storage/ingest/pusher.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/pkg/storage/ingest/pusher.go -------------------------------------------------------------------------------- /pkg/storage/ingest/reader.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/pkg/storage/ingest/reader.go -------------------------------------------------------------------------------- /pkg/storage/ingest/util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/pkg/storage/ingest/util.go -------------------------------------------------------------------------------- /pkg/storage/ingest/util_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/pkg/storage/ingest/util_test.go -------------------------------------------------------------------------------- /pkg/storage/ingest/version.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/pkg/storage/ingest/version.go -------------------------------------------------------------------------------- /pkg/storage/ingest/writer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/pkg/storage/ingest/writer.go -------------------------------------------------------------------------------- /pkg/storage/series/series_set.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/pkg/storage/series/series_set.go -------------------------------------------------------------------------------- /pkg/storage/sharding/label.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/pkg/storage/sharding/label.go -------------------------------------------------------------------------------- /pkg/storage/tsdb/block/block.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/pkg/storage/tsdb/block/block.go -------------------------------------------------------------------------------- /pkg/storage/tsdb/block/index.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/pkg/storage/tsdb/block/index.go -------------------------------------------------------------------------------- /pkg/storage/tsdb/block/meta.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/pkg/storage/tsdb/block/meta.go -------------------------------------------------------------------------------- /pkg/storage/tsdb/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/pkg/storage/tsdb/config.go -------------------------------------------------------------------------------- /pkg/storage/tsdb/config_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/pkg/storage/tsdb/config_test.go -------------------------------------------------------------------------------- /pkg/storage/tsdb/index_cache.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/pkg/storage/tsdb/index_cache.go -------------------------------------------------------------------------------- /pkg/storage/tsdb/util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/pkg/storage/tsdb/util.go -------------------------------------------------------------------------------- /pkg/storage/tsdb/util_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/pkg/storage/tsdb/util_test.go -------------------------------------------------------------------------------- /pkg/storegateway/blocks.gohtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/pkg/storegateway/blocks.gohtml -------------------------------------------------------------------------------- /pkg/storegateway/bucket.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/pkg/storegateway/bucket.go -------------------------------------------------------------------------------- /pkg/storegateway/bucket_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/pkg/storegateway/bucket_test.go -------------------------------------------------------------------------------- /pkg/storegateway/error.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/pkg/storegateway/error.go -------------------------------------------------------------------------------- /pkg/storegateway/gateway.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/pkg/storegateway/gateway.go -------------------------------------------------------------------------------- /pkg/storegateway/gateway_ring.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/pkg/storegateway/gateway_ring.go -------------------------------------------------------------------------------- /pkg/storegateway/gateway_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/pkg/storegateway/gateway_test.go -------------------------------------------------------------------------------- /pkg/storegateway/io.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/pkg/storegateway/io.go -------------------------------------------------------------------------------- /pkg/storegateway/limiter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/pkg/storegateway/limiter.go -------------------------------------------------------------------------------- /pkg/storegateway/limiter_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/pkg/storegateway/limiter_test.go -------------------------------------------------------------------------------- /pkg/storegateway/partitioner.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/pkg/storegateway/partitioner.go -------------------------------------------------------------------------------- /pkg/storegateway/series_refs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/pkg/storegateway/series_refs.go -------------------------------------------------------------------------------- /pkg/storegateway/stats.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/pkg/storegateway/stats.go -------------------------------------------------------------------------------- /pkg/storegateway/stats_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/pkg/storegateway/stats_test.go -------------------------------------------------------------------------------- /pkg/storegateway/tenants.gohtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/pkg/storegateway/tenants.gohtml -------------------------------------------------------------------------------- /pkg/streamingpromql/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/pkg/streamingpromql/README.md -------------------------------------------------------------------------------- /pkg/streamingpromql/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/pkg/streamingpromql/config.go -------------------------------------------------------------------------------- /pkg/streamingpromql/engine.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/pkg/streamingpromql/engine.go -------------------------------------------------------------------------------- /pkg/streamingpromql/evaluator.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/pkg/streamingpromql/evaluator.go -------------------------------------------------------------------------------- /pkg/streamingpromql/planning.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/pkg/streamingpromql/planning.go -------------------------------------------------------------------------------- /pkg/streamingpromql/query.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/pkg/streamingpromql/query.go -------------------------------------------------------------------------------- /pkg/streamingpromql/test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/pkg/streamingpromql/test.go -------------------------------------------------------------------------------- /pkg/usagestats/middleware.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/pkg/usagestats/middleware.go -------------------------------------------------------------------------------- /pkg/usagestats/report.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/pkg/usagestats/report.go -------------------------------------------------------------------------------- /pkg/usagestats/report_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/pkg/usagestats/report_test.go -------------------------------------------------------------------------------- /pkg/usagestats/reporter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/pkg/usagestats/reporter.go -------------------------------------------------------------------------------- /pkg/usagestats/reporter_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/pkg/usagestats/reporter_test.go -------------------------------------------------------------------------------- /pkg/usagestats/seed.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/pkg/usagestats/seed.go -------------------------------------------------------------------------------- /pkg/usagestats/seed_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/pkg/usagestats/seed_test.go -------------------------------------------------------------------------------- /pkg/usagestats/stats.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/pkg/usagestats/stats.go -------------------------------------------------------------------------------- /pkg/usagestats/stats_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/pkg/usagestats/stats_test.go -------------------------------------------------------------------------------- /pkg/usagetracker/tracker.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/pkg/usagetracker/tracker.go -------------------------------------------------------------------------------- /pkg/usagetracker/tracker_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/pkg/usagetracker/tracker_test.go -------------------------------------------------------------------------------- /pkg/util/active_groups.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/pkg/util/active_groups.go -------------------------------------------------------------------------------- /pkg/util/active_groups_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/pkg/util/active_groups_test.go -------------------------------------------------------------------------------- /pkg/util/active_user.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/pkg/util/active_user.go -------------------------------------------------------------------------------- /pkg/util/active_user_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/pkg/util/active_user_test.go -------------------------------------------------------------------------------- /pkg/util/allow_list.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/pkg/util/allow_list.go -------------------------------------------------------------------------------- /pkg/util/allow_list_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/pkg/util/allow_list_test.go -------------------------------------------------------------------------------- /pkg/util/atomicfs/fsync.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/pkg/util/atomicfs/fsync.go -------------------------------------------------------------------------------- /pkg/util/atomicfs/fsync_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/pkg/util/atomicfs/fsync_test.go -------------------------------------------------------------------------------- /pkg/util/bench/query_loader.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/pkg/util/bench/query_loader.go -------------------------------------------------------------------------------- /pkg/util/closer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/pkg/util/closer.go -------------------------------------------------------------------------------- /pkg/util/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/pkg/util/config.go -------------------------------------------------------------------------------- /pkg/util/configdoc/hidden.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/pkg/util/configdoc/hidden.go -------------------------------------------------------------------------------- /pkg/util/extprom/tx_gauge.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/pkg/util/extprom/tx_gauge.go -------------------------------------------------------------------------------- /pkg/util/extract/extract.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/pkg/util/extract/extract.go -------------------------------------------------------------------------------- /pkg/util/fs/dir.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/pkg/util/fs/dir.go -------------------------------------------------------------------------------- /pkg/util/globalerror/grpc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/pkg/util/globalerror/grpc.go -------------------------------------------------------------------------------- /pkg/util/globalerror/user.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/pkg/util/globalerror/user.go -------------------------------------------------------------------------------- /pkg/util/grpc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/pkg/util/grpc.go -------------------------------------------------------------------------------- /pkg/util/grpc_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/pkg/util/grpc_test.go -------------------------------------------------------------------------------- /pkg/util/grpcencoding/s2/s2.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/pkg/util/grpcencoding/s2/s2.go -------------------------------------------------------------------------------- /pkg/util/gziphandler/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/pkg/util/gziphandler/doc.go -------------------------------------------------------------------------------- /pkg/util/gziphandler/gzip.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/pkg/util/gziphandler/gzip.go -------------------------------------------------------------------------------- /pkg/util/http.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/pkg/util/http.go -------------------------------------------------------------------------------- /pkg/util/http_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/pkg/util/http_test.go -------------------------------------------------------------------------------- /pkg/util/httpgrpcutil/carrier.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/pkg/util/httpgrpcutil/carrier.go -------------------------------------------------------------------------------- /pkg/util/labels.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/pkg/util/labels.go -------------------------------------------------------------------------------- /pkg/util/labels_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/pkg/util/labels_test.go -------------------------------------------------------------------------------- /pkg/util/limiter/errors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/pkg/util/limiter/errors.go -------------------------------------------------------------------------------- /pkg/util/limiter/utilization.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/pkg/util/limiter/utilization.go -------------------------------------------------------------------------------- /pkg/util/log/experimental.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/pkg/util/log/experimental.go -------------------------------------------------------------------------------- /pkg/util/log/log.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/pkg/util/log/log.go -------------------------------------------------------------------------------- /pkg/util/log/log_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/pkg/util/log/log_test.go -------------------------------------------------------------------------------- /pkg/util/log/rate_limit.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/pkg/util/log/rate_limit.go -------------------------------------------------------------------------------- /pkg/util/log/rate_limit_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/pkg/util/log/rate_limit_test.go -------------------------------------------------------------------------------- /pkg/util/log/sampler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/pkg/util/log/sampler.go -------------------------------------------------------------------------------- /pkg/util/log/sampler_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/pkg/util/log/sampler_test.go -------------------------------------------------------------------------------- /pkg/util/log/slogadapter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/pkg/util/log/slogadapter.go -------------------------------------------------------------------------------- /pkg/util/log/slogadapter_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/pkg/util/log/slogadapter_test.go -------------------------------------------------------------------------------- /pkg/util/log/wrappers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/pkg/util/log/wrappers.go -------------------------------------------------------------------------------- /pkg/util/matchers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/pkg/util/matchers.go -------------------------------------------------------------------------------- /pkg/util/matchers_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/pkg/util/matchers_test.go -------------------------------------------------------------------------------- /pkg/util/math/digits.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/pkg/util/math/digits.go -------------------------------------------------------------------------------- /pkg/util/math/digits_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/pkg/util/math/digits_test.go -------------------------------------------------------------------------------- /pkg/util/math/rate.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/pkg/util/math/rate.go -------------------------------------------------------------------------------- /pkg/util/math/rate_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/pkg/util/math/rate_test.go -------------------------------------------------------------------------------- /pkg/util/merger.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/pkg/util/merger.go -------------------------------------------------------------------------------- /pkg/util/merger_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/pkg/util/merger_test.go -------------------------------------------------------------------------------- /pkg/util/metrics.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/pkg/util/metrics.go -------------------------------------------------------------------------------- /pkg/util/modelutil/merger.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/pkg/util/modelutil/merger.go -------------------------------------------------------------------------------- /pkg/util/net/firewall_dialer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/pkg/util/net/firewall_dialer.go -------------------------------------------------------------------------------- /pkg/util/noauth/no_auth.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/pkg/util/noauth/no_auth.go -------------------------------------------------------------------------------- /pkg/util/objtools/abs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/pkg/util/objtools/abs.go -------------------------------------------------------------------------------- /pkg/util/objtools/bucket.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/pkg/util/objtools/bucket.go -------------------------------------------------------------------------------- /pkg/util/objtools/gcs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/pkg/util/objtools/gcs.go -------------------------------------------------------------------------------- /pkg/util/objtools/s3.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/pkg/util/objtools/s3.go -------------------------------------------------------------------------------- /pkg/util/pool/bucketed_pool.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/pkg/util/pool/bucketed_pool.go -------------------------------------------------------------------------------- /pkg/util/pool/pool.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/pkg/util/pool/pool.go -------------------------------------------------------------------------------- /pkg/util/pool/pool_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/pkg/util/pool/pool_test.go -------------------------------------------------------------------------------- /pkg/util/pool/tracking.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/pkg/util/pool/tracking.go -------------------------------------------------------------------------------- /pkg/util/process/collector.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/pkg/util/process/collector.go -------------------------------------------------------------------------------- /pkg/util/promqlext/promqlext.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/pkg/util/promqlext/promqlext.go -------------------------------------------------------------------------------- /pkg/util/promtest/histogram.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/pkg/util/promtest/histogram.go -------------------------------------------------------------------------------- /pkg/util/requestbuffers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/pkg/util/requestbuffers.go -------------------------------------------------------------------------------- /pkg/util/requestbuffers_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/pkg/util/requestbuffers_test.go -------------------------------------------------------------------------------- /pkg/util/ring_config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/pkg/util/ring_config.go -------------------------------------------------------------------------------- /pkg/util/rw2util/rw2util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/pkg/util/rw2util/rw2util.go -------------------------------------------------------------------------------- /pkg/util/rw2util/rw2util_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/pkg/util/rw2util/rw2util_test.go -------------------------------------------------------------------------------- /pkg/util/shard.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/pkg/util/shard.go -------------------------------------------------------------------------------- /pkg/util/shard_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/pkg/util/shard_test.go -------------------------------------------------------------------------------- /pkg/util/slice_operations.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/pkg/util/slice_operations.go -------------------------------------------------------------------------------- /pkg/util/strings.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/pkg/util/strings.go -------------------------------------------------------------------------------- /pkg/util/test/capture.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/pkg/util/test/capture.go -------------------------------------------------------------------------------- /pkg/util/test/chunk_iterator.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/pkg/util/test/chunk_iterator.go -------------------------------------------------------------------------------- /pkg/util/test/collect.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/pkg/util/test/collect.go -------------------------------------------------------------------------------- /pkg/util/test/comparison.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/pkg/util/test/comparison.go -------------------------------------------------------------------------------- /pkg/util/test/copy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/pkg/util/test/copy.go -------------------------------------------------------------------------------- /pkg/util/test/histogram.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/pkg/util/test/histogram.go -------------------------------------------------------------------------------- /pkg/util/test/histogram_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/pkg/util/test/histogram_test.go -------------------------------------------------------------------------------- /pkg/util/test/leak.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/pkg/util/test/leak.go -------------------------------------------------------------------------------- /pkg/util/test/logger.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/pkg/util/test/logger.go -------------------------------------------------------------------------------- /pkg/util/test/metrics.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/pkg/util/test/metrics.go -------------------------------------------------------------------------------- /pkg/util/test/shape.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/pkg/util/test/shape.go -------------------------------------------------------------------------------- /pkg/util/test/tb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/pkg/util/test/tb.go -------------------------------------------------------------------------------- /pkg/util/test/tsdb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/pkg/util/test/tsdb.go -------------------------------------------------------------------------------- /pkg/util/test/unindent.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/pkg/util/test/unindent.go -------------------------------------------------------------------------------- /pkg/util/test/unindent_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/pkg/util/test/unindent_test.go -------------------------------------------------------------------------------- /pkg/util/testkafka/cluster.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/pkg/util/testkafka/cluster.go -------------------------------------------------------------------------------- /pkg/util/testkafka/message.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/pkg/util/testkafka/message.go -------------------------------------------------------------------------------- /pkg/util/time.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/pkg/util/time.go -------------------------------------------------------------------------------- /pkg/util/time_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/pkg/util/time_test.go -------------------------------------------------------------------------------- /pkg/util/usage/usage.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/pkg/util/usage/usage.go -------------------------------------------------------------------------------- /pkg/util/validation/limits.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/pkg/util/validation/limits.go -------------------------------------------------------------------------------- /pkg/util/version/info.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/pkg/util/version/info.go -------------------------------------------------------------------------------- /pkg/util/version/info_handler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/pkg/util/version/info_handler.go -------------------------------------------------------------------------------- /pkg/util/yaml.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/pkg/util/yaml.go -------------------------------------------------------------------------------- /pkg/vault/auth.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/pkg/vault/auth.go -------------------------------------------------------------------------------- /pkg/vault/auth_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/pkg/vault/auth_test.go -------------------------------------------------------------------------------- /pkg/vault/vault.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/pkg/vault/vault.go -------------------------------------------------------------------------------- /pkg/vault/vault_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/pkg/vault/vault_test.go -------------------------------------------------------------------------------- /renovate.json5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/renovate.json5 -------------------------------------------------------------------------------- /tools/README.md: -------------------------------------------------------------------------------- 1 | Scripts based on https://github.com/weaveworks/build-tools 2 | -------------------------------------------------------------------------------- /tools/add-license/.gitignore: -------------------------------------------------------------------------------- 1 | add-license -------------------------------------------------------------------------------- /tools/add-license/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/tools/add-license/main.go -------------------------------------------------------------------------------- /tools/apply-expected-diffs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/tools/apply-expected-diffs.sh -------------------------------------------------------------------------------- /tools/check-merge-conflicts.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/tools/check-merge-conflicts.sh -------------------------------------------------------------------------------- /tools/check-rules.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/tools/check-rules.sh -------------------------------------------------------------------------------- /tools/cleanup-white-noise.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/tools/cleanup-white-noise.sh -------------------------------------------------------------------------------- /tools/compaction-planner/.gitignore: -------------------------------------------------------------------------------- 1 | compaction-planner -------------------------------------------------------------------------------- /tools/compaction-planner/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/tools/compaction-planner/main.go -------------------------------------------------------------------------------- /tools/config-inspector/.gitignore: -------------------------------------------------------------------------------- 1 | config-inspector -------------------------------------------------------------------------------- /tools/config-inspector/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/tools/config-inspector/main.go -------------------------------------------------------------------------------- /tools/copyblocks/.gitignore: -------------------------------------------------------------------------------- 1 | copyblocks -------------------------------------------------------------------------------- /tools/copyblocks/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/tools/copyblocks/Dockerfile -------------------------------------------------------------------------------- /tools/copyblocks/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/tools/copyblocks/README.md -------------------------------------------------------------------------------- /tools/copyblocks/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/tools/copyblocks/main.go -------------------------------------------------------------------------------- /tools/copyprefix/.gitignore: -------------------------------------------------------------------------------- 1 | copyprefix -------------------------------------------------------------------------------- /tools/copyprefix/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/tools/copyprefix/README.md -------------------------------------------------------------------------------- /tools/copyprefix/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/tools/copyprefix/main.go -------------------------------------------------------------------------------- /tools/delete-objects/.gitignore: -------------------------------------------------------------------------------- 1 | delete-objects -------------------------------------------------------------------------------- /tools/delete-objects/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/tools/delete-objects/README.md -------------------------------------------------------------------------------- /tools/delete-objects/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/tools/delete-objects/main.go -------------------------------------------------------------------------------- /tools/diagram/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/tools/diagram/readme.md -------------------------------------------------------------------------------- /tools/doc-generator/.gitignore: -------------------------------------------------------------------------------- 1 | doc-generator -------------------------------------------------------------------------------- /tools/doc-generator/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/tools/doc-generator/main.go -------------------------------------------------------------------------------- /tools/find-diff-or-untracked.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/tools/find-diff-or-untracked.sh -------------------------------------------------------------------------------- /tools/flush-memcached.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/tools/flush-memcached.sh -------------------------------------------------------------------------------- /tools/format-promql-test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/tools/format-promql-test.sh -------------------------------------------------------------------------------- /tools/git-worktree-volumes.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/tools/git-worktree-volumes.sh -------------------------------------------------------------------------------- /tools/github-next-pr-number.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/tools/github-next-pr-number.sh -------------------------------------------------------------------------------- /tools/grpcurl-query-ingesters/.gitignore: -------------------------------------------------------------------------------- 1 | chunks-dump/ 2 | grpcurl-query-ingesters 3 | -------------------------------------------------------------------------------- /tools/grpcurl-query-store-gateways/.gitignore: -------------------------------------------------------------------------------- 1 | chunks-dump/ 2 | grpcurl-query-store-gateways 3 | -------------------------------------------------------------------------------- /tools/image-tag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/tools/image-tag -------------------------------------------------------------------------------- /tools/kafkatool/brokers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/tools/kafkatool/brokers.go -------------------------------------------------------------------------------- /tools/kafkatool/brokers_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/tools/kafkatool/brokers_test.go -------------------------------------------------------------------------------- /tools/kafkatool/dump.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/tools/kafkatool/dump.go -------------------------------------------------------------------------------- /tools/kafkatool/dump_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/tools/kafkatool/dump_test.go -------------------------------------------------------------------------------- /tools/kafkatool/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/tools/kafkatool/main.go -------------------------------------------------------------------------------- /tools/kafkatool/offsets.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/tools/kafkatool/offsets.go -------------------------------------------------------------------------------- /tools/kafkatool/offsets_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/tools/kafkatool/offsets_test.go -------------------------------------------------------------------------------- /tools/kafkatool/util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/tools/kafkatool/util.go -------------------------------------------------------------------------------- /tools/kafkatool/util_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/tools/kafkatool/util_test.go -------------------------------------------------------------------------------- /tools/lint-buffer-holder/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/tools/lint-buffer-holder/main.go -------------------------------------------------------------------------------- /tools/lint-runbooks.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/tools/lint-runbooks.sh -------------------------------------------------------------------------------- /tools/lint-sorted/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/tools/lint-sorted/main.go -------------------------------------------------------------------------------- /tools/list-deduplicated-blocks/.gitignore: -------------------------------------------------------------------------------- 1 | list-deduplicated-blocks -------------------------------------------------------------------------------- /tools/listblocks/.gitignore: -------------------------------------------------------------------------------- 1 | listblocks -------------------------------------------------------------------------------- /tools/listblocks/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/tools/listblocks/README.md -------------------------------------------------------------------------------- /tools/listblocks/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/tools/listblocks/main.go -------------------------------------------------------------------------------- /tools/mark-blocks/.gitignore: -------------------------------------------------------------------------------- 1 | mark-blocks 2 | -------------------------------------------------------------------------------- /tools/mark-blocks/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/tools/mark-blocks/README.md -------------------------------------------------------------------------------- /tools/mark-blocks/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/tools/mark-blocks/main.go -------------------------------------------------------------------------------- /tools/mark-blocks/main_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/tools/mark-blocks/main_test.go -------------------------------------------------------------------------------- /tools/markblocks/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/tools/markblocks/README.md -------------------------------------------------------------------------------- /tools/packaging/test-packages: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/tools/packaging/test-packages -------------------------------------------------------------------------------- /tools/pre-pull-images/.gitignore: -------------------------------------------------------------------------------- 1 | pre-pull-images -------------------------------------------------------------------------------- /tools/pre-pull-images/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/tools/pre-pull-images/main.go -------------------------------------------------------------------------------- /tools/promql-generator/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/tools/promql-generator/README.md -------------------------------------------------------------------------------- /tools/query-bucket-index/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/tools/query-bucket-index/main.go -------------------------------------------------------------------------------- /tools/query-step-alignment-analysis/.gitignore: -------------------------------------------------------------------------------- 1 | query-step-alignment-analysis -------------------------------------------------------------------------------- /tools/querytee/proxy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/tools/querytee/proxy.go -------------------------------------------------------------------------------- /tools/querytee/proxy_backend.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/tools/querytee/proxy_backend.go -------------------------------------------------------------------------------- /tools/querytee/proxy_endpoint.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/tools/querytee/proxy_endpoint.go -------------------------------------------------------------------------------- /tools/querytee/proxy_metrics.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/tools/querytee/proxy_metrics.go -------------------------------------------------------------------------------- /tools/querytee/proxy_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/tools/querytee/proxy_test.go -------------------------------------------------------------------------------- /tools/release/check-changelog.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/tools/release/check-changelog.sh -------------------------------------------------------------------------------- /tools/release/common.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/tools/release/common.sh -------------------------------------------------------------------------------- /tools/release/tag-release.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/tools/release/tag-release.sh -------------------------------------------------------------------------------- /tools/splitblocks/.gitignore: -------------------------------------------------------------------------------- 1 | splitblocks 2 | -------------------------------------------------------------------------------- /tools/splitblocks/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/tools/splitblocks/README.md -------------------------------------------------------------------------------- /tools/splitblocks/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/tools/splitblocks/main.go -------------------------------------------------------------------------------- /tools/splitblocks/main_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/tools/splitblocks/main_test.go -------------------------------------------------------------------------------- /tools/tenant-injector/.gitignore: -------------------------------------------------------------------------------- 1 | tenant-injector -------------------------------------------------------------------------------- /tools/tenant-injector/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/tools/tenant-injector/main.go -------------------------------------------------------------------------------- /tools/trafficdump/.gitignore: -------------------------------------------------------------------------------- 1 | trafficdump 2 | -------------------------------------------------------------------------------- /tools/trafficdump/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/tools/trafficdump/Makefile -------------------------------------------------------------------------------- /tools/trafficdump/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/tools/trafficdump/main.go -------------------------------------------------------------------------------- /tools/trafficdump/model.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/tools/trafficdump/model.go -------------------------------------------------------------------------------- /tools/trafficdump/parser.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/tools/trafficdump/parser.go -------------------------------------------------------------------------------- /tools/trafficdump/processor.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/tools/trafficdump/processor.go -------------------------------------------------------------------------------- /tools/trafficdump/streams.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/tools/trafficdump/streams.go -------------------------------------------------------------------------------- /tools/tsdb-chunks/.gitignore: -------------------------------------------------------------------------------- 1 | tsdb-chunks -------------------------------------------------------------------------------- /tools/tsdb-chunks/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/tools/tsdb-chunks/main.go -------------------------------------------------------------------------------- /tools/tsdb-chunks/main_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/tools/tsdb-chunks/main_test.go -------------------------------------------------------------------------------- /tools/tsdb-compact/.gitignore: -------------------------------------------------------------------------------- 1 | tsdb-compact -------------------------------------------------------------------------------- /tools/tsdb-compact/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/tools/tsdb-compact/main.go -------------------------------------------------------------------------------- /tools/tsdb-gaps/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/tools/tsdb-gaps/README.md -------------------------------------------------------------------------------- /tools/tsdb-gaps/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/tools/tsdb-gaps/main.go -------------------------------------------------------------------------------- /tools/tsdb-index-header/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/tools/tsdb-index-header/main.go -------------------------------------------------------------------------------- /tools/tsdb-index-header/print.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/tools/tsdb-index-header/print.go -------------------------------------------------------------------------------- /tools/tsdb-index-header/util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/tools/tsdb-index-header/util.go -------------------------------------------------------------------------------- /tools/tsdb-index-health/.gitignore: -------------------------------------------------------------------------------- 1 | tsdb-index-health -------------------------------------------------------------------------------- /tools/tsdb-index-health/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/tools/tsdb-index-health/main.go -------------------------------------------------------------------------------- /tools/tsdb-index-toc/.gitignore: -------------------------------------------------------------------------------- 1 | tsdb-index-toc -------------------------------------------------------------------------------- /tools/tsdb-index-toc/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/tools/tsdb-index-toc/main.go -------------------------------------------------------------------------------- /tools/tsdb-labels/.gitignore: -------------------------------------------------------------------------------- 1 | tsdb-labels -------------------------------------------------------------------------------- /tools/tsdb-labels/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/tools/tsdb-labels/main.go -------------------------------------------------------------------------------- /tools/tsdb-print-chunk/.gitignore: -------------------------------------------------------------------------------- 1 | tsdb-print-chunk -------------------------------------------------------------------------------- /tools/tsdb-print-chunk/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/tools/tsdb-print-chunk/main.go -------------------------------------------------------------------------------- /tools/tsdb-series/.gitignore: -------------------------------------------------------------------------------- 1 | tsdb-series -------------------------------------------------------------------------------- /tools/tsdb-series/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/tools/tsdb-series/main.go -------------------------------------------------------------------------------- /tools/tsdb-symbols/.gitignore: -------------------------------------------------------------------------------- 1 | tsdb-symbols -------------------------------------------------------------------------------- /tools/tsdb-symbols/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/tools/tsdb-symbols/main.go -------------------------------------------------------------------------------- /tools/ulidtime/.gitignore: -------------------------------------------------------------------------------- 1 | ulidtime -------------------------------------------------------------------------------- /tools/ulidtime/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/tools/ulidtime/main.go -------------------------------------------------------------------------------- /tools/undelete-blocks/.gitignore: -------------------------------------------------------------------------------- 1 | undelete-blocks -------------------------------------------------------------------------------- /tools/undelete-blocks/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/tools/undelete-blocks/README.md -------------------------------------------------------------------------------- /tools/undelete-blocks/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/tools/undelete-blocks/main.go -------------------------------------------------------------------------------- /tools/wal-reader/.gitignore: -------------------------------------------------------------------------------- 1 | wal-reader -------------------------------------------------------------------------------- /tools/wal-reader/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/tools/wal-reader/main.go -------------------------------------------------------------------------------- /vendor/cel.dev/expr/.bazelversion: -------------------------------------------------------------------------------- 1 | 7.3.2 2 | # Keep this pinned version in parity with cel-go 3 | -------------------------------------------------------------------------------- /vendor/cel.dev/expr/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/vendor/cel.dev/expr/.gitignore -------------------------------------------------------------------------------- /vendor/cel.dev/expr/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/vendor/cel.dev/expr/BUILD.bazel -------------------------------------------------------------------------------- /vendor/cel.dev/expr/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/vendor/cel.dev/expr/LICENSE -------------------------------------------------------------------------------- /vendor/cel.dev/expr/MODULE.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/vendor/cel.dev/expr/MODULE.bazel -------------------------------------------------------------------------------- /vendor/cel.dev/expr/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/vendor/cel.dev/expr/README.md -------------------------------------------------------------------------------- /vendor/cel.dev/expr/WORKSPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/vendor/cel.dev/expr/WORKSPACE -------------------------------------------------------------------------------- /vendor/cel.dev/expr/WORKSPACE.bzlmod: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/cel.dev/expr/eval.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/vendor/cel.dev/expr/eval.pb.go -------------------------------------------------------------------------------- /vendor/cel.dev/expr/syntax.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/vendor/cel.dev/expr/syntax.pb.go -------------------------------------------------------------------------------- /vendor/cel.dev/expr/value.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/vendor/cel.dev/expr/value.pb.go -------------------------------------------------------------------------------- /vendor/github.com/Masterminds/semver/v3/.gitignore: -------------------------------------------------------------------------------- 1 | _fuzz/ -------------------------------------------------------------------------------- /vendor/github.com/Masterminds/sprig/v3/.gitignore: -------------------------------------------------------------------------------- 1 | vendor/ 2 | /.glide 3 | -------------------------------------------------------------------------------- /vendor/github.com/aws/smithy-go/NOTICE: -------------------------------------------------------------------------------- 1 | Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. 2 | -------------------------------------------------------------------------------- /vendor/github.com/cortexproject/promqlsmith/.go-version: -------------------------------------------------------------------------------- 1 | 1.24 2 | -------------------------------------------------------------------------------- /vendor/github.com/dennwc/varint/.gitignore: -------------------------------------------------------------------------------- 1 | *.o 2 | *.txt -------------------------------------------------------------------------------- /vendor/github.com/dgraph-io/ristretto/.go-version: -------------------------------------------------------------------------------- 1 | 1.17.11 2 | -------------------------------------------------------------------------------- /vendor/github.com/dgraph-io/ristretto/z/rtutil.s: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/github.com/ebitengine/purego/.gitignore: -------------------------------------------------------------------------------- 1 | *~ 2 | -------------------------------------------------------------------------------- /vendor/github.com/felixge/httpsnoop/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/github.com/go-kit/log/staticcheck.conf: -------------------------------------------------------------------------------- 1 | checks = ["all"] 2 | -------------------------------------------------------------------------------- /vendor/github.com/go-logfmt/logfmt/.gitignore: -------------------------------------------------------------------------------- 1 | .vscode/ 2 | -------------------------------------------------------------------------------- /vendor/github.com/go-openapi/analysis/.gitattributes: -------------------------------------------------------------------------------- 1 | *.go text eol=lf 2 | 3 | -------------------------------------------------------------------------------- /vendor/github.com/go-openapi/errors/.gitattributes: -------------------------------------------------------------------------------- 1 | *.go text eol=lf -------------------------------------------------------------------------------- /vendor/github.com/go-openapi/errors/.gitignore: -------------------------------------------------------------------------------- 1 | secrets.yml 2 | coverage.out 3 | -------------------------------------------------------------------------------- /vendor/github.com/go-openapi/jsonpointer/.gitignore: -------------------------------------------------------------------------------- 1 | secrets.yml 2 | -------------------------------------------------------------------------------- /vendor/github.com/go-openapi/jsonreference/.gitignore: -------------------------------------------------------------------------------- 1 | secrets.yml 2 | -------------------------------------------------------------------------------- /vendor/github.com/go-openapi/runtime/.gitattributes: -------------------------------------------------------------------------------- 1 | *.go text eol=lf 2 | -------------------------------------------------------------------------------- /vendor/github.com/go-openapi/spec/.gitignore: -------------------------------------------------------------------------------- 1 | *.out 2 | -------------------------------------------------------------------------------- /vendor/github.com/go-openapi/strfmt/.gitattributes: -------------------------------------------------------------------------------- 1 | *.go text eol=lf 2 | 3 | -------------------------------------------------------------------------------- /vendor/github.com/go-openapi/strfmt/.gitignore: -------------------------------------------------------------------------------- 1 | secrets.yml 2 | coverage.out 3 | -------------------------------------------------------------------------------- /vendor/github.com/go-openapi/swag/.gitignore: -------------------------------------------------------------------------------- 1 | secrets.yml 2 | vendor 3 | Godeps 4 | .idea 5 | *.out 6 | -------------------------------------------------------------------------------- /vendor/github.com/gogo/status/.gitignore: -------------------------------------------------------------------------------- 1 | vendor 2 | -------------------------------------------------------------------------------- /vendor/github.com/golang-jwt/jwt/v5/.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | bin 3 | .idea/ 4 | 5 | -------------------------------------------------------------------------------- /vendor/github.com/googleapis/gax-go/v2/.release-please-manifest.json: -------------------------------------------------------------------------------- 1 | { 2 | "v2": "2.15.0" 3 | } 4 | -------------------------------------------------------------------------------- /vendor/github.com/gosimple/slug/.gitignore: -------------------------------------------------------------------------------- 1 | _* 2 | cover*.out 3 | -------------------------------------------------------------------------------- /vendor/github.com/grafana/alerting/notify/crypto.go: -------------------------------------------------------------------------------- 1 | package notify 2 | -------------------------------------------------------------------------------- /vendor/github.com/grafana/alerting/notify/mimir_alertmanager.go: -------------------------------------------------------------------------------- 1 | package notify 2 | -------------------------------------------------------------------------------- /vendor/github.com/grafana/pyroscope-go/godeltaprof/.gitignore: -------------------------------------------------------------------------------- 1 | .idea/ 2 | -------------------------------------------------------------------------------- /vendor/github.com/hashicorp/go-hclog/.gitignore: -------------------------------------------------------------------------------- 1 | .idea* -------------------------------------------------------------------------------- /vendor/github.com/hashicorp/go-retryablehttp/.gitignore: -------------------------------------------------------------------------------- 1 | .idea/ 2 | *.iml 3 | *.test 4 | .vscode/ -------------------------------------------------------------------------------- /vendor/github.com/hashicorp/go-retryablehttp/.go-version: -------------------------------------------------------------------------------- 1 | 1.23 2 | -------------------------------------------------------------------------------- /vendor/github.com/hashicorp/memberlist/.go-version: -------------------------------------------------------------------------------- 1 | 1.20 2 | -------------------------------------------------------------------------------- /vendor/github.com/influxdata/tdigest/.gitignore: -------------------------------------------------------------------------------- 1 | /test/*.dat* 2 | -------------------------------------------------------------------------------- /vendor/github.com/json-iterator/go/.codecov.yml: -------------------------------------------------------------------------------- 1 | ignore: 2 | - "output_tests/.*" 3 | 4 | -------------------------------------------------------------------------------- /vendor/github.com/json-iterator/go/.gitignore: -------------------------------------------------------------------------------- 1 | /vendor 2 | /bug_test.go 3 | /coverage.txt 4 | /.idea 5 | -------------------------------------------------------------------------------- /vendor/github.com/klauspost/compress/gen.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | cd s2/cmd/_s2sx/ || exit 1 4 | go generate . 5 | -------------------------------------------------------------------------------- /vendor/github.com/klauspost/compress/huff0/.gitignore: -------------------------------------------------------------------------------- 1 | /huff0-fuzz.zip 2 | -------------------------------------------------------------------------------- /vendor/github.com/klauspost/compress/s2sx.mod: -------------------------------------------------------------------------------- 1 | module github.com/klauspost/compress 2 | 3 | go 1.22 4 | -------------------------------------------------------------------------------- /vendor/github.com/klauspost/compress/s2sx.sum: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/github.com/knadh/koanf/v2/.gitignore: -------------------------------------------------------------------------------- 1 | .env 2 | 3 | # IDE 4 | .idea 5 | -------------------------------------------------------------------------------- /vendor/github.com/matttproud/golang_protobuf_extensions/pbutil/.gitignore: -------------------------------------------------------------------------------- 1 | cover.dat 2 | -------------------------------------------------------------------------------- /vendor/github.com/miekg/dns/CODEOWNERS: -------------------------------------------------------------------------------- 1 | * @miekg @tmthrgd 2 | -------------------------------------------------------------------------------- /vendor/github.com/minio/minio-go/v7/CNAME: -------------------------------------------------------------------------------- 1 | minio-go.min.io -------------------------------------------------------------------------------- /vendor/github.com/mitchellh/reflectwalk/.travis.yml: -------------------------------------------------------------------------------- 1 | language: go 2 | -------------------------------------------------------------------------------- /vendor/github.com/modern-go/concurrent/.gitignore: -------------------------------------------------------------------------------- 1 | /coverage.txt 2 | -------------------------------------------------------------------------------- /vendor/github.com/modern-go/reflect2/.gitignore: -------------------------------------------------------------------------------- 1 | /vendor 2 | /coverage.txt 3 | -------------------------------------------------------------------------------- /vendor/github.com/modern-go/reflect2/reflect2_amd64.s: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/github.com/modern-go/reflect2/relfect2_386.s: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/github.com/modern-go/reflect2/relfect2_amd64p32.s: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/github.com/modern-go/reflect2/relfect2_arm.s: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/github.com/modern-go/reflect2/relfect2_arm64.s: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/github.com/modern-go/reflect2/relfect2_mips64x.s: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/github.com/modern-go/reflect2/relfect2_mipsx.s: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/github.com/modern-go/reflect2/relfect2_ppc64x.s: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/github.com/modern-go/reflect2/relfect2_s390x.s: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/github.com/ncw/swift/.gitignore: -------------------------------------------------------------------------------- 1 | *~ 2 | *.pyc 3 | test-env* 4 | junk/ -------------------------------------------------------------------------------- /vendor/github.com/opentracing/opentracing-go/.gitignore: -------------------------------------------------------------------------------- 1 | coverage.txt 2 | -------------------------------------------------------------------------------- /vendor/github.com/prometheus/client_golang/prometheus/.gitignore: -------------------------------------------------------------------------------- 1 | command-line-arguments.test 2 | -------------------------------------------------------------------------------- /vendor/github.com/prometheus/prometheus/tsdb/.gitignore: -------------------------------------------------------------------------------- 1 | benchout/ 2 | -------------------------------------------------------------------------------- /vendor/github.com/rs/xid/.gitignore: -------------------------------------------------------------------------------- 1 | /.idea 2 | /.vscode 3 | .DS_Store -------------------------------------------------------------------------------- /vendor/github.com/rs/xid/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/vendor/github.com/rs/xid/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/rs/xid/id.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/vendor/github.com/rs/xid/id.go -------------------------------------------------------------------------------- /vendor/github.com/sercand/kuberesolver/v6/.gitignore: -------------------------------------------------------------------------------- 1 | .idea 2 | kuberesolver.iml 3 | -------------------------------------------------------------------------------- /vendor/github.com/shopspring/decimal/.gitignore: -------------------------------------------------------------------------------- 1 | .git 2 | *.swp 3 | 4 | # IntelliJ 5 | .idea/ 6 | *.iml 7 | -------------------------------------------------------------------------------- /vendor/github.com/sirupsen/logrus/.gitignore: -------------------------------------------------------------------------------- 1 | logrus 2 | vendor 3 | 4 | .idea/ 5 | -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/.gitignore: -------------------------------------------------------------------------------- 1 | .idea/* 2 | 3 | -------------------------------------------------------------------------------- /vendor/github.com/thanos-io/objstore/.go-version: -------------------------------------------------------------------------------- 1 | 1.24.x 2 | -------------------------------------------------------------------------------- /vendor/github.com/tklauser/go-sysconf/.gitignore: -------------------------------------------------------------------------------- 1 | _obj/ 2 | -------------------------------------------------------------------------------- /vendor/github.com/uber/jaeger-client-go/thrift/.nocover: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/github.com/xlab/treeprint/.gitignore: -------------------------------------------------------------------------------- 1 | vendor/** 2 | .idea 3 | **/**.iml 4 | -------------------------------------------------------------------------------- /vendor/go.opentelemetry.io/collector/component/Makefile: -------------------------------------------------------------------------------- 1 | include ../Makefile.Common 2 | -------------------------------------------------------------------------------- /vendor/go.opentelemetry.io/collector/confmap/Makefile: -------------------------------------------------------------------------------- 1 | include ../Makefile.Common 2 | -------------------------------------------------------------------------------- /vendor/go.opentelemetry.io/collector/confmap/xconfmap/Makefile: -------------------------------------------------------------------------------- 1 | include ../../Makefile.Common 2 | -------------------------------------------------------------------------------- /vendor/go.opentelemetry.io/collector/consumer/Makefile: -------------------------------------------------------------------------------- 1 | include ../Makefile.Common 2 | -------------------------------------------------------------------------------- /vendor/go.opentelemetry.io/collector/featuregate/Makefile: -------------------------------------------------------------------------------- 1 | include ../Makefile.Common 2 | -------------------------------------------------------------------------------- /vendor/go.opentelemetry.io/collector/pipeline/Makefile: -------------------------------------------------------------------------------- 1 | include ../Makefile.Common 2 | -------------------------------------------------------------------------------- /vendor/go.opentelemetry.io/collector/processor/Makefile: -------------------------------------------------------------------------------- 1 | include ../Makefile.Common 2 | -------------------------------------------------------------------------------- /vendor/go.opentelemetry.io/otel/requirements.txt: -------------------------------------------------------------------------------- 1 | codespell==2.4.1 2 | -------------------------------------------------------------------------------- /vendor/go.uber.org/atomic/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/vendor/go.uber.org/atomic/doc.go -------------------------------------------------------------------------------- /vendor/go.uber.org/atomic/gen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/vendor/go.uber.org/atomic/gen.go -------------------------------------------------------------------------------- /vendor/go.uber.org/goleak/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/vendor/go.uber.org/goleak/doc.go -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/FAQ.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/vendor/go.uber.org/zap/FAQ.md -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/vendor/go.uber.org/zap/LICENSE -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/vendor/go.uber.org/zap/Makefile -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/vendor/go.uber.org/zap/README.md -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/array.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/vendor/go.uber.org/zap/array.go -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/vendor/go.uber.org/zap/config.go -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/vendor/go.uber.org/zap/doc.go -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/error.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/vendor/go.uber.org/zap/error.go -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/field.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/vendor/go.uber.org/zap/field.go -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/flag.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/vendor/go.uber.org/zap/flag.go -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/global.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/vendor/go.uber.org/zap/global.go -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/level.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/vendor/go.uber.org/zap/level.go -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/logger.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/vendor/go.uber.org/zap/logger.go -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/sink.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/vendor/go.uber.org/zap/sink.go -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/sugar.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/vendor/go.uber.org/zap/sugar.go -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/time.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/vendor/go.uber.org/zap/time.go -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/writer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/vendor/go.uber.org/zap/writer.go -------------------------------------------------------------------------------- /vendor/go.yaml.in/yaml/v2/NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/vendor/go.yaml.in/yaml/v2/NOTICE -------------------------------------------------------------------------------- /vendor/go.yaml.in/yaml/v3/NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/vendor/go.yaml.in/yaml/v3/NOTICE -------------------------------------------------------------------------------- /vendor/golang.org/x/exp/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/vendor/golang.org/x/exp/LICENSE -------------------------------------------------------------------------------- /vendor/golang.org/x/exp/PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/vendor/golang.org/x/exp/PATENTS -------------------------------------------------------------------------------- /vendor/golang.org/x/mod/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/vendor/golang.org/x/mod/LICENSE -------------------------------------------------------------------------------- /vendor/golang.org/x/mod/PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/vendor/golang.org/x/mod/PATENTS -------------------------------------------------------------------------------- /vendor/golang.org/x/net/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/vendor/golang.org/x/net/LICENSE -------------------------------------------------------------------------------- /vendor/golang.org/x/net/PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/vendor/golang.org/x/net/PATENTS -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/.gitignore: -------------------------------------------------------------------------------- 1 | *~ 2 | h2i/h2i 3 | -------------------------------------------------------------------------------- /vendor/golang.org/x/sync/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/vendor/golang.org/x/sync/LICENSE -------------------------------------------------------------------------------- /vendor/golang.org/x/sync/PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/vendor/golang.org/x/sync/PATENTS -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/vendor/golang.org/x/sys/LICENSE -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/vendor/golang.org/x/sys/PATENTS -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/.gitignore: -------------------------------------------------------------------------------- 1 | _obj/ 2 | unix.test 3 | -------------------------------------------------------------------------------- /vendor/golang.org/x/term/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/vendor/golang.org/x/term/LICENSE -------------------------------------------------------------------------------- /vendor/golang.org/x/term/PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/vendor/golang.org/x/term/PATENTS -------------------------------------------------------------------------------- /vendor/golang.org/x/term/codereview.cfg: -------------------------------------------------------------------------------- 1 | issuerepo: golang/go 2 | -------------------------------------------------------------------------------- /vendor/golang.org/x/term/term.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/vendor/golang.org/x/term/term.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/vendor/golang.org/x/text/LICENSE -------------------------------------------------------------------------------- /vendor/golang.org/x/text/PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/vendor/golang.org/x/text/PATENTS -------------------------------------------------------------------------------- /vendor/golang.org/x/time/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/vendor/golang.org/x/time/LICENSE -------------------------------------------------------------------------------- /vendor/golang.org/x/time/PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/vendor/golang.org/x/time/PATENTS -------------------------------------------------------------------------------- /vendor/google.golang.org/grpc/AUTHORS: -------------------------------------------------------------------------------- 1 | Google Inc. 2 | -------------------------------------------------------------------------------- /vendor/gopkg.in/mail.v2/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/vendor/gopkg.in/mail.v2/LICENSE -------------------------------------------------------------------------------- /vendor/gopkg.in/mail.v2/auth.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/vendor/gopkg.in/mail.v2/auth.go -------------------------------------------------------------------------------- /vendor/gopkg.in/mail.v2/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/vendor/gopkg.in/mail.v2/doc.go -------------------------------------------------------------------------------- /vendor/gopkg.in/mail.v2/mime.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/vendor/gopkg.in/mail.v2/mime.go -------------------------------------------------------------------------------- /vendor/gopkg.in/mail.v2/send.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/vendor/gopkg.in/mail.v2/send.go -------------------------------------------------------------------------------- /vendor/gopkg.in/mail.v2/smtp.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/vendor/gopkg.in/mail.v2/smtp.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/vendor/gopkg.in/yaml.v2/LICENSE -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/vendor/gopkg.in/yaml.v2/NOTICE -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/apic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/vendor/gopkg.in/yaml.v2/apic.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/yaml.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/vendor/gopkg.in/yaml.v2/yaml.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/yamlh.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/vendor/gopkg.in/yaml.v2/yamlh.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v3/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/vendor/gopkg.in/yaml.v3/LICENSE -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v3/NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/vendor/gopkg.in/yaml.v3/NOTICE -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v3/apic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/vendor/gopkg.in/yaml.v3/apic.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v3/yaml.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/vendor/gopkg.in/yaml.v3/yaml.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v3/yamlh.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/vendor/gopkg.in/yaml.v3/yamlh.go -------------------------------------------------------------------------------- /vendor/k8s.io/client-go/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/vendor/k8s.io/client-go/LICENSE -------------------------------------------------------------------------------- /vendor/k8s.io/klog/v2/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/vendor/k8s.io/klog/v2/.gitignore -------------------------------------------------------------------------------- /vendor/k8s.io/klog/v2/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/vendor/k8s.io/klog/v2/LICENSE -------------------------------------------------------------------------------- /vendor/k8s.io/klog/v2/OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/vendor/k8s.io/klog/v2/OWNERS -------------------------------------------------------------------------------- /vendor/k8s.io/klog/v2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/vendor/k8s.io/klog/v2/README.md -------------------------------------------------------------------------------- /vendor/k8s.io/klog/v2/RELEASE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/vendor/k8s.io/klog/v2/RELEASE.md -------------------------------------------------------------------------------- /vendor/k8s.io/klog/v2/exit.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/vendor/k8s.io/klog/v2/exit.go -------------------------------------------------------------------------------- /vendor/k8s.io/klog/v2/format.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/vendor/k8s.io/klog/v2/format.go -------------------------------------------------------------------------------- /vendor/k8s.io/klog/v2/imports.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/vendor/k8s.io/klog/v2/imports.go -------------------------------------------------------------------------------- /vendor/k8s.io/klog/v2/klog.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/vendor/k8s.io/klog/v2/klog.go -------------------------------------------------------------------------------- /vendor/k8s.io/klog/v2/klogr.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/vendor/k8s.io/klog/v2/klogr.go -------------------------------------------------------------------------------- /vendor/k8s.io/klog/v2/safeptr.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/vendor/k8s.io/klog/v2/safeptr.go -------------------------------------------------------------------------------- /vendor/k8s.io/kube-openapi/pkg/validation/errors/.gitignore: -------------------------------------------------------------------------------- 1 | secrets.yml 2 | coverage.out 3 | -------------------------------------------------------------------------------- /vendor/k8s.io/kube-openapi/pkg/validation/spec/.gitignore: -------------------------------------------------------------------------------- 1 | secrets.yml 2 | coverage.out 3 | -------------------------------------------------------------------------------- /vendor/k8s.io/kube-openapi/pkg/validation/strfmt/.gitignore: -------------------------------------------------------------------------------- 1 | secrets.yml 2 | coverage.out 3 | -------------------------------------------------------------------------------- /vendor/k8s.io/utils/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/vendor/k8s.io/utils/LICENSE -------------------------------------------------------------------------------- /vendor/k8s.io/utils/net/ipnet.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/vendor/k8s.io/utils/net/ipnet.go -------------------------------------------------------------------------------- /vendor/k8s.io/utils/net/net.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/vendor/k8s.io/utils/net/net.go -------------------------------------------------------------------------------- /vendor/k8s.io/utils/net/parse.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/vendor/k8s.io/utils/net/parse.go -------------------------------------------------------------------------------- /vendor/k8s.io/utils/net/port.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/vendor/k8s.io/utils/net/port.go -------------------------------------------------------------------------------- /vendor/modules.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/vendor/modules.txt -------------------------------------------------------------------------------- /vendor/sigs.k8s.io/yaml/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/vendor/sigs.k8s.io/yaml/LICENSE -------------------------------------------------------------------------------- /vendor/sigs.k8s.io/yaml/OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/vendor/sigs.k8s.io/yaml/OWNERS -------------------------------------------------------------------------------- /vendor/sigs.k8s.io/yaml/yaml.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/mimir/HEAD/vendor/sigs.k8s.io/yaml/yaml.go --------------------------------------------------------------------------------