Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -467,7 +467,7 @@ You can select which metrics provider will be used by setting `MetricsProviderNa
This library exposes the following memcached metrics

- `memcached_command_duration_seconds` - memcached command duration in seconds per command
- `memecached_socket_pool_used_sockets` - number of used socket pool sockets per endpoint
- `memcached_socket_pool_used_sockets` - number of used socket pool sockets per endpoint
- `memcached_commands_total` - total executed memcached commands number

#### Disagnostic information
Expand Down
2 changes: 1 addition & 1 deletion src/Aer.Memcached.Client/ConnectionPool/PooledSocket.cs
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ public class PooledSocket : IDisposable
private NetworkStream _inputStream;

/// <summary>
/// The ID of this instance. Used by the memecached server to identify the instance in its inner lists.
/// The ID of this instance. Used by the memcached server to identify the instance in its inner lists.
/// </summary>
public readonly Guid InstanceId = Guid.NewGuid();

Expand Down
2 changes: 1 addition & 1 deletion src/Aer.Memcached/Diagnostics/MemcachedMetricsProvider.cs
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ internal class MemcachedMetricsProvider
private readonly IMetricFamily<ICounter> _commandsTotal;

private const string CommandDurationSecondsMetricName = "memcached_command_duration_seconds";
private const string SocketPoolUsedSocketsCountsMetricName = "memecached_socket_pool_used_sockets";
private const string SocketPoolUsedSocketsCountsMetricName = "memcached_socket_pool_used_sockets";
private const string CommandsTotalOtelMetricName = "memcached_commands_total";

public static readonly Dictionary<string, double[]> MetricsBuckets = new()
Expand Down
Loading