Skip to content
Merged
Show file tree
Hide file tree
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
4 changes: 2 additions & 2 deletions receiver/awsxrayreceiver/internal/udppoller/poller_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -489,7 +489,7 @@ func assertReceiverTraces(t *testing.T, tt *componenttest.Telemetry, id componen
metricdata.Metrics{
Name: "otelcol_receiver_accepted_spans",
Description: "Number of spans successfully pushed into the pipeline. [Alpha]",
Unit: "{spans}",
Unit: "{span}",
Data: metricdata.Sum[int64]{
Temporality: metricdata.CumulativeTemporality,
IsMonotonic: true,
Expand All @@ -512,7 +512,7 @@ func assertReceiverTraces(t *testing.T, tt *componenttest.Telemetry, id componen
metricdata.Metrics{
Name: "otelcol_receiver_refused_spans",
Description: "Number of spans that could not be pushed into the pipeline. [Alpha]",
Unit: "{spans}",
Unit: "{span}",
Data: metricdata.Sum[int64]{
Temporality: metricdata.CumulativeTemporality,
IsMonotonic: true,
Expand Down
4 changes: 2 additions & 2 deletions receiver/awsxrayreceiver/receiver_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -359,7 +359,7 @@ func assertReceiverTraces(t *testing.T, tt *componenttest.Telemetry, id componen
metricdata.Metrics{
Name: "otelcol_receiver_accepted_spans",
Description: "Number of spans successfully pushed into the pipeline. [Alpha]",
Unit: "{spans}",
Unit: "{span}",
Data: metricdata.Sum[int64]{
Temporality: metricdata.CumulativeTemporality,
IsMonotonic: true,
Expand Down Expand Up @@ -393,7 +393,7 @@ func assertReceiverTraces(t *testing.T, tt *componenttest.Telemetry, id componen
metricdata.Metrics{
Name: "otelcol_receiver_refused_spans",
Description: "Number of spans that could not be pushed into the pipeline. [Alpha]",
Unit: "{spans}",
Unit: "{span}",
Data: metricdata.Sum[int64]{
Temporality: metricdata.CumulativeTemporality,
IsMonotonic: true,
Expand Down
4 changes: 2 additions & 2 deletions receiver/carbonreceiver/reporter_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ func assertReceiverMetrics(t *testing.T, tt *componenttest.Telemetry, id compone
metricdata.Metrics{
Name: "otelcol_receiver_accepted_metric_points",
Description: "Number of metric points successfully pushed into the pipeline. [Alpha]",
Unit: "{datapoints}",
Unit: "{datapoint}",
Data: metricdata.Sum[int64]{
Temporality: metricdata.CumulativeTemporality,
IsMonotonic: true,
Expand All @@ -71,7 +71,7 @@ func assertReceiverMetrics(t *testing.T, tt *componenttest.Telemetry, id compone
metricdata.Metrics{
Name: "otelcol_receiver_refused_metric_points",
Description: "Number of metric points that could not be pushed into the pipeline. [Alpha]",
Unit: "{datapoints}",
Unit: "{datapoint}",
Data: metricdata.Sum[int64]{
Temporality: metricdata.CumulativeTemporality,
IsMonotonic: true,
Expand Down
4 changes: 2 additions & 2 deletions receiver/otelarrowreceiver/otelarrow_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -143,7 +143,7 @@ func TestOTelArrowReceiverGRPCTracesIngestTest(t *testing.T) {
metricdata.Metrics{
Name: "otelcol_receiver_accepted_spans",
Description: "Number of spans successfully pushed into the pipeline. [Alpha]",
Unit: "{spans}",
Unit: "{span}",
Data: metricdata.Sum[int64]{
Temporality: metricdata.CumulativeTemporality,
IsMonotonic: true,
Expand All @@ -164,7 +164,7 @@ func TestOTelArrowReceiverGRPCTracesIngestTest(t *testing.T) {
metricdata.Metrics{
Name: "otelcol_receiver_refused_spans",
Description: "Number of spans that could not be pushed into the pipeline. [Alpha]",
Unit: "{spans}",
Unit: "{span}",
Data: metricdata.Sum[int64]{
Temporality: metricdata.CumulativeTemporality,
IsMonotonic: true,
Expand Down
Loading