mirror of
https://github.com/Microsoft/calculator.git
synced 2025-08-22 22:23:29 -07:00
Update telemetry aliases
This commit is contained in:
parent
6f2a9e7425
commit
6291ab7f81
4 changed files with 20 additions and 21 deletions
|
@ -83,16 +83,15 @@ namespace CalculatorApp
|
||||||
#ifdef SEND_TELEMETRY
|
#ifdef SEND_TELEMETRY
|
||||||
// c.f. WINEVENT_KEYWORD_RESERVED_63-56 0xFF00000000000000 // Bits 63-56 - channel keywords
|
// c.f. WINEVENT_KEYWORD_RESERVED_63-56 0xFF00000000000000 // Bits 63-56 - channel keywords
|
||||||
// c.f. WINEVENT_KEYWORD_* 0x00FF000000000000 // Bits 55-48 - system-reserved keywords
|
// c.f. WINEVENT_KEYWORD_* 0x00FF000000000000 // Bits 55-48 - system-reserved keywords
|
||||||
constexpr int64_t MICROSOFT_KEYWORD_CRITICAL_DATA = 0x0000800000000000; // Bit 47
|
constexpr int64_t MICROSOFT_KEYWORD_LEVEL_1 = 0x0000800000000000; // Bit 47
|
||||||
constexpr int64_t MICROSOFT_KEYWORD_MEASURES = 0x0000400000000000; // Bit 46
|
constexpr int64_t MICROSOFT_KEYWORD_LEVEL_2 = 0x0000400000000000; // Bit 46
|
||||||
constexpr int64_t MICROSOFT_KEYWORD_TELEMETRY = 0x0000200000000000; // Bit 45
|
constexpr int64_t MICROSOFT_KEYWORD_LEVEL_3 = 0x0000200000000000; // Bit 45
|
||||||
constexpr int64_t MICROSOFT_KEYWORD_RESERVED_44 = 0x0000100000000000; // Bit 44 (reserved for future assignment)
|
|
||||||
#else
|
#else
|
||||||
// define all Keyword options as 0 when we do not want to upload app telemetry
|
// define all Keyword options as 0 when we do not want to upload app telemetry
|
||||||
constexpr int64_t MICROSOFT_KEYWORD_CRITICAL_DATA = 0;
|
constexpr int64_t MICROSOFT_KEYWORD_LEVEL_1 = 0;
|
||||||
constexpr int64_t MICROSOFT_KEYWORD_MEASURES = 0;
|
constexpr int64_t MICROSOFT_KEYWORD_LEVEL_2 = 0;
|
||||||
constexpr int64_t MICROSOFT_KEYWORD_TELEMETRY = 0;
|
constexpr int64_t MICROSOFT_KEYWORD_LEVEL_3 = 0;
|
||||||
constexpr int64_t MICROSOFT_KEYWORD_RESERVED_44 = 0;
|
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#pragma region TraceLogger setup and cleanup
|
#pragma region TraceLogger setup and cleanup
|
||||||
|
@ -127,17 +126,17 @@ namespace CalculatorApp
|
||||||
#pragma region Tracing methods
|
#pragma region Tracing methods
|
||||||
void TraceLogger::LogTelemetryEvent(wstring_view eventName, LoggingFields fields) const
|
void TraceLogger::LogTelemetryEvent(wstring_view eventName, LoggingFields fields) const
|
||||||
{
|
{
|
||||||
g_calculatorProvider.LogEvent(eventName, fields, LoggingLevel::Verbose, LoggingOptions(MICROSOFT_KEYWORD_TELEMETRY));
|
g_calculatorProvider.LogEvent(eventName, fields, LoggingLevel::Verbose, LoggingOptions(MICROSOFT_KEYWORD_LEVEL_3));
|
||||||
}
|
}
|
||||||
|
|
||||||
void TraceLogger::LogMeasureEvent(wstring_view eventName, LoggingFields fields) const
|
void TraceLogger::LogMeasureEvent(wstring_view eventName, LoggingFields fields) const
|
||||||
{
|
{
|
||||||
g_calculatorProvider.LogEvent(eventName, fields, LoggingLevel::Verbose, LoggingOptions(MICROSOFT_KEYWORD_MEASURES));
|
g_calculatorProvider.LogEvent(eventName, fields, LoggingLevel::Verbose, LoggingOptions(MICROSOFT_KEYWORD_LEVEL_2));
|
||||||
}
|
}
|
||||||
|
|
||||||
void TraceLogger::LogCriticalDataEvent(wstring_view eventName, LoggingFields fields) const
|
void TraceLogger::LogCriticalDataEvent(wstring_view eventName, LoggingFields fields) const
|
||||||
{
|
{
|
||||||
g_calculatorProvider.LogEvent(eventName, fields, LoggingLevel::Verbose, LoggingOptions(MICROSOFT_KEYWORD_CRITICAL_DATA));
|
g_calculatorProvider.LogEvent(eventName, fields, LoggingLevel::Verbose, LoggingOptions(MICROSOFT_KEYWORD_LEVEL_1));
|
||||||
}
|
}
|
||||||
|
|
||||||
void TraceLogger::LogPerformanceEvent(wstring_view eventName, LoggingFields fields) const
|
void TraceLogger::LogPerformanceEvent(wstring_view eventName, LoggingFields fields) const
|
||||||
|
@ -342,7 +341,7 @@ namespace CalculatorApp
|
||||||
if (!isAppLaunchBeginLogged)
|
if (!isAppLaunchBeginLogged)
|
||||||
{
|
{
|
||||||
m_appLaunchActivity =
|
m_appLaunchActivity =
|
||||||
g_calculatorProvider.StartActivity(EVENT_NAME_APP_LAUNCH_BEGIN, nullptr, LoggingLevel::Verbose, LoggingOptions(MICROSOFT_KEYWORD_TELEMETRY));
|
g_calculatorProvider.StartActivity(EVENT_NAME_APP_LAUNCH_BEGIN, nullptr, LoggingLevel::Verbose, LoggingOptions(MICROSOFT_KEYWORD_LEVEL_3));
|
||||||
|
|
||||||
isAppLaunchBeginLogged = true;
|
isAppLaunchBeginLogged = true;
|
||||||
}
|
}
|
||||||
|
|
|
@ -111,7 +111,7 @@ namespace CalculatorApp
|
||||||
// a) decide the level of logging. This will help us in limiting recording of events only up to a certain level. See this link for guidance
|
// a) decide the level of logging. This will help us in limiting recording of events only up to a certain level. See this link for guidance
|
||||||
// https://msdn.microsoft.com/en-us/library/windows/desktop/aa363742(v=vs.85).aspx We're using Verbose level for events that are called frequently and
|
// https://msdn.microsoft.com/en-us/library/windows/desktop/aa363742(v=vs.85).aspx We're using Verbose level for events that are called frequently and
|
||||||
// needed only for debugging or capturing perf for specific scenarios b) should decide whether or not to log to telemetry and pass
|
// needed only for debugging or capturing perf for specific scenarios b) should decide whether or not to log to telemetry and pass
|
||||||
// TraceLoggingKeyword(MICROSOFT_KEYWORD_TELEMETRY) accordingly c) Should accept a variable number of additional data arguments if needed
|
// TraceLoggingKeyword(MICROSOFT_KEYWORD_LEVEL_3) accordingly c) Should accept a variable number of additional data arguments if needed
|
||||||
void LogTelemetryEvent(std::wstring_view eventName, winrt::Windows::Foundation::Diagnostics::LoggingFields fields) const;
|
void LogTelemetryEvent(std::wstring_view eventName, winrt::Windows::Foundation::Diagnostics::LoggingFields fields) const;
|
||||||
void LogMeasureEvent(std::wstring_view eventName, winrt::Windows::Foundation::Diagnostics::LoggingFields fields) const;
|
void LogMeasureEvent(std::wstring_view eventName, winrt::Windows::Foundation::Diagnostics::LoggingFields fields) const;
|
||||||
void LogCriticalDataEvent(std::wstring_view eventName, winrt::Windows::Foundation::Diagnostics::LoggingFields fields) const;
|
void LogCriticalDataEvent(std::wstring_view eventName, winrt::Windows::Foundation::Diagnostics::LoggingFields fields) const;
|
||||||
|
|
|
@ -18,15 +18,15 @@ namespace CalculatorApp
|
||||||
#ifdef SEND_TELEMETRY
|
#ifdef SEND_TELEMETRY
|
||||||
// c.f. WINEVENT_KEYWORD_RESERVED_63-56 0xFF00000000000000 // Bits 63-56 - channel keywords
|
// c.f. WINEVENT_KEYWORD_RESERVED_63-56 0xFF00000000000000 // Bits 63-56 - channel keywords
|
||||||
// c.f. WINEVENT_KEYWORD_* 0x00FF000000000000 // Bits 55-48 - system-reserved keywords
|
// c.f. WINEVENT_KEYWORD_* 0x00FF000000000000 // Bits 55-48 - system-reserved keywords
|
||||||
constexpr int64_t MICROSOFT_KEYWORD_CRITICAL_DATA = 0x0000800000000000; // Bit 47
|
constexpr int64_t MICROSOFT_KEYWORD_LEVEL_1 = 0x0000800000000000; // Bit 47
|
||||||
constexpr int64_t MICROSOFT_KEYWORD_MEASURES = 0x0000400000000000; // Bit 46
|
constexpr int64_t MICROSOFT_KEYWORD_LEVEL_2 = 0x0000400000000000; // Bit 46
|
||||||
constexpr int64_t MICROSOFT_KEYWORD_TELEMETRY = 0x0000200000000000; // Bit 45
|
constexpr int64_t MICROSOFT_KEYWORD_LEVEL_3 = 0x0000200000000000; // Bit 45
|
||||||
constexpr int64_t MICROSOFT_KEYWORD_RESERVED_44 = 0x0000100000000000; // Bit 44 (reserved for future assignment)
|
constexpr int64_t MICROSOFT_KEYWORD_RESERVED_44 = 0x0000100000000000; // Bit 44 (reserved for future assignment)
|
||||||
#else
|
#else
|
||||||
// define all Keyword options as 0 when we do not want to upload app telemetry
|
// define all Keyword options as 0 when we do not want to upload app telemetry
|
||||||
constexpr int64_t MICROSOFT_KEYWORD_CRITICAL_DATA = 0;
|
constexpr int64_t MICROSOFT_KEYWORD_LEVEL_1 = 0;
|
||||||
constexpr int64_t MICROSOFT_KEYWORD_MEASURES = 0;
|
constexpr int64_t MICROSOFT_KEYWORD_LEVEL_2 = 0;
|
||||||
constexpr int64_t MICROSOFT_KEYWORD_TELEMETRY = 0;
|
constexpr int64_t MICROSOFT_KEYWORD_LEVEL_3 = 0;
|
||||||
constexpr int64_t MICROSOFT_KEYWORD_RESERVED_44 = 0;
|
constexpr int64_t MICROSOFT_KEYWORD_RESERVED_44 = 0;
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
@ -59,7 +59,7 @@ namespace CalculatorApp
|
||||||
void AppLifecycleLogger::LogAppLifecycleEvent(hstring const& eventName, LoggingFields const& fields) const
|
void AppLifecycleLogger::LogAppLifecycleEvent(hstring const& eventName, LoggingFields const& fields) const
|
||||||
{
|
{
|
||||||
m_appLifecycleProvider.LogEvent(
|
m_appLifecycleProvider.LogEvent(
|
||||||
eventName, fields, LoggingLevel::Information, LoggingOptions(MICROSOFT_KEYWORD_TELEMETRY | WINEVENT_KEYWORD_RESPONSE_TIME));
|
eventName, fields, LoggingLevel::Information, LoggingOptions(MICROSOFT_KEYWORD_LEVEL_3 | WINEVENT_KEYWORD_RESPONSE_TIME));
|
||||||
}
|
}
|
||||||
#pragma endregion
|
#pragma endregion
|
||||||
|
|
||||||
|
|
|
@ -32,7 +32,7 @@ namespace CalculatorApp
|
||||||
// a) Decide the level of logging. This will help us in limiting recording of events only up to a certain level. See this link for guidance
|
// a) Decide the level of logging. This will help us in limiting recording of events only up to a certain level. See this link for guidance
|
||||||
// https://msdn.microsoft.com/en-us/library/windows/desktop/aa363742(v=vs.85).aspx We're using Verbose level for events that are called frequently and
|
// https://msdn.microsoft.com/en-us/library/windows/desktop/aa363742(v=vs.85).aspx We're using Verbose level for events that are called frequently and
|
||||||
// needed only for debugging or capturing perf for specific scenarios b) Should decide whether or not to log to telemetry and pass
|
// needed only for debugging or capturing perf for specific scenarios b) Should decide whether or not to log to telemetry and pass
|
||||||
// TraceLoggingKeyword(MICROSOFT_KEYWORD_TELEMETRY) accordingly c) Should accept a variable number of additional data arguments if needed
|
// TraceLoggingKeyword(MICROSOFT_KEYWORD_LEVEL_3) accordingly c) Should accept a variable number of additional data arguments if needed
|
||||||
void LogAppLifecycleEvent(winrt::hstring const& eventName, winrt::Windows::Foundation::Diagnostics::LoggingFields const& fields) const;
|
void LogAppLifecycleEvent(winrt::hstring const& eventName, winrt::Windows::Foundation::Diagnostics::LoggingFields const& fields) const;
|
||||||
void PopulateAppInfo(winrt::Windows::Foundation::Diagnostics::LoggingFields& fields) const;
|
void PopulateAppInfo(winrt::Windows::Foundation::Diagnostics::LoggingFields& fields) const;
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue