< Summary

Class:Microsoft.Extensions.Hosting.HoconConfigExtensions
Assembly:SeungYongShim.Akka.OpenTelemetry
File(s):/home/runner/work/SeungYongShim.Akka/SeungYongShim.Akka/src/SeungYongShim.Akka.OpenTelemetry/HoconConfigExtension.cs
Covered lines:6
Uncovered lines:0
Coverable lines:6
Total lines:19
Line coverage:100% (6 of 6)
Covered branches:0
Total branches:0
Tag:81_945672945

Metrics

MethodBranch coverage Crap Score Cyclomatic complexity NPath complexity Sequence coverage
WithOpenTelemetry(...)0%110100%

File(s)

/home/runner/work/SeungYongShim.Akka/SeungYongShim.Akka/src/SeungYongShim.Akka.OpenTelemetry/HoconConfigExtension.cs

#LineLine coverage
 1using Akka.Configuration;
 2
 3namespace Microsoft.Extensions.Hosting
 4{
 5
 6
 7
 8
 9    public static class HoconConfigExtensions
 10    {
 11        public static Config WithOpenTelemetry(this Config config) =>
 612            config.WithFallback(@"
 613                                 akka {
 614                                   actor {
 615                                     provider = ""SeungYongShim.Akka.OpenTelemetry.TraceLocalActorRefProvider, SeungYong
 616                                   }
 617                                 }");
 18    }
 19}