Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

doc: fix incorrect item number in accesslog design doc #1854

Merged
merged 3 commits into from
Sep 5, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions docs/latest/design/accesslog.md
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,7 @@ type OpenTelemetryEnvoyProxyAccessLog struct {

### Example

1. The following is an example to disable access log.
- The following is an example to disable access log.

```yaml mdox-exec="sed '1,12d' examples/kubernetes/accesslog/disable-accesslog.yaml"
apiVersion: config.gateway.envoyproxy.io/v1alpha1
Expand All @@ -136,7 +136,7 @@ spec:
disable: true
```

2. The following is an example with text format access log.
- The following is an example with text format access log.

```yaml mdox-exec="sed '1,12d' examples/kubernetes/accesslog/text-accesslog.yaml"
apiVersion: config.gateway.envoyproxy.io/v1alpha1
Expand All @@ -158,7 +158,7 @@ spec:
path: /dev/stdout
```

1. The following is an example with json format access log.
- The following is an example with json format access log.

```yaml mdox-exec="sed '1,12d' examples/kubernetes/accesslog/json-accesslog.yaml"
apiVersion: config.gateway.envoyproxy.io/v1alpha1
Expand All @@ -181,7 +181,7 @@ spec:
path: /dev/stdout
```

1. The following is an example with OpenTelemetry format access log.
- The following is an example with OpenTelemetry format access log.

```yaml mdox-exec="sed '1,12d' examples/kubernetes/accesslog/otel-accesslog.yaml"
apiVersion: config.gateway.envoyproxy.io/v1alpha1
Expand All @@ -206,7 +206,7 @@ spec:
k8s.cluster.name: "cluster-1"
```

1. The following is an example of sending same format to different sinks.
- The following is an example of sending same format to different sinks.

```yaml mdox-exec="sed '1,12d' examples/kubernetes/accesslog/multi-sinks.yaml"
apiVersion: config.gateway.envoyproxy.io/v1alpha1
Expand Down