aboutsummaryrefslogtreecommitdiff
path: root/src/ARMeilleure/Diagnostics/TranslatorEventSource.cs
diff options
context:
space:
mode:
Diffstat (limited to 'src/ARMeilleure/Diagnostics/TranslatorEventSource.cs')
-rw-r--r--src/ARMeilleure/Diagnostics/TranslatorEventSource.cs6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/ARMeilleure/Diagnostics/TranslatorEventSource.cs b/src/ARMeilleure/Diagnostics/TranslatorEventSource.cs
index a4f17844..6452bf0a 100644
--- a/src/ARMeilleure/Diagnostics/TranslatorEventSource.cs
+++ b/src/ARMeilleure/Diagnostics/TranslatorEventSource.cs
@@ -19,19 +19,19 @@ namespace ARMeilleure.Diagnostics
{
_rejitQueueCounter = new PollingCounter("rejit-queue-length", this, () => _rejitQueue)
{
- DisplayName = "Rejit Queue Length"
+ DisplayName = "Rejit Queue Length",
};
_funcTabSizeCounter = new PollingCounter("addr-tab-alloc", this, () => _funcTabSize / 1024d / 1024d)
{
DisplayName = "AddressTable Total Bytes Allocated",
- DisplayUnits = "MiB"
+ DisplayUnits = "MiB",
};
_funcTabLeafSizeCounter = new PollingCounter("addr-tab-leaf-alloc", this, () => _funcTabLeafSize / 1024d / 1024d)
{
DisplayName = "AddressTable Total Leaf Bytes Allocated",
- DisplayUnits = "MiB"
+ DisplayUnits = "MiB",
};
}