Skip to content

Commit af94ca9

Browse files
Update doc using exporters
Signed-off-by: Thomas Poignant <[email protected]>
1 parent 12c073b commit af94ca9

File tree

9 files changed

+32
-32
lines changed

9 files changed

+32
-32
lines changed

website/docs/integrations/export-evaluation-data/aws-kinesis.mdx

+3-3
Original file line numberDiff line numberDiff line change
@@ -22,9 +22,9 @@ configuration to your relay proxy configuration file:
2222

2323
```yaml title="goff-proxy.yaml"
2424
# ...
25-
exporter:
26-
kind: kinesis
27-
streamArn: "arn:aws:kinesis:us-east-1:XXXX:stream/test-stream"
25+
exporters:
26+
- kind: kinesis
27+
streamArn: "arn:aws:kinesis:us-east-1:XXXX:stream/test-stream"
2828
# ...
2929
```
3030

website/docs/integrations/export-evaluation-data/aws-s3.mdx

+3-3
Original file line numberDiff line numberDiff line change
@@ -27,9 +27,9 @@ configuration to your relay proxy configuration file:
2727

2828
```yaml title="goff-proxy.yaml"
2929
# ...
30-
exporter:
31-
kind: s3
32-
bucket: evaluation-data-bucket
30+
exporters:
31+
- kind: s3
32+
bucket: evaluation-data-bucket
3333
# ...
3434
```
3535

website/docs/integrations/export-evaluation-data/aws-sqs.mdx

+3-3
Original file line numberDiff line numberDiff line change
@@ -22,9 +22,9 @@ configuration to your relay proxy configuration file:
2222

2323
```yaml title="goff-proxy.yaml"
2424
# ...
25-
exporter:
26-
kind: sqs
27-
queueUrl: "https://sqs.us-east-1.amazonaws/XXXX/test-queue"
25+
exporters:
26+
- kind: sqs
27+
queueUrl: "https://sqs.us-east-1.amazonaws/XXXX/test-queue"
2828
# ...
2929
```
3030
| Field name | Mandatory | Type | Default | Description |

website/docs/integrations/export-evaluation-data/azure-blob-storage.mdx

+4-4
Original file line numberDiff line numberDiff line change
@@ -25,10 +25,10 @@ configuration to your relay proxy configuration file:
2525

2626
```yaml title="goff-proxy.yaml"
2727
# ...
28-
exporter:
29-
kind: azureBlobStorage
30-
container: test-goff
31-
accountName: goff
28+
exporters:
29+
- kind: azureBlobStorage
30+
container: test-goff
31+
accountName: goff
3232
# ...
3333
```
3434

website/docs/integrations/export-evaluation-data/file.mdx

+3-3
Original file line numberDiff line numberDiff line change
@@ -25,9 +25,9 @@ configuration to your relay proxy configuration file:
2525

2626
```yaml title="goff-proxy.yaml"
2727
# ...
28-
exporter:
29-
kind: file
30-
outputDir: /output-data/
28+
exporters:
29+
- kind: file
30+
outputDir: /output-data/
3131
# ...
3232
```
3333

website/docs/integrations/export-evaluation-data/google-cloud-pubsub.mdx

+4-4
Original file line numberDiff line numberDiff line change
@@ -22,10 +22,10 @@ configuration to your relay proxy configuration file:
2222

2323
```yaml title="goff-proxy.yaml"
2424
# ...
25-
exporter:
26-
kind: pubsub
27-
projectID: "my-project-id"
28-
topic: "goff-feature-events"
25+
exporters:
26+
- kind: pubsub
27+
projectID: "my-project-id"
28+
topic: "goff-feature-events"
2929
# ...
3030
```
3131

website/docs/integrations/export-evaluation-data/google-cloud-storage.mdx

+3-3
Original file line numberDiff line numberDiff line change
@@ -25,9 +25,9 @@ configuration to your relay proxy configuration file:
2525

2626
```yaml title="goff-proxy.yaml"
2727
# ...
28-
exporter:
29-
kind: googleStorage
30-
bucket: test-goff
28+
exporters:
29+
- kind: googleStorage
30+
bucket: test-goff
3131
# ...
3232
```
3333

website/docs/integrations/export-evaluation-data/kafka.mdx

+6-6
Original file line numberDiff line numberDiff line change
@@ -22,12 +22,12 @@ configuration to your relay proxy configuration file:
2222

2323
```yaml title="goff-proxy.yaml"
2424
# ...
25-
exporter:
26-
kind: kafka
27-
kafka:
28-
topic: "go-feature-flag-events"
29-
addresses:
30-
- "localhost:9092"
25+
exporters:
26+
- kind: kafka
27+
kafka:
28+
topic: "go-feature-flag-events"
29+
addresses:
30+
- "localhost:9092"
3131
# ...
3232
```
3333

website/docs/integrations/export-evaluation-data/webhook.mdx

+3-3
Original file line numberDiff line numberDiff line change
@@ -59,9 +59,9 @@ configuration to your relay proxy configuration file:
5959

6060
```yaml title="goff-proxy.yaml"
6161
# ...
62-
exporter:
63-
kind: webhook
64-
endpointUrl: https://your-webhook-url.com/
62+
exporters:
63+
- kind: webhook
64+
endpointUrl: https://your-webhook-url.com/
6565
# ...
6666
```
6767

0 commit comments

Comments
 (0)