Skip to content

Commit cae9401

Browse files
committed
more fixes
1 parent ba5a430 commit cae9401

File tree

2 files changed

+20
-6
lines changed

2 files changed

+20
-6
lines changed

website/cue/reference/components/sinks/pulsar.cue

Lines changed: 10 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -59,8 +59,15 @@ components: sinks: pulsar: {
5959
configuration: base.components.sinks.pulsar.configuration
6060

6161
input: {
62-
logs: true
63-
metrics: null
64-
traces: false
62+
logs: true
63+
metrics: {
64+
counter: true
65+
distribution: true
66+
gauge: true
67+
histogram: true
68+
set: true
69+
summary: true
70+
}
71+
traces: false
6572
}
6673
}

website/cue/reference/components/sinks/redis.cue

Lines changed: 10 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -58,9 +58,16 @@ components: sinks: redis: {
5858
configuration: base.components.sinks.redis.configuration
5959

6060
input: {
61-
logs: true
62-
metrics: null
63-
traces: false
61+
logs: true
62+
metrics: {
63+
counter: true
64+
distribution: true
65+
gauge: true
66+
histogram: true
67+
set: true
68+
summary: true
69+
}
70+
traces: true
6471
}
6572

6673
how_it_works: {

0 commit comments

Comments
 (0)