-
Notifications
You must be signed in to change notification settings - Fork 40.8k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Support overriding OTel SpanExporters
See gh-35596
- Loading branch information
1 parent
d515599
commit 929283f
Showing
4 changed files
with
199 additions
and
13 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
70 changes: 70 additions & 0 deletions
70
...e/src/main/java/org/springframework/boot/actuate/autoconfigure/tracing/SpanExporters.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,70 @@ | ||
/* | ||
* Copyright 2012-2023 the original author or authors. | ||
* | ||
* Licensed under the Apache License, Version 2.0 (the "License"); | ||
* you may not use this file except in compliance with the License. | ||
* You may obtain a copy of the License at | ||
* | ||
* https://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
* See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
*/ | ||
|
||
package org.springframework.boot.actuate.autoconfigure.tracing; | ||
|
||
import java.util.Arrays; | ||
import java.util.Iterator; | ||
import java.util.List; | ||
import java.util.Spliterator; | ||
|
||
import io.opentelemetry.sdk.trace.export.SpanExporter; | ||
|
||
/** | ||
* A collection of {@link SpanExporter span exporters}. | ||
* | ||
* @author Moritz Halbritter | ||
* @since 3.2.0 | ||
*/ | ||
public interface SpanExporters extends Iterable<SpanExporter> { | ||
|
||
/** | ||
* Returns the list of {@link SpanExporter span exporters}. | ||
* @return the list of span exporters | ||
*/ | ||
List<SpanExporter> getList(); | ||
|
||
@Override | ||
default Iterator<SpanExporter> iterator() { | ||
return getList().iterator(); | ||
} | ||
|
||
@Override | ||
default Spliterator<SpanExporter> spliterator() { | ||
return getList().spliterator(); | ||
} | ||
|
||
/** | ||
* Constructs a {@link SpanExporters} instance with the given list of | ||
* {@link SpanExporter span exporters}. | ||
* @param spanExporters the list of span exporters | ||
* @return the constructed {@link SpanExporters} instance | ||
*/ | ||
static SpanExporters of(List<SpanExporter> spanExporters) { | ||
return () -> spanExporters; | ||
} | ||
|
||
/** | ||
* Constructs a {@link SpanExporters} instance with the given {@link SpanExporter span | ||
* exporters}. | ||
* @param spanExporters the span exporters | ||
* @return the constructed {@link SpanExporters} instance | ||
*/ | ||
static SpanExporters of(SpanExporter... spanExporters) { | ||
return of(Arrays.asList(spanExporters)); | ||
} | ||
|
||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
52 changes: 52 additions & 0 deletions
52
.../test/java/org/springframework/boot/actuate/autoconfigure/tracing/SpanExportersTests.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,52 @@ | ||
/* | ||
* Copyright 2012-2023 the original author or authors. | ||
* | ||
* Licensed under the Apache License, Version 2.0 (the "License"); | ||
* you may not use this file except in compliance with the License. | ||
* You may obtain a copy of the License at | ||
* | ||
* https://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
* See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
*/ | ||
|
||
package org.springframework.boot.actuate.autoconfigure.tracing; | ||
|
||
import java.util.List; | ||
|
||
import io.opentelemetry.sdk.trace.export.SpanExporter; | ||
import org.junit.jupiter.api.Test; | ||
|
||
import static org.assertj.core.api.Assertions.assertThat; | ||
import static org.mockito.Mockito.mock; | ||
|
||
/** | ||
* Tests for {@link SpanExporters}. | ||
* | ||
* @author Moritz Halbritter | ||
*/ | ||
class SpanExportersTests { | ||
|
||
@Test | ||
void ofList() { | ||
SpanExporter spanExporter1 = mock(SpanExporter.class); | ||
SpanExporter spanExporter2 = mock(SpanExporter.class); | ||
SpanExporters spanExporters = SpanExporters.of(List.of(spanExporter1, spanExporter2)); | ||
assertThat(spanExporters).containsExactly(spanExporter1, spanExporter2); | ||
assertThat(spanExporters.getList()).containsExactly(spanExporter1, spanExporter2); | ||
} | ||
|
||
@Test | ||
void ofArray() { | ||
SpanExporter spanExporter1 = mock(SpanExporter.class); | ||
SpanExporter spanExporter2 = mock(SpanExporter.class); | ||
SpanExporters spanExporters = SpanExporters.of(spanExporter1, spanExporter2); | ||
assertThat(spanExporters).containsExactly(spanExporter1, spanExporter2); | ||
assertThat(spanExporters.getList()).containsExactly(spanExporter1, spanExporter2); | ||
} | ||
|
||
} |