We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fbb899a commit 89de7d9Copy full SHA for 89de7d9
src/DurableTask.SqlServer.AzureFunctions/SqlScaleMonitor.cs
@@ -26,7 +26,7 @@ class SqlScaleMonitor : IScaleMonitor<SqlScaleMetric>
26
public SqlScaleMonitor(string functionId, string taskHubName, SqlMetricsProvider sqlMetricsProvider)
27
{
28
// Scalers in Durable Functions is per function ids. And scalers share the same sqlMetricsProvider in the same taskhub.
29
- string id = $"DurableTask-SqlServer:{taskHubName ?? "default"}";
+ string id = $"{functionId}-DurableTask-SqlServer:{taskHubName ?? "default"}";
30
31
#if FUNCTIONS_V4
32
this.Descriptor = new ScaleMonitorDescriptor(id: id, functionId: functionId);
0 commit comments