1 instantiation of LabelInstruction
System.Diagnostics.DiagnosticSource (1)
System\Diagnostics\Metrics\AggregatorStore.cs (1)
401valueFetches[i] = new LabelInstruction(i, labels[i].Key);
9 references to LabelInstruction
System.Diagnostics.DiagnosticSource (9)
System\Diagnostics\Metrics\AggregatorStore.cs (9)
334LabelInstruction[] instructions = Compile(labels); 335Array.Sort(instructions, (LabelInstruction a, LabelInstruction b) => string.CompareOrdinal(a.LabelName, b.LabelName)); 396private static LabelInstruction[] Compile(ReadOnlySpan<KeyValuePair<string, object?>> labels) 398LabelInstruction[] valueFetches = new LabelInstruction[labels.Length]; 414private readonly LabelInstruction[] _instructions; 420LabelInstruction[] instructions, 455LabelInstruction instr = _instructions[i];