diff --git a/README.md b/README.md
index 3401181a..c6e600ec 100644
--- a/README.md
+++ b/README.md
@@ -7,6 +7,9 @@
A simple command to run Grafana LGTMP Stack in Docker or Kubernetes.
+> **NOTE**:
+> This project is not intended for production use and is maintained on a best-effort basis.
+
## Usage
An simple use case `compose.yaml` like so:
@@ -110,7 +113,7 @@ The easiest way to run project locally is to use docker compose, these instructi
***Prerequisites:*** Make sure that you have Docker and Docker Compose installed
-> Note:
+> **NOTE**:
> `include` is available in Docker Compose version 2.20 and later, and Docker Desktop version 4.22 and later.
### [Monolithic mode (单体模式)](./docker-compose/monolithic-mode)
diff --git a/compose.override.yaml b/compose.override.yaml
index 5bfb7f5f..9b8bb234 100644
--- a/compose.override.yaml
+++ b/compose.override.yaml
@@ -16,9 +16,9 @@ services:
loki:
labels:
<<: *profiles-labels
- profiles.grafana.com/service_name: loki
+ logs.grafana.com/scrape: true
metrics.grafana.com/scrape: true
- logs.grafana.com/log-format: json
+ profiles.grafana.com/service_name: loki
environment:
<<: *jaeger-environment
JAEGER_TAGS: app=loki
@@ -27,10 +27,10 @@ services:
grafana:
labels:
<<: *profiles-labels
+ logs.grafana.com/scrape: true
+ metrics.grafana.com/scrape: true
profiles.grafana.com/service_name: grafana
profiles.grafana.com/port: 6060
- metrics.grafana.com/scrape: true
- logs.grafana.com/log-format: logfmt
volumes:
- ./monitoring-mixins/pyroscope-mixin/deploy/dashboards_out:/var/lib/grafana/dashboards/pyroscope-mixin
- ./monitoring-mixins/loki-mixin/deploy/dashboards_out:/var/lib/grafana/dashboards/loki-mixin
@@ -45,9 +45,9 @@ services:
tempo:
labels:
<<: *profiles-labels
- profiles.grafana.com/service_name: tempo
+ logs.grafana.com/scrape: true
metrics.grafana.com/scrape: true
- logs.grafana.com/log-format: logfmt
+ profiles.grafana.com/service_name: tempo
depends_on: { minio: { condition: service_healthy }, mimir: { condition: service_healthy } }
environment:
<<: *jaeger-environment
@@ -57,8 +57,9 @@ services:
mimir:
labels:
<<: *profiles-labels
+ logs.grafana.com/scrape: true
+ metrics.grafana.com/scrape: true
profiles.grafana.com/service_name: mimir
- logs.grafana.com/log-format: logfmt
environment:
<<: *jaeger-environment
JAEGER_TAGS: app=mimir
@@ -75,8 +76,9 @@ services:
# override compose.yaml included service pyroscope's labels and environment to enabled traces data collection
pyroscope:
labels:
+ logs.grafana.com/scrape: true
metrics.grafana.com/scrape: true
- logs.grafana.com/log-format: logfmt
+ profiles.grafana.com/service_name: pyroscope
environment:
<<: *jaeger-environment
JAEGER_TAGS: app=pyroscope
diff --git a/compose.yaml b/compose.yaml
index ab2d6409..9138bdd3 100644
--- a/compose.yaml
+++ b/compose.yaml
@@ -52,6 +52,6 @@ services:
- ./docker-compose/common/config/pyroscope/gateway_pyroscope.conf:/etc/nginx/templates/gateway_pyroscope.conf.template
healthcheck:
test: [ "CMD-SHELL", "wget --no-verbose --tries=1 --spider http://localhost:8080/ || exit 1" ]
- interval: 5s
- timeout: 2s
- retries: 10
+ interval: 3s
+ timeout: 1s
+ retries: 20
diff --git a/docker-compose/common/compose-include/alloy.yaml b/docker-compose/common/compose-include/alloy.yaml
index b0f63f52..09037392 100644
--- a/docker-compose/common/compose-include/alloy.yaml
+++ b/docker-compose/common/compose-include/alloy.yaml
@@ -1,7 +1,5 @@
services:
alloy:
- labels:
- logs.grafana.com/log-format: logfmt
depends_on: { gateway: { condition: service_healthy } }
image: ${ALLOY_IMAGE:-docker.io/grafana/alloy:v1.0.0}
configs:
diff --git a/docker-compose/common/compose-include/grafana.yaml b/docker-compose/common/compose-include/grafana.yaml
index f97c0e23..48739afb 100644
--- a/docker-compose/common/compose-include/grafana.yaml
+++ b/docker-compose/common/compose-include/grafana.yaml
@@ -20,7 +20,6 @@ services:
grafana:
labels:
metrics.grafana.com/scrape: false
- logs.grafana.com/log-format: logfmt
image: ${GRAFANA_IMAGE:-docker.io/grafana/grafana:10.4.1}
command:
- --config=/etc/grafana-config/grafana.ini
diff --git a/docker-compose/common/compose-include/loki.yaml b/docker-compose/common/compose-include/loki.yaml
index cde607ea..98e13452 100644
--- a/docker-compose/common/compose-include/loki.yaml
+++ b/docker-compose/common/compose-include/loki.yaml
@@ -2,7 +2,6 @@ services:
loki:
labels:
metrics.grafana.com/scrape: false
- logs.grafana.com/log-format: json
depends_on: { minio: { condition: service_healthy } }
image: ${LOKI_IMAGE:-docker.io/grafana/loki:3.0.0}
volumes:
@@ -13,9 +12,9 @@ services:
- -config.expand-env=true
healthcheck:
test: [ "CMD-SHELL", "wget --no-verbose --tries=1 --spider http://localhost:3100/ready || exit 1" ]
- interval: 3s
- timeout: 2s
- retries: 10
+ interval: 2s
+ timeout: 1s
+ retries: 15
# expose 33100 port so we can directly access loki inside container
ports:
- "33100:3100"
diff --git a/docker-compose/common/compose-include/mimir.yaml b/docker-compose/common/compose-include/mimir.yaml
index 2474cce1..f7946ddf 100644
--- a/docker-compose/common/compose-include/mimir.yaml
+++ b/docker-compose/common/compose-include/mimir.yaml
@@ -1,6 +1,8 @@
services:
mimir:
+ labels:
+ metrics.grafana.com/scrape: false
depends_on: { minio: { condition: service_healthy } }
image: ${MIMIR_IMAGE:-docker.io/grafana/mimir:2.12.0}
volumes:
@@ -11,9 +13,9 @@ services:
- -config.expand-env=true
healthcheck:
test: [ "CMD-SHELL", "wget --no-verbose --tries=1 --spider http://localhost:8080/ready || exit 1" ]
- interval: 3s
- timeout: 2s
- retries: 10
+ interval: 2s
+ timeout: 1s
+ retries: 15
# expose 38080 port so we can directly access mimir inside container
ports:
- "38080:8080"
diff --git a/docker-compose/common/compose-include/minio.yaml b/docker-compose/common/compose-include/minio.yaml
index 21d6ae0f..b2f14987 100644
--- a/docker-compose/common/compose-include/minio.yaml
+++ b/docker-compose/common/compose-include/minio.yaml
@@ -32,9 +32,9 @@ services:
- minio_data:/data:delegated
healthcheck:
test: ["CMD-SHELL", "mc ready local"]
- interval: 3s
- timeout: 2s
- retries: 10
+ interval: 2s
+ timeout: 1s
+ retries: 15
ports:
- "9001:9001"
diff --git a/docker-compose/common/compose-include/pyroscope.yaml b/docker-compose/common/compose-include/pyroscope.yaml
index c5ba6d08..49f474ed 100644
--- a/docker-compose/common/compose-include/pyroscope.yaml
+++ b/docker-compose/common/compose-include/pyroscope.yaml
@@ -4,7 +4,6 @@ services:
metrics.grafana.com/scrape: false
depends_on: { minio: { condition: service_healthy } }
image: ${PYROSCOPE_IMAGE:-docker.io/grafana/pyroscope:1.5.0}
- container_name: pyroscope
volumes:
- ../config/pyroscope:/etc/pyroscope
- pyroscope_data:/data
@@ -15,9 +14,9 @@ services:
# - -runtime-config.file=/etc/pyroscope/overrides.yaml
healthcheck:
test: [ "CMD-SHELL", "wget --no-verbose --tries=1 --spider http://localhost:4040/ready || exit 1" ]
- interval: 3s
- timeout: 2s
- retries: 10
+ interval: 2s
+ timeout: 1s
+ retries: 15
# expose 34040 port so we can directly access pyroscope inside container
ports:
- "34040:4040"
diff --git a/docker-compose/common/compose-include/tempo.yaml b/docker-compose/common/compose-include/tempo.yaml
index 25e6ff23..d56df21d 100644
--- a/docker-compose/common/compose-include/tempo.yaml
+++ b/docker-compose/common/compose-include/tempo.yaml
@@ -13,10 +13,10 @@ services:
- -config.expand-env=true
healthcheck:
test: [ "CMD-SHELL", "wget --no-verbose --tries=1 --spider http://localhost:3200/ready || exit 1" ]
- interval: 3s
- timeout: 2s
- retries: 10
- start_period: 10s
+ interval: 2s
+ timeout: 1s
+ retries: 15
+ # start_period: 10s
# expose 33200 port so we can directly access tempo inside container
ports:
- "33200:3200"
diff --git a/docker-compose/common/config/alloy/all-in-one.alloy b/docker-compose/common/config/alloy/all-in-one.alloy
index a0e2c817..a139171a 100644
--- a/docker-compose/common/config/alloy/all-in-one.alloy
+++ b/docker-compose/common/config/alloy/all-in-one.alloy
@@ -12,10 +12,10 @@ import.file "provider" {
// get self hosted receivers provider
provider.self_hosted "compose" {
- logs_endpoint = "http://gateway:3100"
- metrics_endpoint = "http://gateway:8080"
- traces_endpoint = "http://gateway:4318"
- profiles_endpoint = "http://gateway:4040"
+ logs_endpoint_url = "http://gateway:3100/loki/api/v1/push"
+ metrics_endpoint_url = "http://gateway:8080/api/v1/push"
+ traces_endpoint_url = "http://gateway:4318"
+ profiles_endpoint_url = "http://gateway:4040"
}
/********************************************
@@ -73,8 +73,11 @@ traces.pat "all" {
}
tracing {
- sampling_fraction = 0.8
- write_to = [traces.pat.all.alloy_traces_input]
+ // Write all spans. Don't do this in production!
+ sampling_fraction = 1
+
+ // Forward Alloy internal spans to traces process.
+ write_to = [traces.pat.all.alloy_traces_input]
}
/********************************************
diff --git a/docker-compose/common/config/alloy/logs.alloy b/docker-compose/common/config/alloy/logs.alloy
index 3263a00e..70180b88 100644
--- a/docker-compose/common/config/alloy/logs.alloy
+++ b/docker-compose/common/config/alloy/logs.alloy
@@ -12,8 +12,8 @@ import.file "provider" {
// get lgtmp receivers provider
provider.self_hosted "compose" {
- logs_endpoint = "http://gateway:3100"
- metrics_endpoint = "http://gateway:8080"
+ logs_endpoint_url = "http://gateway:3100/loki/api/v1/push"
+ metrics_endpoint_url = "http://gateway:8080/api/v1/push"
}
/********************************************
diff --git a/docker-compose/common/config/alloy/metrics.alloy b/docker-compose/common/config/alloy/metrics.alloy
index cc9e1ad4..9da1e0bf 100644
--- a/docker-compose/common/config/alloy/metrics.alloy
+++ b/docker-compose/common/config/alloy/metrics.alloy
@@ -12,7 +12,7 @@ import.file "provider" {
// get lgtmp receivers provider
provider.self_hosted "compose" {
- metrics_endpoint = "http://gateway:8080"
+ metrics_endpoint_url = "http://gateway:8080/api/v1/push"
}
/********************************************
diff --git a/docker-compose/common/config/alloy/modules/compose/README.md b/docker-compose/common/config/alloy/modules/compose/README.md
index 3a2aa2d4..840805a0 100644
--- a/docker-compose/common/config/alloy/modules/compose/README.md
+++ b/docker-compose/common/config/alloy/modules/compose/README.md
@@ -1,4 +1,4 @@
-# Docker Compose `labels` Auto-Scraping Modules
+# Docker Compose `labels_scrape` Components
## Logs
@@ -22,7 +22,7 @@ The following service labels are supported for gathering of metrics for docker c
| `metrics.grafana.com/path`
or
`prometheus.io/path` | the default path to scrape is `/metrics`, this can be specified as a single value which would override, the scrape path being used for all ports attached to the target |
| `metrics.grafana.com/port`
or
`prometheus.io/port` | the default `port` to scrape is the target port, this can be specified as a single value which would override the scrape port being used for all ports attached to the target, note that even if an target had multiple targets, the relabel_config targets are deduped before scraping |
| `metrics.grafana.com/tenant` | The tenant their metrics should be sent to, this does not necessarily have to be the actual tenantId, it can be a friendly name as well that is simply used to determine if the metrics should be gathered for the current tenant |
-| `metrics.grafana.com/job`
or
`prometheus.io/job` | The job label value to use when collecting their metrics. However, it is common to use an integration or community project where rules / dashboards are provided for you. Oftentimes, this provided assets use hard-coded values for a job label i.e. `...{job="integrations/kubernetes/cadvisor"...}` or `...{job="minio-job"...}` setting this annotation to that value will allow the provided asset to work out of the box. |
+| `metrics.grafana.com/job`
or
`prometheus.io/job` | The job label value to use when collecting their metrics. However, it is common to use an integration or community project where rules / dashboards are provided for you. Oftentimes, this provided assets use hard-coded values for a job label i.e. `...{job="integrations/cadvisor"...}` or `...{job="minio-job"...}` setting this annotation to that value will allow the provided asset to work out of the box. |
| `metrics.grafana.com/interval`
or
`prometheus.io/interval` | The default interval to scrape is `15s`, this can be override. |
| `metrics.grafana.com/timeout`
or
`prometheus.io/timeout` | The default timeout for scraping is `10s`, this can be override. |
@@ -32,7 +32,7 @@ The following service labels are supported for gathering of metrics for docker c
The following service labels are supported for docker compose services:
-> The full list of profile types supported by labels is `cpu`, `memory`, `goroutine`, `block`, `mutex` and `fgprof`:
+> The full list of supported by labels is `cpu`, `memory`, `goroutine`, `block`, `mutex` and `fgprof`:
| Label | Description |
| :--------------- | :-----------|
diff --git a/docker-compose/common/config/alloy/modules/compose/logs/labels-scrape.alloy b/docker-compose/common/config/alloy/modules/compose/logs/labels-scrape.alloy
index fa366a58..7274dbf8 100644
--- a/docker-compose/common/config/alloy/modules/compose/logs/labels-scrape.alloy
+++ b/docker-compose/common/config/alloy/modules/compose/logs/labels-scrape.alloy
@@ -1,5 +1,5 @@
/*
-Module(logs_auto_scrape): Docker Containers Logs Auto-Scraping
+Component: labels_scrape
Description: Scrapes targets for logs based on Docker Containers labels
Following labels are available:
diff --git a/docker-compose/common/config/alloy/modules/compose/metrics/labels-scrape.alloy b/docker-compose/common/config/alloy/modules/compose/metrics/labels-scrape.alloy
index e8c61b8b..7848a799 100644
--- a/docker-compose/common/config/alloy/modules/compose/metrics/labels-scrape.alloy
+++ b/docker-compose/common/config/alloy/modules/compose/metrics/labels-scrape.alloy
@@ -1,5 +1,5 @@
/*
-Module(metrics): Docker Containers Auto-Scraping
+Component: labels_scrape
Description: Scrapes targets for metrics based on Docker Containers labels
Note: Every argument except for "forward_to" is optional, and does have a defined default value. However, the values for these
diff --git a/docker-compose/common/config/alloy/modules/compose/profiles/labels-scrape.alloy b/docker-compose/common/config/alloy/modules/compose/profiles/labels-scrape.alloy
index bc932c9b..407825b5 100644
--- a/docker-compose/common/config/alloy/modules/compose/profiles/labels-scrape.alloy
+++ b/docker-compose/common/config/alloy/modules/compose/profiles/labels-scrape.alloy
@@ -1,5 +1,5 @@
/*
-Module(profiles_auto_scrape): Docker Containers Auto-Scraping
+Component: labels_scrape
Description: Scrapes targets for profiles based on Docker Containers labels
The full list of profile types supported by labels is "cpu", "memory", "goroutine", "block", "mutex" and "fgprof"
diff --git a/docker-compose/common/config/alloy/modules/compose/traces/pat.alloy b/docker-compose/common/config/alloy/modules/compose/traces/process-and-transform.alloy
similarity index 100%
rename from docker-compose/common/config/alloy/modules/compose/traces/pat.alloy
rename to docker-compose/common/config/alloy/modules/compose/traces/process-and-transform.alloy
diff --git a/docker-compose/common/config/alloy/modules/provider/README.md b/docker-compose/common/config/alloy/modules/provider/README.md
index 5179e170..b7d697fb 100644
--- a/docker-compose/common/config/alloy/modules/provider/README.md
+++ b/docker-compose/common/config/alloy/modules/provider/README.md
@@ -1,4 +1,4 @@
-# Receivers Provider Moudle
+# Data receiver provider components
Provide the receivers of the collected data(`logs` `metrics` `traces` `profiles`).
@@ -13,21 +13,21 @@ Module to configure receivers for Self Hosted LGTMP Stack.
***Arguments***
-| Name | Required | Default | Description |
-| :------------------ | :------- | :---------------------- | :--------------------------------- |
-| `metrics_endpoint` | _no_ | `http://mimir:8080` | Where to send collected `metrics`. |
-| `logs_endpoint` | _no_ | `http://loki:3100` | Where to send collected `logs`. |
-| `traces_endpoint` | _no_ | `tempo:4317` | Where to send collected `traces`. |
-| `profiles_endpoint` | _no_ | `http://pyroscope:4040` | Where to send collected `profiles`.|
+| Name | Required | Default | Description |
+| :---------------------- | :------- | :-------------------------------------- | :--------------------------------- |
+| `metrics_endpoint_url` | _no_ | `http://mimir:8080/api/v1/push` | Where to send collected `metrics`. |
+| `logs_endpoint_url` | _no_ | `http://loki:3100/loki/api/v1/push` | Where to send collected `logs`. |
+| `traces_endpoint_url` | _no_ | `http://tempo:4318` | Where to send collected `traces`. |
+| `profiles_endpoint_url` | _no_ | `http://pyroscope:4040` | Where to send collected `profiles`.|
***Exports***
-| Name | Type | Description |
-| --------------------| ------------------------ | --------------------------------------------------------------------------- |
-| `metrics_receiver` | `prometheus.Interceptor` | A value that other components can use to send metrics data to. |
-| `logs_receiver` | `loki.LogsReceiver` | A value that other components can use to send logs data to. |
-| `traces_receiver` | `otelcol.Consumer` | A value that other components can use to send trace data to. |
-| `profiles_receiver` | `write.fanOutClient` | A value that other components can use to send profiling data to. |
+| Name | Type | Description |
+| --------------------| ------------------------ | ---------------------------------------------------------------- |
+| `metrics_receiver` | `prometheus.Interceptor` | A value that other components can use to send metrics data to. |
+| `logs_receiver` | `loki.LogsReceiver` | A value that other components can use to send logs data to. |
+| `traces_receiver` | `otelcol.Consumer` | A value that other components can use to send trace data to. |
+| `profiles_receiver` | `write.fanOutClient` | A value that other components can use to send profiling data to. |
***Example***
@@ -41,12 +41,12 @@ import.git "provider" {
// get the receivers from provider
provider.self_hosted "compose" {
- metrics_endpoint = "http://mimir:8080"
+ metrics_endpoint_url = "http://mimir:8080/api/v1/push"
}
// get the receivers from provider
provider.self_hosted "kubernetes" {
- metrics_endpoint = "http://mimir.monitoring-system.svc.cluster.local:8080"
+ metrics_endpoint_url = "http://mimir.monitoring-system.svc.cluster.local:8080/api/v1/push"
}
// scrape metrics and write to metric receiver
@@ -107,7 +107,7 @@ import.git "provider" {
// get the receivers from provider
provider.grafana_cloud "stack_name" {
stack_name = env("GRAFANA_CLOUD_STACK_NAME")
- token = env("GRAFANA_CLOUD_STACK_TOKEN")
+ token = env("GRAFANA_CLOUD_TOKEN")
}
// scrape metrics and write to metric receiver
diff --git a/docker-compose/common/config/alloy/modules/provider/self_hosted.alloy b/docker-compose/common/config/alloy/modules/provider/self_hosted.alloy
index 54f99d31..6b0f5cde 100644
--- a/docker-compose/common/config/alloy/modules/provider/self_hosted.alloy
+++ b/docker-compose/common/config/alloy/modules/provider/self_hosted.alloy
@@ -8,28 +8,28 @@ declare "self_hosted" {
/********************************************
* ARGUMENTS
********************************************/
- argument "metrics_endpoint" {
+ argument "metrics_endpoint_url" {
comment = "Where to send collected metrics."
optional = true
- default = coalesce(env("SELF_HOSTED_METRICS_ENDPOINT"), "http://mimir:8080")
+ default = coalesce(env("SELF_HOSTED_METRICS_ENDPOINT_URL"), "http://mimir:8080/api/v1/push")
}
- argument "logs_endpoint" {
+ argument "logs_endpoint_url" {
comment = "Where to send collected logs."
optional = true
- default = coalesce(env("SELF_HOSTED_LOGS_ENDPOINT"), "http://loki:3100")
+ default = coalesce(env("SELF_HOSTED_LOGS_ENDPOINT_URL"), "http://loki:3100/loki/api/v1/push")
}
- argument "traces_endpoint" {
+ argument "traces_endpoint_url" {
comment = "Where to send collected traces."
optional = true
- default = coalesce(env("SELF_HOSTED_TRACES_ENDPOINT"), "http://tempo:4318")
+ default = coalesce(env("SELF_HOSTED_TRACES_ENDPOINT_URL"), "http://tempo:4318")
}
- argument "profiles_endpoint" {
+ argument "profiles_endpoint_url" {
comment = "Where to send collected profiles."
optional = true
- default = coalesce(env("SELF_HOSTED_PROFILES_ENDPOINT"), "http://pyroscope:4040")
+ default = coalesce(env("SELF_HOSTED_PROFILES_ENDPOINT_URL"), "http://pyroscope:4040")
}
/********************************************
@@ -37,7 +37,7 @@ declare "self_hosted" {
********************************************/
prometheus.remote_write "self_hosted" {
endpoint {
- url = argument.metrics_endpoint.value + "/api/v1/push"
+ url = argument.metrics_endpoint_url.value
send_native_histograms = true
basic_auth {
@@ -50,7 +50,7 @@ declare "self_hosted" {
loki.write "self_hosted" {
endpoint {
- url = argument.logs_endpoint.value + "/loki/api/v1/push"
+ url = argument.logs_endpoint_url.value
basic_auth {
password_file = coalesce(env("SELF_HOSTED_LOGS_BASIC_AUTH_PASSWORD_FILE"), env("SELF_HOSTED_BASIC_AUTH_PASSWORD_FILE"))
@@ -67,7 +67,7 @@ declare "self_hosted" {
otelcol.exporter.otlphttp "self_hosted" {
client {
- endpoint = argument.traces_endpoint.value
+ endpoint = argument.traces_endpoint_url.value
auth = otelcol.auth.basic.self_hosted.handler
tls {
@@ -79,7 +79,7 @@ declare "self_hosted" {
pyroscope.write "self_hosted" {
endpoint {
- url = argument.profiles_endpoint.value
+ url = argument.profiles_endpoint_url.value
basic_auth {
password_file = coalesce(env("SELF_HOSTED_PROFILES_BASIC_AUTH_PASSWORD_FILE"), env("SELF_HOSTED_BASIC_AUTH_PASSWORD_FILE"))
diff --git a/docker-compose/common/config/alloy/profiles.alloy b/docker-compose/common/config/alloy/profiles.alloy
index f5fd07db..9788b28e 100644
--- a/docker-compose/common/config/alloy/profiles.alloy
+++ b/docker-compose/common/config/alloy/profiles.alloy
@@ -12,8 +12,8 @@ import.file "provider" {
// get lgtmp receivers provider
provider.self_hosted "compose" {
- metrics_endpoint = "http://gateway:8080"
- profiles_endpoint = "http://gateway:4040"
+ metrics_endpoint_url = "http://gateway:8080/api/v1/push"
+ profiles_endpoint_url = "http://gateway:4040"
}
/********************************************
diff --git a/docker-compose/common/config/alloy/traces.alloy b/docker-compose/common/config/alloy/traces.alloy
index 481723d2..58016919 100644
--- a/docker-compose/common/config/alloy/traces.alloy
+++ b/docker-compose/common/config/alloy/traces.alloy
@@ -12,9 +12,9 @@ import.file "provider" {
// get lgtmp receivers provider
provider.self_hosted "compose" {
- logs_endpoint = "http://gateway:3100"
- metrics_endpoint = "http://gateway:8080"
- traces_endpoint = "http://gateway:4318"
+ logs_endpoint_url = "http://gateway:3100/loki/api/v1/push"
+ metrics_endpoint_url = "http://gateway:8080/api/v1/push"
+ traces_endpoint_url = "http://gateway:4318"
}
/********************************************
@@ -31,6 +31,14 @@ traces.pat "all" {
traces_forward_to = [provider.self_hosted.compose.traces_receiver]
}
+tracing {
+ // Write all spans. Don't do this in production!
+ sampling_fraction = 1
+
+ // Forward Alloy internal spans to traces process.
+ write_to = [traces.pat.all.alloy_traces_input]
+}
+
/********************************************
* Metrics
********************************************/
diff --git a/docker-compose/microservices-mode/logs/compose.yaml b/docker-compose/microservices-mode/logs/compose.yaml
index 468e12c4..362f422f 100644
--- a/docker-compose/microservices-mode/logs/compose.yaml
+++ b/docker-compose/microservices-mode/logs/compose.yaml
@@ -21,7 +21,7 @@ x-labels: &loki-labels
# Configure a check that's run to determine whether or not containers for this service are "healthy".
# docs: https://docs.docker.com/compose/compose-file/compose-file-v3/#healthcheck
x-healthcheck: &status-healthcheck
- interval: 5s
+ interval: 3s
timeout: 2s
retries: 10
@@ -51,7 +51,9 @@ services:
- LOKI_COMPACTOR_HOST=compactor
healthcheck:
test: [ "CMD-SHELL", "wget --no-verbose --tries=1 --spider http://localhost:3100/ || exit 1" ]
- <<: *status-healthcheck
+ interval: 3s
+ timeout: 1s
+ retries: 20
ports:
- "33100:3100"
diff --git a/docker-compose/microservices-mode/metrics/compose.yaml b/docker-compose/microservices-mode/metrics/compose.yaml
index de567b7e..63f97103 100644
--- a/docker-compose/microservices-mode/metrics/compose.yaml
+++ b/docker-compose/microservices-mode/metrics/compose.yaml
@@ -15,7 +15,7 @@ include:
# Configure a check that's run to determine whether or not containers for this service are "healthy".
# docs: https://docs.docker.com/compose/compose-file/compose-file-v3/#healthcheck
x-healthcheck: &status-healthcheck
- interval: 5s
+ interval: 3s
timeout: 2s
retries: 10
@@ -42,7 +42,9 @@ services:
- MIMIR_COMPACTOR_HOST=compactor
healthcheck:
test: [ "CMD-SHELL", "wget --no-verbose --tries=1 --spider http://localhost:8080/ || exit 1" ]
- <<: *status-healthcheck
+ interval: 3s
+ timeout: 1s
+ retries: 20
ports:
- "38080:8080"
diff --git a/docker-compose/microservices-mode/profiles/compose.yaml b/docker-compose/microservices-mode/profiles/compose.yaml
index 60a99fe9..1876b2a0 100644
--- a/docker-compose/microservices-mode/profiles/compose.yaml
+++ b/docker-compose/microservices-mode/profiles/compose.yaml
@@ -23,7 +23,7 @@ x-labels: &profiles-labels
# Configure a check that's run to determine whether or not containers for this service are "healthy".
# docs: https://docs.docker.com/compose/compose-file/compose-file-v3/#healthcheck
x-healthcheck: &status-healthcheck
- interval: 5s
+ interval: 3s
timeout: 2s
retries: 10
@@ -49,7 +49,9 @@ services:
- PYROSCOPE_QUERY_FRONTEND_HOST=query-frontend
healthcheck:
test: [ "CMD-SHELL", "wget --no-verbose --tries=1 --spider http://localhost:4040/ || exit 1" ]
- <<: *status-healthcheck
+ interval: 3s
+ timeout: 1s
+ retries: 20
ports:
- "34040:4040"
diff --git a/docker-compose/microservices-mode/traces/compose.yaml b/docker-compose/microservices-mode/traces/compose.yaml
index fffd8ed9..c39634b9 100644
--- a/docker-compose/microservices-mode/traces/compose.yaml
+++ b/docker-compose/microservices-mode/traces/compose.yaml
@@ -24,7 +24,7 @@ x-environment: &jaeger-environment
# Configure a check that's run to determine whether or not containers for this service are "healthy".
# docs: https://docs.docker.com/compose/compose-file/compose-file-v3/#healthcheck
x-healthcheck: &status-healthcheck
- interval: 5s
+ interval: 3s
timeout: 2s
retries: 10
@@ -53,7 +53,9 @@ services:
- TEMPO_COMPACTOR_HOST=compactor
healthcheck:
test: [ "CMD-SHELL", "wget --no-verbose --tries=1 --spider http://localhost:3200/ || exit 1" ]
- <<: *status-healthcheck
+ interval: 3s
+ timeout: 1s
+ retries: 20
ports:
- "33200:3200"
diff --git a/docker-compose/monolithic-mode/all-in-one/compose.yaml b/docker-compose/monolithic-mode/all-in-one/compose.yaml
index 9a317468..84a6b74e 100644
--- a/docker-compose/monolithic-mode/all-in-one/compose.yaml
+++ b/docker-compose/monolithic-mode/all-in-one/compose.yaml
@@ -28,9 +28,9 @@ x-environment: &jaeger-environment
# Configure a check that's run to determine whether or not containers for this service are "healthy".
# docs: https://docs.docker.com/compose/compose-file/compose-file-v3/#healthcheck
x-healthcheck: &status-healthcheck
- interval: 5s
- timeout: 2s
- retries: 10
+ interval: 2s
+ timeout: 1s
+ retries: 15
configs:
alloy_config_file:
@@ -52,14 +52,15 @@ services:
- ../../common/config/pyroscope/gateway_pyroscope.conf:/etc/nginx/templates/gateway_pyroscope.conf.template
healthcheck:
test: [ "CMD-SHELL", "wget --no-verbose --tries=1 --spider http://localhost:8080/ || exit 1" ]
- <<: *status-healthcheck
+ interval: 3s
+ timeout: 1s
+ retries: 20
loki:
labels:
<<: *profiles-labels
- profiles.grafana.com/service_name: loki
metrics.grafana.com/scrape: false
- logs.grafana.com/log-format: json
+ profiles.grafana.com/service_name: loki
depends_on: { minio: { condition: service_healthy } }
image: ${LOKI_IMAGE:-docker.io/grafana/loki:3.0.0}
volumes:
@@ -85,9 +86,8 @@ services:
tempo:
labels:
<<: *profiles-labels
- profiles.grafana.com/service_name: tempo
metrics.grafana.com/scrape: false
- logs.grafana.com/log-format: logfmt
+ profiles.grafana.com/service_name: tempo
depends_on: { minio: { condition: service_healthy }, mimir: { condition: service_healthy } }
image: ${TEMPO_IMAGE:-docker.io/grafana/tempo:2.4.1}
volumes:
@@ -110,8 +110,8 @@ services:
mimir:
labels:
<<: *profiles-labels
+ metrics.grafana.com/scrape: false
profiles.grafana.com/service_name: mimir
- logs.grafana.com/log-format: logfmt
depends_on: { minio: { condition: service_healthy } }
image: ${MIMIR_IMAGE:-docker.io/grafana/mimir:2.12.0}
volumes:
@@ -155,10 +155,9 @@ services:
pyroscope:
labels:
metrics.grafana.com/scrape: false
- logs.grafana.com/log-format: logfmt
+ profiles.grafana.com/service_name: pyroscope
depends_on: { minio: { condition: service_healthy } }
image: ${PYROSCOPE_IMAGE:-docker.io/grafana/pyroscope:1.5.0}
- container_name: pyroscope
volumes:
- ../../common/config/pyroscope:/etc/pyroscope
- pyroscope_data:/data
diff --git a/docker-compose/monolithic-mode/logs/compose.yaml b/docker-compose/monolithic-mode/logs/compose.yaml
index 7303972a..36a9183c 100644
--- a/docker-compose/monolithic-mode/logs/compose.yaml
+++ b/docker-compose/monolithic-mode/logs/compose.yaml
@@ -23,7 +23,6 @@ services:
gateway:
labels:
metrics.grafana.com/scrape: false
- logs.grafana.com/log-format: nginx
depends_on: { loki: { condition: service_healthy } }
image: ${NGINX_IMAGE:-docker.io/nginxinc/nginx-unprivileged:1.25-alpine}
volumes:
@@ -33,6 +32,6 @@ services:
- ../../common/config/mimir/gateway_mimir.conf:/etc/nginx/templates/gateway_mimir.conf.template
healthcheck:
test: [ "CMD-SHELL", "wget --no-verbose --tries=1 --spider http://localhost:3100/ || exit 1" ]
- interval: 5s
- timeout: 2s
- retries: 10
+ interval: 3s
+ timeout: 1s
+ retries: 20
diff --git a/docker-compose/monolithic-mode/metrics/compose.yaml b/docker-compose/monolithic-mode/metrics/compose.yaml
index df69648e..2197f428 100644
--- a/docker-compose/monolithic-mode/metrics/compose.yaml
+++ b/docker-compose/monolithic-mode/metrics/compose.yaml
@@ -30,6 +30,6 @@ services:
- ../../common/config/mimir/gateway_mimir.conf:/etc/nginx/templates/gateway_mimir.conf.template
healthcheck:
test: [ "CMD-SHELL", "wget --no-verbose --tries=1 --spider http://localhost:8080/ || exit 1" ]
- interval: 5s
- timeout: 2s
- retries: 10
+ interval: 3s
+ timeout: 1s
+ retries: 20
diff --git a/docker-compose/monolithic-mode/profiles/compose.yaml b/docker-compose/monolithic-mode/profiles/compose.yaml
index 21aeb78c..0d3b52e5 100644
--- a/docker-compose/monolithic-mode/profiles/compose.yaml
+++ b/docker-compose/monolithic-mode/profiles/compose.yaml
@@ -32,6 +32,6 @@ services:
- ../../common/config/mimir/gateway_mimir.conf:/etc/nginx/templates/gateway_mimir.conf.template
healthcheck:
test: [ "CMD-SHELL", "wget --no-verbose --tries=1 --spider http://localhost:4040/ || exit 1" ]
- interval: 5s
- timeout: 2s
- retries: 10
+ interval: 3s
+ timeout: 1s
+ retries: 20
diff --git a/docker-compose/monolithic-mode/traces/compose.yaml b/docker-compose/monolithic-mode/traces/compose.yaml
index b73266c0..0b08b3f0 100644
--- a/docker-compose/monolithic-mode/traces/compose.yaml
+++ b/docker-compose/monolithic-mode/traces/compose.yaml
@@ -11,23 +11,11 @@ include:
- path: ../../common/compose-include/minio.yaml
- path: ../../common/compose-include/memcached.yaml
- path: ../../common/compose-include/loki.yaml
+ - path: ../../common/compose-include/tempo.yaml
- path: ../../common/compose-include/mimir.yaml
- path: ../../common/compose-include/grafana.yaml
- path: ../../common/compose-include/alloy.yaml
-x-environment: &jaeger-environment
- JAEGER_AGENT_HOST: alloy
- JAEGER_AGENT_PORT: 6831
- JAEGER_SAMPLER_TYPE: const
- JAEGER_SAMPLER_PARAM: 1
-
-# Configure a check that's run to determine whether or not containers for this service are "healthy".
-# docs: https://docs.docker.com/compose/compose-file/compose-file-v3/#healthcheck
-x-healthcheck: &status-healthcheck
- interval: 5s
- timeout: 2s
- retries: 10
-
configs:
alloy_config_file:
file: ../../common/config/alloy/traces.alloy
@@ -47,25 +35,6 @@ services:
- ../../common/config/loki/gateway_loki.conf:/etc/nginx/templates/gateway_loki.conf.template
healthcheck:
test: [ "CMD-SHELL", "wget --no-verbose --tries=1 --spider http://localhost:3200/ || exit 1" ]
- <<: *status-healthcheck
-
- tempo:
- depends_on: { minio: { condition: service_healthy } }
- image: ${TEMPO_IMAGE:-docker.io/grafana/tempo:2.4.1}
- restart: always
- volumes:
- - ../../common/config/tempo:/etc/tempo
- command:
- - -config.file=/etc/tempo/monolithic-mode-traces.yaml
- - -target=all
- - -config.expand-env=true
- environment:
- <<: *jaeger-environment
- JAEGER_TAGS: app=tempo
- healthcheck:
- test: [ "CMD-SHELL", "wget --no-verbose --tries=1 --spider http://localhost:3200/ready || exit 1" ]
- <<: *status-healthcheck
- start_period: 10s
- # expose 33200 port so we can directly access tempo inside container
- ports:
- - "33200:3200"
+ interval: 3s
+ timeout: 1s
+ retries: 20
diff --git a/docker-compose/read-write-mode/logs/compose.yaml b/docker-compose/read-write-mode/logs/compose.yaml
index dffa6f7a..7bb47b79 100644
--- a/docker-compose/read-write-mode/logs/compose.yaml
+++ b/docker-compose/read-write-mode/logs/compose.yaml
@@ -14,13 +14,10 @@ include:
- path: ../../common/compose-include/grafana.yaml
- path: ../../common/compose-include/alloy.yaml
-x-labels: &loki-labels
- logs.grafana.com/log-format: json
-
# Configure a check that's run to determine whether or not containers for this service are "healthy".
# docs: https://docs.docker.com/compose/compose-file/compose-file-v3/#healthcheck
x-healthcheck: &status-healthcheck
- interval: 5s
+ interval: 3s
timeout: 2s
retries: 10
@@ -33,7 +30,6 @@ services:
# https://github.com/qclaogui/codelab-monitoring/blob/main/docker-compose/common/config/alloy/modules/compose/README.md
labels:
metrics.grafana.com/scrape: false
- logs.grafana.com/log-format: nginx
depends_on: { loki-write: { condition: service_healthy } }
image: ${NGINX_IMAGE:-docker.io/nginxinc/nginx-unprivileged:1.25-alpine}
volumes:
@@ -50,12 +46,13 @@ services:
- LOKI_COMPACTOR_HOST=loki-backend
healthcheck:
test: [ "CMD-SHELL", "wget --no-verbose --tries=1 --spider http://localhost:3100/ || exit 1" ]
- <<: *status-healthcheck
+ interval: 3s
+ timeout: 1s
+ retries: 20
ports:
- "33100:3100"
loki-read:
- labels: *loki-labels
depends_on: { minio: { condition: service_healthy } }
image: &lokiImage ${LOKI_IMAGE:-docker.io/grafana/loki:3.0.0}
volumes:
@@ -76,7 +73,6 @@ services:
- loki-memberlist
loki-write:
- labels: *loki-labels
depends_on: { minio: { condition: service_healthy } }
image: *lokiImage
volumes:
@@ -96,7 +92,6 @@ services:
- loki-memberlist
loki-backend:
- labels: *loki-labels
depends_on: { minio: { condition: service_healthy } }
image: *lokiImage
deploy:
diff --git a/docker-compose/read-write-mode/metrics/compose.yaml b/docker-compose/read-write-mode/metrics/compose.yaml
index 6b92f9ff..11441aa6 100644
--- a/docker-compose/read-write-mode/metrics/compose.yaml
+++ b/docker-compose/read-write-mode/metrics/compose.yaml
@@ -15,7 +15,7 @@ include:
# Configure a check that's run to determine whether or not containers for this service are "healthy".
# docs: https://docs.docker.com/compose/compose-file/compose-file-v3/#healthcheck
x-healthcheck: &status-healthcheck
- interval: 5s
+ interval: 3s
timeout: 2s
retries: 10
@@ -27,7 +27,7 @@ services:
gateway:
# https://github.com/qclaogui/codelab-monitoring/blob/main/docker-compose/common/config/alloy/modules/compose/README.md
labels:
- - metrics.grafana.com/scrape=false
+ metrics.grafana.com/scrape: false
depends_on: { mimir-write: { condition: service_healthy }, mimir-backend: { condition: service_healthy } }
image: ${NGINX_IMAGE:-docker.io/nginxinc/nginx-unprivileged:1.25-alpine}
volumes:
@@ -42,7 +42,9 @@ services:
- MIMIR_COMPACTOR_HOST=mimir-backend
healthcheck:
test: [ "CMD-SHELL", "wget --no-verbose --tries=1 --spider http://localhost:8080/ || exit 1" ]
- <<: *status-healthcheck
+ interval: 3s
+ timeout: 1s
+ retries: 20
ports:
- "38080:8080"
diff --git a/go.mod b/go.mod
index fac774c5..8515d8ca 100644
--- a/go.mod
+++ b/go.mod
@@ -7,25 +7,51 @@ require (
github.com/MakeNowJust/heredoc v1.0.0
github.com/blang/semver v3.5.1+incompatible
github.com/dave/jennifer v1.7.0
+ github.com/prometheus/client_golang v1.19.0
+ github.com/prometheus/common v0.52.3
+ github.com/prometheus/prometheus v0.51.2
github.com/spf13/cobra v1.8.0
+ github.com/stretchr/testify v1.9.0
+ gopkg.in/yaml.v2 v2.4.0
)
require (
github.com/99designs/gqlgen v0.17.45 // indirect
github.com/Khan/genqlient v0.7.0 // indirect
github.com/adrg/xdg v0.4.0 // indirect
+ github.com/beorn7/perks v1.0.1 // indirect
+ github.com/cespare/xxhash/v2 v2.2.0 // indirect
+ github.com/davecgh/go-spew v1.1.2-0.20180830191138-d8f796af33cc // indirect
github.com/go-logr/logr v1.4.1 // indirect
github.com/go-logr/stdr v1.2.2 // indirect
+ github.com/gogo/protobuf v1.3.2 // indirect
+ github.com/golang/protobuf v1.5.3 // indirect
github.com/google/uuid v1.6.0 // indirect
+ github.com/grafana/regexp v0.0.0-20221122212121-6b5c0a4cb7fd // indirect
github.com/inconshreveable/mousetrap v1.1.0 // indirect
+ github.com/jpillora/backoff v1.0.0 // indirect
+ github.com/json-iterator/go v1.1.12 // indirect
+ github.com/kr/text v0.2.0 // indirect
github.com/mitchellh/go-homedir v1.1.0 // indirect
+ github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd // indirect
+ github.com/modern-go/reflect2 v1.0.2 // indirect
+ github.com/mwitkow/go-conntrack v0.0.0-20190716064945-2f068394615f // indirect
+ github.com/pmezard/go-difflib v1.0.1-0.20181226105442-5d4384ee4fb2 // indirect
+ github.com/prometheus/client_model v0.6.0 // indirect
+ github.com/prometheus/procfs v0.12.0 // indirect
github.com/sosodev/duration v1.2.0 // indirect
github.com/spf13/pflag v1.0.5 // indirect
github.com/vektah/gqlparser/v2 v2.5.11 // indirect
- go.opentelemetry.io/otel v1.24.0 // indirect
- go.opentelemetry.io/otel/metric v1.24.0 // indirect
- go.opentelemetry.io/otel/trace v1.24.0 // indirect
- golang.org/x/exp v0.0.0-20240404231335-c0f41cb1a7a0 // indirect
+ go.opentelemetry.io/otel v1.25.0 // indirect
+ go.opentelemetry.io/otel/metric v1.25.0 // indirect
+ go.opentelemetry.io/otel/trace v1.25.0 // indirect
+ golang.org/x/exp v0.0.0-20240409090435-93d18d7e34b8 // indirect
+ golang.org/x/net v0.22.0 // indirect
+ golang.org/x/oauth2 v0.18.0 // indirect
golang.org/x/sync v0.7.0 // indirect
golang.org/x/sys v0.19.0 // indirect
+ golang.org/x/text v0.14.0 // indirect
+ google.golang.org/appengine v1.6.8 // indirect
+ google.golang.org/protobuf v1.33.0 // indirect
+ gopkg.in/yaml.v3 v3.0.1 // indirect
)
diff --git a/go.sum b/go.sum
index 4a8bf0a6..59b9442a 100644
--- a/go.sum
+++ b/go.sum
@@ -10,29 +10,81 @@ github.com/adrg/xdg v0.4.0 h1:RzRqFcjH4nE5C6oTAxhBtoE2IRyjBSa62SCbyPidvls=
github.com/adrg/xdg v0.4.0/go.mod h1:N6ag73EX4wyxeaoeHctc1mas01KZgsj5tYiAIwqJE/E=
github.com/andreyvit/diff v0.0.0-20170406064948-c7f18ee00883 h1:bvNMNQO63//z+xNgfBlViaCIJKLlCJ6/fmUseuG0wVQ=
github.com/andreyvit/diff v0.0.0-20170406064948-c7f18ee00883/go.mod h1:rCTlJbsFo29Kk6CurOXKm700vrz8f0KW0JNfpkRJY/8=
+github.com/beorn7/perks v1.0.1 h1:VlbKKnNfV8bJzeqoa4cOKqO6bYr3WgKZxO8Z16+hsOM=
+github.com/beorn7/perks v1.0.1/go.mod h1:G2ZrVWU2WbWT9wwq4/hrbKbnv/1ERSJQ0ibhJ6rlkpw=
github.com/blang/semver v3.5.1+incompatible h1:cQNTCjp13qL8KC3Nbxr/y2Bqb63oX6wdnnjpJbkM4JQ=
github.com/blang/semver v3.5.1+incompatible/go.mod h1:kRBLl5iJ+tD4TcOOxsy/0fnwebNt5EWlYSAyrTnjyyk=
+github.com/cespare/xxhash/v2 v2.2.0 h1:DC2CZ1Ep5Y4k3ZQ899DldepgrayRUGE6BBZ/cd9Cj44=
+github.com/cespare/xxhash/v2 v2.2.0/go.mod h1:VGX0DQ3Q6kWi7AoAeZDth3/j3BFtOZR5XLFGgcrjCOs=
github.com/cpuguy83/go-md2man/v2 v2.0.3/go.mod h1:tgQtvFlXSQOSOSIRvRPT7W67SCa46tRHOmNcaadrF8o=
+github.com/creack/pty v1.1.9/go.mod h1:oKZEueFk5CKHvIhNR5MUki03XCEU+Q6VDXinZuGJ33E=
github.com/dave/jennifer v1.7.0 h1:uRbSBH9UTS64yXbh4FrMHfgfY762RD+C7bUPKODpSJE=
github.com/dave/jennifer v1.7.0/go.mod h1:nXbxhEmQfOZhWml3D1cDK5M1FLnMSozpbFN/m3RmGZc=
github.com/davecgh/go-spew v1.1.0/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38=
-github.com/davecgh/go-spew v1.1.1 h1:vj9j/u1bqnvCEfJOwUhtlOARqs3+rkHYY13jYWTU97c=
github.com/davecgh/go-spew v1.1.1/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38=
+github.com/davecgh/go-spew v1.1.2-0.20180830191138-d8f796af33cc h1:U9qPSI2PIWSS1VwoXQT9A3Wy9MM3WgvqSxFWenqJduM=
+github.com/davecgh/go-spew v1.1.2-0.20180830191138-d8f796af33cc/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38=
+github.com/go-kit/log v0.2.1 h1:MRVx0/zhvdseW+Gza6N9rVzU/IVzaeE1SFI4raAhmBU=
+github.com/go-kit/log v0.2.1/go.mod h1:NwTd00d/i8cPZ3xOwwiv2PO5MOcx78fFErGNcVmBjv0=
+github.com/go-logfmt/logfmt v0.6.0 h1:wGYYu3uicYdqXVgoYbvnkrPVXkuLM1p1ifugDMEdRi4=
+github.com/go-logfmt/logfmt v0.6.0/go.mod h1:WYhtIu8zTZfxdn5+rREduYbwxfcBr/Vr6KEVveWlfTs=
github.com/go-logr/logr v1.2.2/go.mod h1:jdQByPbusPIv2/zmleS9BjJVeZ6kBagPoEUsqbVz/1A=
github.com/go-logr/logr v1.4.1 h1:pKouT5E8xu9zeFC39JXRDukb6JFQPXM5p5I91188VAQ=
github.com/go-logr/logr v1.4.1/go.mod h1:9T104GzyrTigFIr8wt5mBrctHMim0Nb2HLGrmQ40KvY=
github.com/go-logr/stdr v1.2.2 h1:hSWxHoqTgW2S2qGc0LTAI563KZ5YKYRhT3MFKZMbjag=
github.com/go-logr/stdr v1.2.2/go.mod h1:mMo/vtBO5dYbehREoey6XUKy/eSumjCCveDpRre4VKE=
+github.com/gogo/protobuf v1.3.2 h1:Ov1cvc58UF3b5XjBnZv7+opcTcQFZebYjWzi34vdm4Q=
+github.com/gogo/protobuf v1.3.2/go.mod h1:P1XiOD3dCwIKUDQYPy72D8LYyHL2YPYrpS2s69NZV8Q=
+github.com/golang/protobuf v1.5.0/go.mod h1:FsONVRAS9T7sI+LIUmWTfcYkHO4aIWwzhcaSAoJOfIk=
+github.com/golang/protobuf v1.5.2/go.mod h1:XVQd3VNwM+JqD3oG2Ue2ip4fOMUkwXdXDdiuN0vRsmY=
+github.com/golang/protobuf v1.5.3 h1:KhyjKVUg7Usr/dYsdSqoFveMYd5ko72D+zANwlG1mmg=
+github.com/golang/protobuf v1.5.3/go.mod h1:XVQd3VNwM+JqD3oG2Ue2ip4fOMUkwXdXDdiuN0vRsmY=
+github.com/google/go-cmp v0.5.5/go.mod h1:v8dTdLbMG2kIc/vJvl+f65V22dbkXbowE6jgT/gNBxE=
github.com/google/go-cmp v0.6.0 h1:ofyhxvXcZhMsU5ulbFiLKl/XBFqE1GSq7atu8tAmTRI=
github.com/google/go-cmp v0.6.0/go.mod h1:17dUlkBOakJ0+DkrSSNjCkIjxS6bF9zb3elmeNGIjoY=
+github.com/google/gofuzz v1.0.0/go.mod h1:dBl0BpW6vV/+mYPU4Po3pmUjxk6FQPldtuIdl/M65Eg=
github.com/google/uuid v1.6.0 h1:NIvaJDMOsjHA8n1jAhLSgzrAzy1Hgr+hNrb57e+94F0=
github.com/google/uuid v1.6.0/go.mod h1:TIyPZe4MgqvfeYDBFedMoGGpEw/LqOeaOT+nhxU+yHo=
+github.com/grafana/regexp v0.0.0-20221122212121-6b5c0a4cb7fd h1:PpuIBO5P3e9hpqBD0O/HjhShYuM6XE0i/lbE6J94kww=
+github.com/grafana/regexp v0.0.0-20221122212121-6b5c0a4cb7fd/go.mod h1:M5qHK+eWfAv8VR/265dIuEpL3fNfeC21tXXp9itM24A=
github.com/inconshreveable/mousetrap v1.1.0 h1:wN+x4NVGpMsO7ErUn/mUI3vEoE6Jt13X2s0bqwp9tc8=
github.com/inconshreveable/mousetrap v1.1.0/go.mod h1:vpF70FUmC8bwa3OWnCshd2FqLfsEA9PFc4w1p2J65bw=
+github.com/jpillora/backoff v1.0.0 h1:uvFg412JmmHBHw7iwprIxkPMI+sGQ4kzOWsMeHnm2EA=
+github.com/jpillora/backoff v1.0.0/go.mod h1:J/6gKK9jxlEcS3zixgDgUAsiuZ7yrSoa/FX5e0EB2j4=
+github.com/json-iterator/go v1.1.12 h1:PV8peI4a0ysnczrg+LtxykD8LfKY9ML6u2jnxaEnrnM=
+github.com/json-iterator/go v1.1.12/go.mod h1:e30LSqwooZae/UwlEbR2852Gd8hjQvJoHmT4TnhNGBo=
+github.com/kisielk/errcheck v1.5.0/go.mod h1:pFxgyoBC7bSaBwPgfKdkLd5X25qrDl4LWUI2bnpBCr8=
+github.com/kisielk/gotool v1.0.0/go.mod h1:XhKaO+MFFWcvkIS/tQcRk01m1F5IRFswLeQ+oQHNcck=
+github.com/klauspost/compress v1.17.7 h1:ehO88t2UGzQK66LMdE8tibEd1ErmzZjNEqWkjLAKQQg=
+github.com/klauspost/compress v1.17.7/go.mod h1:Di0epgTjJY877eYKx5yC51cX2A2Vl2ibi7bDH9ttBbw=
+github.com/kr/pretty v0.3.1 h1:flRD4NNwYAUpkphVc1HcthR4KEIFJ65n8Mw5qdRn3LE=
+github.com/kr/pretty v0.3.1/go.mod h1:hoEshYVHaxMs3cyo3Yncou5ZscifuDolrwPKZanG3xk=
+github.com/kr/text v0.2.0 h1:5Nx0Ya0ZqY2ygV366QzturHI13Jq95ApcVaJBhpS+AY=
+github.com/kr/text v0.2.0/go.mod h1:eLer722TekiGuMkidMxC/pM04lWEeraHUUmBw8l2grE=
github.com/mitchellh/go-homedir v1.1.0 h1:lukF9ziXFxDFPkA1vsr5zpc1XuPDn/wFntq5mG+4E0Y=
github.com/mitchellh/go-homedir v1.1.0/go.mod h1:SfyaCUpYCn1Vlf4IUYiD9fPX4A5wJrkLzIz1N1q0pr0=
-github.com/pmezard/go-difflib v1.0.0 h1:4DBwDE0NGyQoBHbLQYPwSUPoCMWR5BEzIk/f1lZbAQM=
+github.com/modern-go/concurrent v0.0.0-20180228061459-e0a39a4cb421/go.mod h1:6dJC0mAP4ikYIbvyc7fijjWJddQyLn8Ig3JB5CqoB9Q=
+github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd h1:TRLaZ9cD/w8PVh93nsPXa1VrQ6jlwL5oN8l14QlcNfg=
+github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd/go.mod h1:6dJC0mAP4ikYIbvyc7fijjWJddQyLn8Ig3JB5CqoB9Q=
+github.com/modern-go/reflect2 v1.0.2 h1:xBagoLtFs94CBntxluKeaWgTMpvLxC4ur3nMaC9Gz0M=
+github.com/modern-go/reflect2 v1.0.2/go.mod h1:yWuevngMOJpCy52FWWMvUC8ws7m/LJsjYzDa0/r8luk=
+github.com/mwitkow/go-conntrack v0.0.0-20190716064945-2f068394615f h1:KUppIJq7/+SVif2QVs3tOP0zanoHgBEVAwHxUSIzRqU=
+github.com/mwitkow/go-conntrack v0.0.0-20190716064945-2f068394615f/go.mod h1:qRWi+5nqEBWmkhHvq77mSJWrCKwh8bxhgT7d/eI7P4U=
github.com/pmezard/go-difflib v1.0.0/go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZNVY4sRDYZ/4=
+github.com/pmezard/go-difflib v1.0.1-0.20181226105442-5d4384ee4fb2 h1:Jamvg5psRIccs7FGNTlIRMkT8wgtp5eCXdBlqhYGL6U=
+github.com/pmezard/go-difflib v1.0.1-0.20181226105442-5d4384ee4fb2/go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZNVY4sRDYZ/4=
+github.com/prometheus/client_golang v1.19.0 h1:ygXvpU1AoN1MhdzckN+PyD9QJOSD4x7kmXYlnfbA6JU=
+github.com/prometheus/client_golang v1.19.0/go.mod h1:ZRM9uEAypZakd+q/x7+gmsvXdURP+DABIEIjnmDdp+k=
+github.com/prometheus/client_model v0.6.0 h1:k1v3CzpSRUTrKMppY35TLwPvxHqBu0bYgxZzqGIgaos=
+github.com/prometheus/client_model v0.6.0/go.mod h1:NTQHnmxFpouOD0DpvP4XujX3CdOAGQPoaGhyTchlyt8=
+github.com/prometheus/common v0.52.3 h1:5f8uj6ZwHSscOGNdIQg6OiZv/ybiK2CO2q2drVZAQSA=
+github.com/prometheus/common v0.52.3/go.mod h1:BrxBKv3FWBIGXw89Mg1AeBq7FSyRzXWI3l3e7W3RN5U=
+github.com/prometheus/procfs v0.12.0 h1:jluTpSng7V9hY0O2R9DzzJHYb2xULk9VTR1V1R/k6Bo=
+github.com/prometheus/procfs v0.12.0/go.mod h1:pcuDEFsWDnvcgNzo4EEweacyhjeA9Zk3cnaOZAZEfOo=
+github.com/prometheus/prometheus v0.51.2 h1:U0faf1nT4CB9DkBW87XLJCBi2s8nwWXdTbyzRUAkX0w=
+github.com/prometheus/prometheus v0.51.2/go.mod h1:yv4MwOn3yHMQ6MZGHPg/U7Fcyqf+rxqiZfSur6myVtc=
+github.com/rogpeppe/go-internal v1.11.0 h1:cWPaGQEPrBb5/AsnsZesgZZ9yb1OQ+GOISoDNXVBh4M=
+github.com/rogpeppe/go-internal v1.11.0/go.mod h1:ddIwULY96R17DhadqLgMfk9H9tvdUzkipdSkR5nkCZA=
github.com/russross/blackfriday/v2 v2.1.0/go.mod h1:+Rmxgy9KzJVeS9/2gXHxylqXiyQDYRxCVz55jmeOWTM=
github.com/sergi/go-diff v1.3.1 h1:xkr+Oxo4BOQKmkn/B9eMK0g5Kg/983T9DqqPHwYqD+8=
github.com/sergi/go-diff v1.3.1/go.mod h1:aMJSSKb2lpPvRNec0+w3fl7LP9IOFzdc9Pa4NFbPK1I=
@@ -43,25 +95,86 @@ github.com/spf13/cobra v1.8.0/go.mod h1:WXLWApfZ71AjXPya3WOlMsY9yMs7YeiHhFVlvLyh
github.com/spf13/pflag v1.0.5 h1:iy+VFUOCP1a+8yFto/drg2CJ5u0yRoB7fZw3DKv/JXA=
github.com/spf13/pflag v1.0.5/go.mod h1:McXfInJRrz4CZXVZOBLb0bTZqETkiAhM9Iw0y3An2Bg=
github.com/stretchr/objx v0.1.0/go.mod h1:HFkY916IF+rwdDfMAkV7OtwuqBVzrE8GR6GFx+wExME=
+github.com/stretchr/testify v1.3.0/go.mod h1:M5WIy9Dh21IEIfnGCwXGc5bZfKNJtfHm1UVUgZn+9EI=
github.com/stretchr/testify v1.7.0/go.mod h1:6Fq8oRcR53rry900zMqJjRRixrwX3KX962/h/Wwjteg=
github.com/stretchr/testify v1.9.0 h1:HtqpIVDClZ4nwg75+f6Lvsy/wHu+3BoSGCbBAcpTsTg=
github.com/stretchr/testify v1.9.0/go.mod h1:r2ic/lqez/lEtzL7wO/rwa5dbSLXVDPFyf8C91i36aY=
github.com/vektah/gqlparser/v2 v2.5.11 h1:JJxLtXIoN7+3x6MBdtIP59TP1RANnY7pXOaDnADQSf8=
github.com/vektah/gqlparser/v2 v2.5.11/go.mod h1:1rCcfwB2ekJofmluGWXMSEnPMZgbxzwj6FaZ/4OT8Cc=
-go.opentelemetry.io/otel v1.24.0 h1:0LAOdjNmQeSTzGBzduGe/rU4tZhMwL5rWgtp9Ku5Jfo=
-go.opentelemetry.io/otel v1.24.0/go.mod h1:W7b9Ozg4nkF5tWI5zsXkaKKDjdVjpD4oAt9Qi/MArHo=
-go.opentelemetry.io/otel/metric v1.24.0 h1:6EhoGWWK28x1fbpA4tYTOWBkPefTDQnb8WSGXlc88kI=
-go.opentelemetry.io/otel/metric v1.24.0/go.mod h1:VYhLe1rFfxuTXLgj4CBiyz+9WYBA8pNGJgDcSFRKBco=
-go.opentelemetry.io/otel/trace v1.24.0 h1:CsKnnL4dUAr/0llH9FKuc698G04IrpWV0MQA/Y1YELI=
-go.opentelemetry.io/otel/trace v1.24.0/go.mod h1:HPc3Xr/cOApsBI154IU0OI0HJexz+aw5uPdbs3UCjNU=
-golang.org/x/exp v0.0.0-20240404231335-c0f41cb1a7a0 h1:985EYyeCOxTpcgOTJpflJUwOeEz0CQOdPt73OzpE9F8=
-golang.org/x/exp v0.0.0-20240404231335-c0f41cb1a7a0/go.mod h1:/lliqkxwWAhPjf5oSOIJup2XcqJaw8RGS6k3TGEc7GI=
+github.com/yuin/goldmark v1.1.27/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9decYSb74=
+github.com/yuin/goldmark v1.2.1/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9decYSb74=
+github.com/yuin/goldmark v1.4.13/go.mod h1:6yULJ656Px+3vBD8DxQVa3kxgyrAnzto9xy5taEt/CY=
+go.opentelemetry.io/otel v1.25.0 h1:gldB5FfhRl7OJQbUHt/8s0a7cE8fbsPAtdpRaApKy4k=
+go.opentelemetry.io/otel v1.25.0/go.mod h1:Wa2ds5NOXEMkCmUou1WA7ZBfLTHWIsp034OVD7AO+Vg=
+go.opentelemetry.io/otel/metric v1.25.0 h1:LUKbS7ArpFL/I2jJHdJcqMGxkRdxpPHE0VU/D4NuEwA=
+go.opentelemetry.io/otel/metric v1.25.0/go.mod h1:rkDLUSd2lC5lq2dFNrX9LGAbINP5B7WBkC78RXCpH5s=
+go.opentelemetry.io/otel/trace v1.25.0 h1:tqukZGLwQYRIFtSQM2u2+yfMVTgGVeqRLPUYx1Dq6RM=
+go.opentelemetry.io/otel/trace v1.25.0/go.mod h1:hCCs70XM/ljO+BeQkyFnbK28SBIJ/Emuha+ccrCRT7I=
+go.uber.org/goleak v1.3.0 h1:2K3zAYmnTNqV73imy9J1T3WC+gmCePx2hEGkimedGto=
+go.uber.org/goleak v1.3.0/go.mod h1:CoHD4mav9JJNrW/WLlf7HGZPjdw8EucARQHekz1X6bE=
+golang.org/x/crypto v0.0.0-20190308221718-c2843e01d9a2/go.mod h1:djNgcEr1/C05ACkg1iLfiJU5Ep61QUkGW8qpdssI0+w=
+golang.org/x/crypto v0.0.0-20191011191535-87dc89f01550/go.mod h1:yigFU9vqHzYiE8UmvKecakEJjdnWj3jj499lnFckfCI=
+golang.org/x/crypto v0.0.0-20200622213623-75b288015ac9/go.mod h1:LzIPMQfyMNhhGPhUkYOs5KpL4U8rLKemX1yGLhDgUto=
+golang.org/x/crypto v0.0.0-20210921155107-089bfa567519/go.mod h1:GvvjBRRGRdwPK5ydBHafDWAxML/pGHZbMvKqRZ5+Abc=
+golang.org/x/exp v0.0.0-20240409090435-93d18d7e34b8 h1:ESSUROHIBHg7USnszlcdmjBEwdMj9VUvU+OPk4yl2mc=
+golang.org/x/exp v0.0.0-20240409090435-93d18d7e34b8/go.mod h1:/lliqkxwWAhPjf5oSOIJup2XcqJaw8RGS6k3TGEc7GI=
+golang.org/x/mod v0.2.0/go.mod h1:s0Qsj1ACt9ePp/hMypM3fl4fZqREWJwdYDEqhRiZZUA=
+golang.org/x/mod v0.3.0/go.mod h1:s0Qsj1ACt9ePp/hMypM3fl4fZqREWJwdYDEqhRiZZUA=
+golang.org/x/mod v0.6.0-dev.0.20220419223038-86c51ed26bb4/go.mod h1:jJ57K6gSWd91VN4djpZkiMVwK6gcyfeH4XE8wZrZaV4=
+golang.org/x/net v0.0.0-20190404232315-eb5bcb51f2a3/go.mod h1:t9HGtf8HONx5eT2rtn7q6eTqICYqUVnKs3thJo3Qplg=
+golang.org/x/net v0.0.0-20190620200207-3b0461eec859/go.mod h1:z5CRVTTTmAJ677TzLLGU+0bjPO0LkuOLi4/5GtJWs/s=
+golang.org/x/net v0.0.0-20200226121028-0de0cce0169b/go.mod h1:z5CRVTTTmAJ677TzLLGU+0bjPO0LkuOLi4/5GtJWs/s=
+golang.org/x/net v0.0.0-20201021035429-f5854403a974/go.mod h1:sp8m0HH+o8qH0wwXwYZr8TS3Oi6o0r6Gce1SSxlDquU=
+golang.org/x/net v0.0.0-20210226172049-e18ecbb05110/go.mod h1:m0MpNAwzfU5UDzcl9v0D8zg8gWTRqZa9RBIspLL5mdg=
+golang.org/x/net v0.0.0-20220722155237-a158d28d115b/go.mod h1:XRhObCWvk6IyKnWLug+ECip1KBveYUHfp+8e9klMJ9c=
+golang.org/x/net v0.22.0 h1:9sGLhx7iRIHEiX0oAJ3MRZMUCElJgy7Br1nO+AMN3Tc=
+golang.org/x/net v0.22.0/go.mod h1:JKghWKKOSdJwpW2GEx0Ja7fmaKnMsbu+MWVZTokSYmg=
+golang.org/x/oauth2 v0.18.0 h1:09qnuIAgzdx1XplqJvW6CQqMCtGZykZWcXzPMPUusvI=
+golang.org/x/oauth2 v0.18.0/go.mod h1:Wf7knwG0MPoWIMMBgFlEaSUDaKskp0dCfrlJRJXbBi8=
+golang.org/x/sync v0.0.0-20190423024810-112230192c58/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM=
+golang.org/x/sync v0.0.0-20190911185100-cd5d95a43a6e/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM=
+golang.org/x/sync v0.0.0-20201020160332-67f06af15bc9/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM=
+golang.org/x/sync v0.0.0-20220722155255-886fb9371eb4/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM=
golang.org/x/sync v0.7.0 h1:YsImfSBoP9QPYL0xyKJPq0gcaJdG3rInoqxTWbfQu9M=
golang.org/x/sync v0.7.0/go.mod h1:Czt+wKu1gCyEFDUtn0jG5QVvpJ6rzVqr5aXyt9drQfk=
+golang.org/x/sys v0.0.0-20190215142949-d0b11bdaac8a/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY=
+golang.org/x/sys v0.0.0-20190412213103-97732733099d/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=
+golang.org/x/sys v0.0.0-20200930185726-fdedc70b468f/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=
+golang.org/x/sys v0.0.0-20201119102817-f84b799fce68/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=
+golang.org/x/sys v0.0.0-20210615035016-665e8c7367d1/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg=
golang.org/x/sys v0.0.0-20211025201205-69cdffdb9359/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg=
+golang.org/x/sys v0.0.0-20220520151302-bc2c85ada10a/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg=
+golang.org/x/sys v0.0.0-20220722155257-8c9f86f7a55f/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg=
golang.org/x/sys v0.19.0 h1:q5f1RH2jigJ1MoAWp2KTp3gm5zAGFUTarQZ5U386+4o=
golang.org/x/sys v0.19.0/go.mod h1:/VUhepiaJMQUp4+oa/7Zr1D23ma6VTLIYjOOTFZPUcA=
+golang.org/x/term v0.0.0-20201126162022-7de9c90e9dd1/go.mod h1:bj7SfCRtBDWHUb9snDiAeCFNEtKQo2Wmx5Cou7ajbmo=
+golang.org/x/term v0.0.0-20210927222741-03fcf44c2211/go.mod h1:jbD1KX2456YbFQfuXm/mYQcufACuNUgVhRMnK/tPxf8=
+golang.org/x/text v0.3.0/go.mod h1:NqM8EUOU14njkJ3fqMW+pc6Ldnwhi/IjpwHt7yyuwOQ=
+golang.org/x/text v0.3.3/go.mod h1:5Zoc/QRtKVWzQhOtBMvqHzDpF6irO9z98xDceosuGiQ=
+golang.org/x/text v0.3.7/go.mod h1:u+2+/6zg+i71rQMx5EYifcz6MCKuco9NR6JIITiCfzQ=
+golang.org/x/text v0.3.8/go.mod h1:E6s5w1FMmriuDzIBO73fBruAKo1PCIq6d2Q6DHfQ8WQ=
+golang.org/x/text v0.14.0 h1:ScX5w1eTa3QqT8oi6+ziP7dTV1S2+ALU0bI+0zXKWiQ=
+golang.org/x/text v0.14.0/go.mod h1:18ZOQIKpY8NJVqYksKHtTdi31H5itFRjB5/qKTNYzSU=
+golang.org/x/tools v0.0.0-20180917221912-90fa682c2a6e/go.mod h1:n7NCudcB/nEzxVGmLbDWY5pfWTLqBcC2KZ6jyYvM4mQ=
+golang.org/x/tools v0.0.0-20191119224855-298f0cb1881e/go.mod h1:b+2E5dAYhXwXZwtnZ6UAqBI28+e2cm9otk0dWdXHAEo=
+golang.org/x/tools v0.0.0-20200619180055-7c47624df98f/go.mod h1:EkVYQZoAsY45+roYkvgYkIh4xh/qjgUK9TdY2XT94GE=
+golang.org/x/tools v0.0.0-20210106214847-113979e3529a/go.mod h1:emZCQorbCU4vsT4fOWvOPXz4eW1wZW4PmDk9uLelYpA=
+golang.org/x/tools v0.1.12/go.mod h1:hNGJHUnrk76NpqgfD5Aqm5Crs+Hm0VOH/i9J2+nxYbc=
+golang.org/x/xerrors v0.0.0-20190717185122-a985d3407aa7/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0=
+golang.org/x/xerrors v0.0.0-20191011141410-1b5146add898/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0=
+golang.org/x/xerrors v0.0.0-20191204190536-9bdfabe68543/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0=
+golang.org/x/xerrors v0.0.0-20200804184101-5ec99f83aff1/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0=
+google.golang.org/appengine v1.6.8 h1:IhEN5q69dyKagZPYMSdIjS2HqprW324FRQZJcGqPAsM=
+google.golang.org/appengine v1.6.8/go.mod h1:1jJ3jBArFh5pcgW8gCtRJnepW8FzD1V44FJffLiz/Ds=
+google.golang.org/protobuf v1.26.0-rc.1/go.mod h1:jlhhOSvTdKEhbULTjvd4ARK9grFBp09yW+WbY/TyQbw=
+google.golang.org/protobuf v1.26.0/go.mod h1:9q0QmTI4eRPtz6boOQmLYwt+qCgq0jsYwAQnmE0givc=
+google.golang.org/protobuf v1.33.0 h1:uNO2rsAINq/JlFpSdYEKIZ0uKD/R9cpdv0T+yoGwGmI=
+google.golang.org/protobuf v1.33.0/go.mod h1:c6P6GXX6sHbq/GpV6MGZEdwhWPcYBgnhAHhKbcUYpos=
gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0=
+gopkg.in/check.v1 v1.0.0-20201130134442-10cb98267c6c h1:Hei/4ADfdWqJk1ZMxUNpqntNwaWcugrBjAiHlqqRiVk=
+gopkg.in/check.v1 v1.0.0-20201130134442-10cb98267c6c/go.mod h1:JHkPIbrfpd72SG/EVd6muEfDQjcINNoR0C8j2r3qZ4Q=
+gopkg.in/yaml.v2 v2.4.0 h1:D8xgwECY7CYvx+Y2n4sBz93Jn9JRvxdiyyo8CTfuKaY=
+gopkg.in/yaml.v2 v2.4.0/go.mod h1:RDklbk79AGWmwhnvt/jBztapEOGDOx6ZbXqjP6csGnQ=
gopkg.in/yaml.v3 v3.0.0-20200313102051-9f266ea9e77c/go.mod h1:K4uyk7z7BCEPqu6E+C64Yfv1cQ7kz7rIZviUmN+EgEM=
gopkg.in/yaml.v3 v3.0.1 h1:fxVm/GzAzEWqLHuvctI91KS9hhNmmWOoWu0XTYJS7CA=
gopkg.in/yaml.v3 v3.0.1/go.mod h1:K4uyk7z7BCEPqu6E+C64Yfv1cQ7kz7rIZviUmN+EgEM=