Skip to content

Commit

Permalink
chore(external docs): correctly mark some sinks as stateful (vectordo…
Browse files Browse the repository at this point in the history
  • Loading branch information
neuronull authored Apr 10, 2023
1 parent 9cc2f1d commit 64d560d
Show file tree
Hide file tree
Showing 6 changed files with 10 additions and 6 deletions.
2 changes: 1 addition & 1 deletion website/cue/reference/components/sinks/datadog.cue
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ components: sinks: _datadog: {
development: string | *"stable"
egress_method: "batch"
service_providers: ["Datadog"]
stateful: false
stateful: bool | *false
}

support: {
Expand Down
4 changes: 3 additions & 1 deletion website/cue/reference/components/sinks/datadog_metrics.cue
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,9 @@ package metadata
components: sinks: datadog_metrics: {
title: "Datadog Metrics"

classes: sinks._datadog.classes
classes: sinks._datadog.classes & {
stateful: true
}

features: {
acknowledgements: true
Expand Down
4 changes: 3 additions & 1 deletion website/cue/reference/components/sinks/datadog_traces.cue
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,9 @@ package metadata
components: sinks: datadog_traces: {
title: "Datadog Traces"

classes: sinks._datadog.classes
classes: sinks._datadog.classes & {
stateful: true
}

features: {
acknowledgements: true
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ components: sinks: influxdb_metrics: {
development: "stable"
egress_method: "batch"
service_providers: ["InfluxData"]
stateful: false
stateful: true
}

features: {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ components: sinks: prometheus_remote_write: {
development: "beta"
egress_method: "batch"
service_providers: ["AWS"]
stateful: false
stateful: true
}

features: {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ components: sinks: sematext_metrics: {
development: "beta"
service_providers: ["Sematext"]
egress_method: "batch"
stateful: false
stateful: true
}

features: {
Expand Down

0 comments on commit 64d560d

Please sign in to comment.