File tree Expand file tree Collapse file tree 4 files changed +7
-6
lines changed Expand file tree Collapse file tree 4 files changed +7
-6
lines changed Original file line number Diff line number Diff line change @@ -9,7 +9,7 @@ Emoji Legend
9
9
| Service | Language | Instrumentation Libraries | Manual Metric Creation | Collector Agent Metric Transformation | Push Metrics | SLO Metrics | Multiple Manual Metric Instruments |
10
10
| -----------------| -----------------| ---------------------------| ------------------------| ---------------------------------------| ----------------| ----------------| ------------------------------------|
11
11
| Ad | Java | :construction : | :construction : | :construction : | :construction : | :construction : | :construction : |
12
- | Cart | .NET | :construction : | :construction : | :construction : | :construction : | :construction : | :construction : |
12
+ | Cart | .NET | :100 : | :construction : | :construction : | :construction : | :construction : | :construction : |
13
13
| Checkout | Go | :construction : | :construction : | :construction : | :construction : | :construction : | :construction : |
14
14
| Currency | C++ | :construction : | :construction : | :construction : | :construction : | :construction : | :construction : |
15
15
| Email | Ruby | :construction : | :construction : | :construction : | :construction : | :construction : | :construction : |
Original file line number Diff line number Diff line change @@ -50,9 +50,10 @@ public void ConfigureServices(IServiceCollection services)
50
50
. AddHttpClientInstrumentation ( )
51
51
. AddOtlpExporter ( ) ) ;
52
52
53
- services . AddOpenTelemetryMetrics ( builder =>
54
- builder . AddRuntimeInstrumentation ( )
55
- . AddOtlpExporter ( ) ) ;
53
+ services . AddOpenTelemetryMetrics ( builder =>
54
+ builder . AddRuntimeInstrumentation ( )
55
+ . AddAspNetCoreInstrumentation ( )
56
+ . AddOtlpExporter ( ) ) ;
56
57
57
58
services . AddGrpc ( ) ;
58
59
services . AddGrpcHealthChecks ( )
Original file line number Diff line number Diff line change 8
8
<PackageReference Include =" Grpc.AspNetCore" Version =" 2.44.0" />
9
9
<PackageReference Include =" Grpc.AspNetCore.HealthChecks" Version =" 2.46.0" />
10
10
<PackageReference Include =" StackExchange.Redis" Version =" 2.5.43" />
11
- <PackageReference Include =" OpenTelemetry.Exporter.OpenTelemetryProtocol" Version =" 1.3.0 " />
11
+ <PackageReference Include =" OpenTelemetry.Exporter.OpenTelemetryProtocol" Version =" 1.3.1 " />
12
12
<PackageReference Include =" OpenTelemetry.Extensions.Hosting" Version =" 1.0.0-rc9.4" />
13
13
<PackageReference Include =" OpenTelemetry.Instrumentation.AspNetCore" Version =" 1.0.0-rc9.4" />
14
14
<PackageReference Include =" OpenTelemetry.Instrumentation.GrpcNetClient" Version =" 1.0.0-rc9.4" />
Original file line number Diff line number Diff line change @@ -101,7 +101,7 @@ private void EnsureRedisConnected()
101
101
redis . ConnectionRestored += ( o , e ) =>
102
102
{
103
103
isRedisConnectionOpened = true ;
104
- Console . WriteLine ( "Connection to redis was retored successfully" ) ;
104
+ Console . WriteLine ( "Connection to redis was restored successfully. " ) ;
105
105
} ;
106
106
redis . ConnectionFailed += ( o , e ) =>
107
107
{
You can’t perform that action at this time.
0 commit comments