Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix timing issues on build #317

Merged
merged 1 commit into from
Jul 8, 2024
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
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