Skip to content

Commit

Permalink
fix timing issues on build (#317)
Browse files Browse the repository at this point in the history
  • Loading branch information
brunobat authored Jul 8, 2024
1 parent 03a8944 commit 780fc91
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 1 deletion.
Original file line number Diff line number Diff line change
@@ -1 +1,2 @@
otel.logs.exporter=none
otel.metric.export.interval=1000
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
otel.logs.exporter=none
#otel.metric.export.interval=1000
2 changes: 1 addition & 1 deletion implementation/observation-otel-bridge/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
</parent>

<artifactId>smallrye-opentelemetry-observation-otel-bridge</artifactId>
<name>SmallRye OpenTelemetry: Observation to OPenTelemetry bridge</name>
<name>SmallRye OpenTelemetry: Observation to OpenTelemetry bridge</name>

<properties>
<micrometer-docs-generator.version>1.0.2</micrometer-docs-generator.version>
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
otel.logs.exporter=none
otel.metric.export.interval=1000
Original file line number Diff line number Diff line change
Expand Up @@ -145,6 +145,7 @@ public List<MetricData> getFinishedMetricItems() {
}

public List<MetricData> getFinishedMetricItems(final String name, final String target) {
assertCountAtLeast(1);
return Collections.unmodifiableList(new ArrayList<>(
finishedMetricItems.stream()
.filter(metricData -> metricData.getName().equals(name))
Expand Down

0 comments on commit 780fc91

Please sign in to comment.