We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 409d5fc commit ef4be14Copy full SHA for ef4be14
1 file changed
VirtualFinland.UserAPI/src/VirtualFinland.UsersAPI/Helpers/Services/AnalyticsService.cs
@@ -88,6 +88,21 @@ await _cloudwatchClient.PutMetricDataAsync(new PutMetricDataRequest()
88
TimestampUtc = DateTime.UtcNow
89
},
90
new()
91
+ {
92
+ MetricName = "RequestsPerContext",
93
+ Value = 1,
94
+ Unit = StandardUnit.None,
95
+ TimestampUtc = DateTime.UtcNow,
96
+ Dimensions = new List<Dimension>()
97
98
+ new()
99
100
+ Name = "Context",
101
+ Value = eventContextName
102
+ }
103
104
+ },
105
106
{
107
MetricName = "RequestsTotalPerAudience",
108
Value = 1,
0 commit comments