This enricher adds the transaction id and trace id to every Serilog log message that is created during a transaction.
The .NET assemblies are published to NuGet under the package name Elastic.Apm.SerilogEnricher
var logger = new LoggerConfiguration()
.Enrich.WithElasticApmCorrelationInfo()
.WriteTo.Console(outputTemplate: "[{ElasticApmTraceId} {ElasticApmTransactionId} {ElasticApmSpanId} {Message:lj} {NewLine}{Exception}")
.CreateLogger();In the code snippet above Enrich.WithElasticApmCorrelationInfo() enables the enricher from this project,
which will set 3 properties for log lines that are created during a transaction:
ElasticApmTraceIdElasticApmTransactionIdElasticApmSpanId
These two properties are printed to the Console using the outputTemplate parameter, of course they can
be used with any sink, you could consider using a filesystem sink and
Elastic Filebeat for durable and reliable ingestion.
This enricher is also compatible with the
Elastic.CommonSchema.Serilog package.
The prerequisite for this to work is a configured Elastic APM Agent. If the agent is not configured the enricher won't add anything to the logs.
This software is Copyright (c) 2014-2020 by Elasticsearch BV.
This is free software, licensed under: The Apache License Version 2.0.