diff --git a/samples/Prometheus/ReverseProxy.Metrics-Prometheus.Sample/PrometheusForwarderMetrics.cs b/samples/Prometheus/ReverseProxy.Metrics-Prometheus.Sample/PrometheusForwarderMetrics.cs index 3d4cb3754..184ecfc6a 100644 --- a/samples/Prometheus/ReverseProxy.Metrics-Prometheus.Sample/PrometheusForwarderMetrics.cs +++ b/samples/Prometheus/ReverseProxy.Metrics-Prometheus.Sample/PrometheusForwarderMetrics.cs @@ -10,7 +10,7 @@ public sealed class PrometheusForwarderMetrics : IMetricsConsumer { private static readonly Counter _totalConnections = Metrics.CreateCounter( "yarp_kestrel_total_connections", - "Number of incomming connections opened" + "Number of incoming connections opened" ); private static readonly Counter _totalTlsHandshakes = Metrics.CreateCounter( "yarp_kestrel_total_tls_Handshakes", - "Numer of TLS handshakes started" + "Number of TLS handshakes started" ); private static readonly Gauge _currentTlsHandshakes = Metrics.CreateGauge( @@ -30,7 +30,7 @@ public sealed class PrometheusKestrelMetrics : IMetricsConsumer private static readonly Gauge _currentConnections = Metrics.CreateGauge( "yarp_kestrel_current_connections", - "Number of currently open incomming connections" + "Number of currently open incoming connections" ); private static readonly Gauge _connectionQueueLength = Metrics.CreateGauge( diff --git a/samples/Prometheus/ReverseProxy.Metrics-Prometheus.Sample/PrometheusOutboundHttpMetrics.cs b/samples/Prometheus/ReverseProxy.Metrics-Prometheus.Sample/PrometheusOutboundHttpMetrics.cs index a11c0a024..5ef576d13 100644 --- a/samples/Prometheus/ReverseProxy.Metrics-Prometheus.Sample/PrometheusOutboundHttpMetrics.cs +++ b/samples/Prometheus/ReverseProxy.Metrics-Prometheus.Sample/PrometheusOutboundHttpMetrics.cs @@ -17,7 +17,7 @@ public sealed class PrometheusOutboundHttpMetrics : IMetricsConsumer