How can we report a metric load on specific replicas for stateful services and on specific instances for stateless services. For example, stateless service with 5 instances, I want to report a metric load for instance 1 only, not affecting instances 2, 3, 4 and 5.
Based on documentation we can report metric loads at a partition level: IServicePartition.ReportLoad(IEnumerable)
Example: this.Partition.ReportLoad(new List { new LoadMetric("CurrentConnectionCount", 1234) });
Thanks