diff --git a/docs/latest/design/accesslog.md b/docs/latest/design/accesslog.md index e8ab51b751f..62cf8170704 100644 --- a/docs/latest/design/accesslog.md +++ b/docs/latest/design/accesslog.md @@ -133,7 +133,7 @@ metadata: spec: telemetry: accessLog: - disabled: true + disable: true ``` 2. The following is an example with text format access log. diff --git a/docs/latest/user/proxy-observability.md b/docs/latest/user/proxy-observability.md index 069c7cc598c..e635460865b 100644 --- a/docs/latest/user/proxy-observability.md +++ b/docs/latest/user/proxy-observability.md @@ -93,7 +93,7 @@ Verify logs from loki: curl -s "http://$LOKI_IP:3100/loki/api/v1/query_range" --data-urlencode "query={job=\"fluentbit\"}" | jq '.data.result[0].values' ``` -If you want to disable it, set the `telemetry.accesslog.disabled` to `true` in the `EnvoyProxy` CRD. +If you want to disable it, set the `telemetry.accesslog.disable` to `true` in the `EnvoyProxy` CRD. ```shell kubectl apply -f https://raw.githubusercontent.com/envoyproxy/gateway/latest/examples/kubernetes/accesslog/disable-accesslog.yaml @@ -130,4 +130,4 @@ curl -s "http://$TEMPO_IP:3100/api/search" --data-urlencode "q={ component=envoy ```shell curl -s "http://$TEMPO_IP:3100/api/traces/" | jq -``` \ No newline at end of file +``` diff --git a/docs/v0.5.0/design/accesslog.md b/docs/v0.5.0/design/accesslog.md index e8ab51b751f..62cf8170704 100644 --- a/docs/v0.5.0/design/accesslog.md +++ b/docs/v0.5.0/design/accesslog.md @@ -133,7 +133,7 @@ metadata: spec: telemetry: accessLog: - disabled: true + disable: true ``` 2. The following is an example with text format access log. diff --git a/docs/v0.5.0/user/proxy-observability.md b/docs/v0.5.0/user/proxy-observability.md index 069c7cc598c..e635460865b 100644 --- a/docs/v0.5.0/user/proxy-observability.md +++ b/docs/v0.5.0/user/proxy-observability.md @@ -93,7 +93,7 @@ Verify logs from loki: curl -s "http://$LOKI_IP:3100/loki/api/v1/query_range" --data-urlencode "query={job=\"fluentbit\"}" | jq '.data.result[0].values' ``` -If you want to disable it, set the `telemetry.accesslog.disabled` to `true` in the `EnvoyProxy` CRD. +If you want to disable it, set the `telemetry.accesslog.disable` to `true` in the `EnvoyProxy` CRD. ```shell kubectl apply -f https://raw.githubusercontent.com/envoyproxy/gateway/latest/examples/kubernetes/accesslog/disable-accesslog.yaml @@ -130,4 +130,4 @@ curl -s "http://$TEMPO_IP:3100/api/search" --data-urlencode "q={ component=envoy ```shell curl -s "http://$TEMPO_IP:3100/api/traces/" | jq -``` \ No newline at end of file +``` diff --git a/examples/kubernetes/accesslog/disable-accesslog.yaml b/examples/kubernetes/accesslog/disable-accesslog.yaml index ebb1f7bd7af..0de2ab92057 100644 --- a/examples/kubernetes/accesslog/disable-accesslog.yaml +++ b/examples/kubernetes/accesslog/disable-accesslog.yaml @@ -18,4 +18,4 @@ metadata: spec: telemetry: accessLog: - disabled: true + disable: true