diff --git a/tests/Sitko.Core.ElasticStack.Tests/ElasticStackScope.cs b/tests/Sitko.Core.ElasticStack.Tests/ElasticStackScope.cs index db052b6ea..c849cedb3 100644 --- a/tests/Sitko.Core.ElasticStack.Tests/ElasticStackScope.cs +++ b/tests/Sitko.Core.ElasticStack.Tests/ElasticStackScope.cs @@ -10,6 +10,7 @@ protected override IHostApplicationBuilder ConfigureApplication(IHostApplication base.ConfigureApplication(hostBuilder, name).AddElasticStack(options => { options.ElasticSearchUrls = new List { new("http://localhost:9200") }; + options.ApmServerUrls = new List { new("http://localhost:8500") }; options.LoggingTemplateVersion = AutoRegisterTemplateVersion.ESv8; options.LoggingIndexFormat = "logs-test"; options.EmitEventFailure = EmitEventFailureHandling.WriteToSelfLog | EmitEventFailureHandling.RaiseCallback;