File tree 9 files changed +32
-32
lines changed
website/docs/integrations/export-evaluation-data
9 files changed +32
-32
lines changed Original file line number Diff line number Diff line change @@ -22,9 +22,9 @@ configuration to your relay proxy configuration file:
22
22
23
23
``` yaml title="goff-proxy.yaml"
24
24
# ...
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"
28
28
# ...
29
29
```
30
30
Original file line number Diff line number Diff line change @@ -27,9 +27,9 @@ configuration to your relay proxy configuration file:
27
27
28
28
``` yaml title="goff-proxy.yaml"
29
29
# ...
30
- exporter :
31
- kind : s3
32
- bucket : evaluation-data-bucket
30
+ exporters :
31
+ - kind : s3
32
+ bucket : evaluation-data-bucket
33
33
# ...
34
34
```
35
35
Original file line number Diff line number Diff line change @@ -22,9 +22,9 @@ configuration to your relay proxy configuration file:
22
22
23
23
``` yaml title="goff-proxy.yaml"
24
24
# ...
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"
28
28
# ...
29
29
```
30
30
| Field name | Mandatory | Type | Default | Description |
Original file line number Diff line number Diff line change @@ -25,10 +25,10 @@ configuration to your relay proxy configuration file:
25
25
26
26
``` yaml title="goff-proxy.yaml"
27
27
# ...
28
- exporter :
29
- kind : azureBlobStorage
30
- container : test-goff
31
- accountName : goff
28
+ exporters :
29
+ - kind : azureBlobStorage
30
+ container : test-goff
31
+ accountName : goff
32
32
# ...
33
33
```
34
34
Original file line number Diff line number Diff line change @@ -25,9 +25,9 @@ configuration to your relay proxy configuration file:
25
25
26
26
``` yaml title="goff-proxy.yaml"
27
27
# ...
28
- exporter :
29
- kind : file
30
- outputDir : /output-data/
28
+ exporters :
29
+ - kind : file
30
+ outputDir : /output-data/
31
31
# ...
32
32
```
33
33
Original file line number Diff line number Diff line change @@ -22,10 +22,10 @@ configuration to your relay proxy configuration file:
22
22
23
23
``` yaml title="goff-proxy.yaml"
24
24
# ...
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"
29
29
# ...
30
30
```
31
31
Original file line number Diff line number Diff line change @@ -25,9 +25,9 @@ configuration to your relay proxy configuration file:
25
25
26
26
``` yaml title="goff-proxy.yaml"
27
27
# ...
28
- exporter :
29
- kind : googleStorage
30
- bucket : test-goff
28
+ exporters :
29
+ - kind : googleStorage
30
+ bucket : test-goff
31
31
# ...
32
32
```
33
33
Original file line number Diff line number Diff line change @@ -22,12 +22,12 @@ configuration to your relay proxy configuration file:
22
22
23
23
``` yaml title="goff-proxy.yaml"
24
24
# ...
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"
31
31
# ...
32
32
```
33
33
Original file line number Diff line number Diff line change @@ -59,9 +59,9 @@ configuration to your relay proxy configuration file:
59
59
60
60
``` yaml title="goff-proxy.yaml"
61
61
# ...
62
- exporter :
63
- kind : webhook
64
- endpointUrl : https://your-webhook-url.com/
62
+ exporters :
63
+ - kind : webhook
64
+ endpointUrl : https://your-webhook-url.com/
65
65
# ...
66
66
```
67
67
You can’t perform that action at this time.
0 commit comments