зеркало из https://github.com/microsoft/BuildXL.git
Merged PR 652285: Make stats tracing a bit more explicit
Make stats tracing a bit more explicit
This commit is contained in:
Родитель
0cbcf00ec4
Коммит
a4ef6e381f
|
@ -316,12 +316,14 @@ namespace BuildXL.Cache.ContentStore.Tracing
|
||||||
{
|
{
|
||||||
if (string.IsNullOrEmpty(prefix))
|
if (string.IsNullOrEmpty(prefix))
|
||||||
{
|
{
|
||||||
// Trace(Severity.Debug, context, message);
|
// Always prepend the messages with 'Shutdown stats' to simplify filtering.
|
||||||
counterSet.LogOrderedNameValuePairs(s => Trace(Severity.Debug, context, s, operation: nameof(TraceStatisticsAtShutdown)));
|
// It's possible to filter based on the operation name, but seeing a prefix like this one in every message
|
||||||
|
// makes the filtering and analysis easier.
|
||||||
|
counterSet.LogOrderedNameValuePairs(s => Trace(Severity.Debug, context, $"Shutdown stats: {s}", operation: nameof(TraceStatisticsAtShutdown)));
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
counterSet.LogOrderedNameValuePairs(s => Trace(Severity.Debug, context, $"{prefix}.{s}", operation: nameof(TraceStatisticsAtShutdown)));
|
counterSet.LogOrderedNameValuePairs(s => Trace(Severity.Debug, context, $"Shutdown stats: {prefix}.{s}", operation: nameof(TraceStatisticsAtShutdown)));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Загрузка…
Ссылка в новой задаче