use of com.microsoft.applicationinsights.agent.internal.configuration.Configuration.ProcessorConfig in project ApplicationInsights-Java by microsoft.
the class ExporterWithSpanProcessorTest method simpleRenameSpanTest.
@Test
void simpleRenameSpanTest() {
MockExporter mockExporter = new MockExporter();
ProcessorConfig config = new ProcessorConfig();
config.type = ProcessorType.SPAN;
config.id = "SimpleRenameSpan";
config.name = new NameConfig();
config.name.fromAttributes = Arrays.asList("db.svc", "operation", "id");
SpanExporter exampleExporter = new ExporterWithSpanProcessor(config, mockExporter);
Span span = tracer.spanBuilder("svcA").setAttribute("one", "1").setAttribute("two", 2L).setAttribute("db.svc", "location").setAttribute("operation", "get").setAttribute("id", "1234").startSpan();
SpanData spanData = ((ReadableSpan) span).toSpanData();
List<SpanData> spans = new ArrayList<>();
spans.add(spanData);
exampleExporter.export(spans);
// verify that resulting spans are filtered in the way we want
List<SpanData> result = mockExporter.getSpans();
SpanData resultSpan = result.get(0);
assertThat(resultSpan.getName()).isEqualTo("locationget1234");
}
use of com.microsoft.applicationinsights.agent.internal.configuration.Configuration.ProcessorConfig in project ApplicationInsights-Java by microsoft.
the class ExporterWithSpanProcessorTest method invalidRegexInRulesTest.
@Test
void invalidRegexInRulesTest() {
MockExporter mockExporter = new MockExporter();
ProcessorConfig config = new ProcessorConfig();
config.type = ProcessorType.SPAN;
config.id = "InvalidRegexInRules";
config.name = new NameConfig();
ToAttributeConfig toAttributeConfig = new ToAttributeConfig();
toAttributeConfig.rules = new ArrayList<>();
toAttributeConfig.rules.add("***");
config.name.toAttributes = toAttributeConfig;
assertThatThrownBy(() -> new ExporterWithSpanProcessor(config, mockExporter)).isInstanceOf(FriendlyException.class);
}
use of com.microsoft.applicationinsights.agent.internal.configuration.Configuration.ProcessorConfig in project ApplicationInsights-Java by microsoft.
the class ExporterWithSpanProcessorTest method renameSpanWithIncludeTest.
@Test
void renameSpanWithIncludeTest() {
MockExporter mockExporter = new MockExporter();
ProcessorConfig config = new ProcessorConfig();
config.type = ProcessorType.SPAN;
config.id = "RenameSpanWithInclude";
config.name = new NameConfig();
config.name.fromAttributes = Arrays.asList("db.svc", "operation", "id");
config.include = new ProcessorIncludeExclude();
config.include.matchType = MatchType.STRICT;
config.include.spanNames = Arrays.asList("svcA", "svcB");
SpanExporter exampleExporter = new ExporterWithSpanProcessor(config, mockExporter);
Span spanA = tracer.spanBuilder("svcA").setAttribute("one", "1").setAttribute("two", 2L).setAttribute("db.svc", "location").setAttribute("operation", "get").setAttribute("id", "1234").startSpan();
Span spanB = tracer.spanBuilder("svcB").setAttribute("one", "1").setAttribute("testKey", "testValue").setAttribute("testKey2", "testValue2").setAttribute("db.svc", "location").setAttribute("operation", "get").setAttribute("id", "1234").startSpan();
Span spanC = tracer.spanBuilder("svcC").setAttribute("two", 2L).setAttribute("testKey", "testValue").setAttribute("testKey2", "testValue2").setAttribute("db.svc", "location").setAttribute("operation", "get").setAttribute("id", "1234").startSpan();
Span spanD = tracer.spanBuilder("svcD").setAttribute("one", "1").setAttribute("two", 2L).setAttribute("testKey", "testValue").setAttribute("testKey2", "testValue2").startSpan();
List<SpanData> spans = new ArrayList<>();
spans.add(((ReadableSpan) spanA).toSpanData());
spans.add(((ReadableSpan) spanB).toSpanData());
spans.add(((ReadableSpan) spanC).toSpanData());
spans.add(((ReadableSpan) spanD).toSpanData());
exampleExporter.export(spans);
// verify that resulting spans are filtered in the way we want
List<SpanData> result = mockExporter.getSpans();
SpanData resultSpanA = result.get(0);
SpanData resultSpanB = result.get(1);
SpanData resultSpanC = result.get(2);
SpanData resultSpanD = result.get(3);
assertThat(resultSpanA.getName()).isEqualTo("locationget1234");
assertThat(resultSpanB.getName()).isEqualTo("locationget1234");
assertThat(resultSpanC.getName()).isEqualTo("svcC");
assertThat(resultSpanD.getName()).isEqualTo("svcD");
}
use of com.microsoft.applicationinsights.agent.internal.configuration.Configuration.ProcessorConfig in project ApplicationInsights-Java by microsoft.
the class ExporterWithSpanProcessorTest method inValidConfigTestWithNoFromOrToAttributesTest.
@Test
void inValidConfigTestWithNoFromOrToAttributesTest() {
MockExporter mockExporter = new MockExporter();
ProcessorConfig config = new ProcessorConfig();
config.type = ProcessorType.SPAN;
config.id = "inValidConfigTestWithToAttributesNoRules";
config.name = new NameConfig();
assertThatThrownBy(() -> new ExporterWithSpanProcessor(config, mockExporter)).isInstanceOf(FriendlyException.class);
}
use of com.microsoft.applicationinsights.agent.internal.configuration.Configuration.ProcessorConfig in project ApplicationInsights-Java by microsoft.
the class ExporterWithSpanProcessorTest method inValidConfigTestWithToAttributesNoRulesTest.
@Test
void inValidConfigTestWithToAttributesNoRulesTest() {
MockExporter mockExporter = new MockExporter();
ProcessorConfig config = new ProcessorConfig();
config.type = ProcessorType.SPAN;
config.id = "inValidConfigTestWithToAttributesNoRules";
config.name = new NameConfig();
config.name.toAttributes = new ToAttributeConfig();
assertThatThrownBy(() -> new ExporterWithSpanProcessor(config, mockExporter)).isInstanceOf(FriendlyException.class);
}
Aggregations