forked from JoeShook/ZiggyCreatures.FusionCache.Metrics
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathFusionCacheEventSource.cs
411 lines (342 loc) · 14.6 KB
/
FusionCacheEventSource.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
#region (c) 2021 Joseph Shook. All rights reserved.
// /*
// Authors:
// Joseph Shook [email protected]
//
// See LICENSE in the project root for license information.
// */
#endregion
using System;
using System.Diagnostics.Tracing;
using System.Threading;
using Microsoft.Extensions.Caching.Memory;
using ZiggyCreatures.Caching.Fusion.Events;
using ZiggyCreatures.Caching.Fusion.Plugins.Metrics.Core;
namespace ZiggyCreatures.Caching.Fusion.Plugins.Metrics.EventCounters
{
/// <summary>
/// Generic FusionCacheEventSource.
/// </summary>
public sealed partial class FusionCacheEventSource : EventSource, IFusionCachePlugin
{
private long _cacheHits;
private long _cacheMisses;
private long _cacheSets;
private long _cacheStaleHit;
private long _cacheBackgroundRefreshed;
private long _cacheBackgroundRefreshedError;
private long _cacheCacheFactoryError;
private long _cacheFactorySyntheticTimeout;
private long _cacheFailSafeActivate;
private long _cacheExpiredEvict;
private long _cacheCapacityEvict;
private long _cacheRemoved;
private IncrementingPollingCounter? _cacheHitPollingCounter;
private IncrementingPollingCounter? _cacheMissPollingCounter;
private IncrementingPollingCounter? _cacheSetPollingCounter;
private IncrementingPollingCounter? _cacheStaleHitPollingCounter;
private IncrementingPollingCounter? _cacheBackgroundRefreshedPollingCounter;
private IncrementingPollingCounter? _cacheBackgroundRefreshedErrorPollingCounter;
private IncrementingPollingCounter? _cacheCacheFactoryErrorPollingCounter;
private IncrementingPollingCounter? _cacheFactorySyntheticTimeoutPollingCounter;
private IncrementingPollingCounter? _cacheFailSafeActivatePollingCounter;
private IncrementingPollingCounter? _cacheExpiredEvictPollingCounter;
private IncrementingPollingCounter? _cacheCapacityEvictPollingCounter;
private IncrementingPollingCounter? _cacheRemovedPollingCounter;
private PollingCounter? _cacheSizePollingCounter;
private readonly TimeSpan _displayRateTimeScale;
private readonly MemoryCache? _cache;
private readonly ISemanticConventions _conventions;
public FusionCacheEventSource(string cacheName, IMemoryCache? cache, ISemanticConventions? semanticConventions = null) : base(eventSourceName: cacheName)
{
_conventions = semanticConventions ?? new SemanticConventions();
_displayRateTimeScale = TimeSpan.FromSeconds(5);
if (cache is MemoryCache memoryCache)
{
_cache = memoryCache;
}
CreateCounters();
}
private void CreateCounters() {
_cacheHitPollingCounter = new IncrementingPollingCounter(
_conventions.CacheHitTagValue,
this,
() => Volatile.Read(ref _cacheHits))
{
DisplayName = "Cache Hits",
DisplayRateTimeScale = _displayRateTimeScale
};
_cacheHitPollingCounter.AddMetadata(_conventions.CacheNameTagName, Name);
_cacheMissPollingCounter = new IncrementingPollingCounter(
_conventions.CacheMissTagValue,
this,
() => Volatile.Read(ref _cacheMisses))
{
DisplayName = "Cache Misses",
DisplayRateTimeScale = _displayRateTimeScale
};
_cacheMissPollingCounter.AddMetadata(_conventions.CacheNameTagName, Name);
_cacheSetPollingCounter = new IncrementingPollingCounter(
_conventions.CacheSetTagValue,
this,
() => Volatile.Read(ref _cacheSets))
{
DisplayName = "Cache Sets",
DisplayRateTimeScale = _displayRateTimeScale
};
_cacheSetPollingCounter.AddMetadata(_conventions.CacheNameTagName, Name);
_cacheStaleHitPollingCounter = new IncrementingPollingCounter(
_conventions.CacheStaleHitTagValue,
this,
() => Volatile.Read(ref _cacheStaleHit))
{
DisplayName = "Cache Stale Hit",
DisplayRateTimeScale = _displayRateTimeScale
};
_cacheStaleHitPollingCounter.AddMetadata(_conventions.CacheNameTagName, Name);
_cacheBackgroundRefreshedPollingCounter = new IncrementingPollingCounter(
_conventions.CacheBackgroundRefreshedTagValue,
this,
() => Volatile.Read(ref _cacheBackgroundRefreshed))
{
DisplayName = "Cache Background Refresh",
DisplayRateTimeScale = _displayRateTimeScale
};
_cacheBackgroundRefreshedPollingCounter.AddMetadata(_conventions.CacheNameTagName, Name);
_cacheBackgroundRefreshedErrorPollingCounter = new IncrementingPollingCounter(
_conventions.CacheBackgroundFailedRefreshedTagValue,
this,
() => Volatile.Read(ref _cacheBackgroundRefreshedError))
{
DisplayName = "Cache Background Refresh Error",
DisplayRateTimeScale = _displayRateTimeScale
};
_cacheBackgroundRefreshedErrorPollingCounter.AddMetadata(_conventions.CacheNameTagName, Name);
_cacheCacheFactoryErrorPollingCounter = new IncrementingPollingCounter(
_conventions.CacheCacheFactoryErrorTagValue,
this,
() => Volatile.Read(ref _cacheCacheFactoryError))
{
DisplayName = "Cache Factory Error",
DisplayRateTimeScale = _displayRateTimeScale
};
_cacheCacheFactoryErrorPollingCounter.AddMetadata(_conventions.CacheNameTagName, Name);
_cacheFactorySyntheticTimeoutPollingCounter = new IncrementingPollingCounter(
_conventions.CacheFactorySyntheticTimeoutTagValue,
this,
() => Volatile.Read(ref _cacheFactorySyntheticTimeout))
{
DisplayName = "Cache Factory Synthetic Timeout",
DisplayRateTimeScale = _displayRateTimeScale
};
_cacheFactorySyntheticTimeoutPollingCounter.AddMetadata(_conventions.CacheNameTagName, Name);
_cacheFailSafeActivatePollingCounter = new IncrementingPollingCounter(
_conventions.CacheFailSafeActivateTagValue,
this,
() => Volatile.Read(ref _cacheFailSafeActivate))
{
DisplayName = "Cache Fail-Safe activation",
DisplayRateTimeScale = _displayRateTimeScale
};
_cacheFailSafeActivatePollingCounter.AddMetadata(_conventions.CacheNameTagName, Name);
_cacheExpiredEvictPollingCounter = new IncrementingPollingCounter(
_conventions.CacheExpiredEvictTagValue,
this,
() => Volatile.Read(ref _cacheExpiredEvict))
{
DisplayName = "Cache Expired Eviction",
DisplayRateTimeScale = _displayRateTimeScale
};
_cacheExpiredEvictPollingCounter.AddMetadata(_conventions.CacheNameTagName, Name);
_cacheCapacityEvictPollingCounter = new IncrementingPollingCounter(
_conventions.CacheCapacityEvictTagValue,
this,
() => Volatile.Read(ref _cacheCapacityEvict))
{
DisplayName = "Cache Capacity Eviction",
DisplayRateTimeScale = _displayRateTimeScale
};
_cacheCapacityEvictPollingCounter.AddMetadata(_conventions.CacheNameTagName, Name);
_cacheRemovedPollingCounter = new IncrementingPollingCounter(
_conventions.CacheRemovedTagValue,
this,
() => Volatile.Read(ref _cacheRemoved))
{
DisplayName = "Cache Removed",
DisplayRateTimeScale = _displayRateTimeScale
};
_cacheRemovedPollingCounter.AddMetadata(_conventions.CacheNameTagName, Name);
_cacheSizePollingCounter = new PollingCounter(
_conventions.CacheItemCountTagValue,
this,
() => _cache?.Count ?? 0)
{
DisplayName = "Cache Size",
};
_cacheSizePollingCounter.AddMetadata(_conventions.CacheNameTagName, Name);
}
#region IFusionMetrics
/// <summary>Cache item hit counter.</summary>
[NonEvent]
public void CacheHit()
{
Interlocked.Increment(ref _cacheHits);
}
/// <summary>
/// Cache item miss counter. When a cache item is not found in the local cache
/// </summary>
[NonEvent]
public void CacheMiss()
{
Interlocked.Increment(ref _cacheMisses);
}
/// <summary>
/// Cache item set counter. When a cache item is written to local cache
/// </summary>
[NonEvent]
public void CacheSet()
{
Interlocked.Increment(ref _cacheSets);
}
/// <summary>
/// Cache item stale hit counter. Cache item failed to complete within soft timeout period.
/// </summary>
[NonEvent]
public void CacheStaleHit()
{
Interlocked.Increment(ref _cacheStaleHit);
}
/// <summary>Cache item refresh in background.</summary>
[NonEvent]
public void CacheBackgroundRefreshSuccess()
{
Interlocked.Increment(ref _cacheBackgroundRefreshed);
}
/// <summary>Cache item refresh in background failed.</summary>
[NonEvent]
public void CacheBackgroundRefreshError()
{
Interlocked.Increment(ref _cacheBackgroundRefreshedError);
}
/// <summary>Generic cache factory error.</summary>
[NonEvent]
public void CacheFactoryError()
{
Interlocked.Increment(ref _cacheCacheFactoryError);
}
/// <summary>Cache factory synthetic timeout</summary>
[NonEvent]
public void CacheFactorySyntheticTimeout()
{
Interlocked.Increment(ref _cacheFactorySyntheticTimeout);
}
/// <summary>The event for a fail-safe activation.</summary>
[NonEvent]
public void CacheFailSafeActivate()
{
Interlocked.Increment(ref _cacheFailSafeActivate);
}
/// <summary>Cache item expired</summary>
[NonEvent]
public void CacheExpired()
{
Interlocked.Increment(ref _cacheExpiredEvict);
}
/// <summary>Cache item removed due to capacity</summary>
[NonEvent]
public void CacheCapacityExpired()
{
Interlocked.Increment(ref _cacheCapacityEvict);
}
/// <summary>Cache item explicitly removed by user code</summary>
[NonEvent]
public void CacheRemoved()
{
Interlocked.Increment(ref _cacheRemoved);
}
#endregion
/// <inheritdoc />
public void Stop(IFusionCache fusionCache)
{
fusionCache.Events.Hit -= HandleCacheHit;
fusionCache.Events.Miss -= HandleCacheMiss;
fusionCache.Events.Set -= HandleCacheSet;
fusionCache.Events.Remove -= HandleCacheRemoved;
fusionCache.Events.Memory.Eviction -= HandleCacheEviction;
fusionCache.Events.BackgroundFactorySuccess -= HandleBackgroundFactorySuccess;
fusionCache.Events.BackgroundFactoryError -= HanldeBackgroundFactoryError;
fusionCache.Events.FactoryError -= HanldeFactoryError;
fusionCache.Events.FactorySyntheticTimeout -= HandleFactorySyntheticTimeout;
fusionCache.Events.FailSafeActivate -= HandleFailSafeActivate;
}
/// <inheritdoc />
public void Start(IFusionCache fusionCache)
{
fusionCache.Events.Hit += HandleCacheHit;
fusionCache.Events.Miss += HandleCacheMiss;
fusionCache.Events.Set += HandleCacheSet;
fusionCache.Events.Remove += HandleCacheRemoved;
fusionCache.Events.Memory.Eviction += HandleCacheEviction;
fusionCache.Events.BackgroundFactorySuccess += HandleBackgroundFactorySuccess;
fusionCache.Events.BackgroundFactoryError += HanldeBackgroundFactoryError;
fusionCache.Events.FactoryError += HanldeFactoryError;
fusionCache.Events.FactorySyntheticTimeout += HandleFactorySyntheticTimeout;
fusionCache.Events.FailSafeActivate += HandleFailSafeActivate;
}
private void HandleCacheHit(object sender, FusionCacheEntryHitEventArgs e)
{
if (e.IsStale)
{
CacheStaleHit();
}
else
{
CacheHit();
}
}
private void HandleCacheMiss(object sender, FusionCacheEntryEventArgs e)
{
CacheMiss();
}
private void HandleCacheSet(object sender, FusionCacheEntryEventArgs e)
{
CacheSet();
}
private void HandleCacheRemoved(object sender, FusionCacheEntryEventArgs e)
{
CacheRemoved();
}
private void HandleCacheEviction(object sender, FusionCacheEntryEvictionEventArgs e)
{
switch (e.Reason)
{
case EvictionReason.Expired:
CacheExpired();
break;
case EvictionReason.Capacity:
CacheCapacityExpired();
break;
}
}
private void HandleBackgroundFactorySuccess(object sender, FusionCacheEntryEventArgs e)
{
CacheBackgroundRefreshSuccess();
}
private void HanldeBackgroundFactoryError(object sender, FusionCacheEntryEventArgs e)
{
CacheBackgroundRefreshError();
}
private void HanldeFactoryError(object sender, FusionCacheEntryEventArgs e)
{
CacheFactoryError();
}
private void HandleFactorySyntheticTimeout(object sender, FusionCacheEntryEventArgs e)
{
CacheFactorySyntheticTimeout();
}
private void HandleFailSafeActivate(object sender, FusionCacheEntryEventArgs e)
{
CacheFailSafeActivate();
}
}
}