move server report ext to extensions (#14087)

* move server report ext to extensions

* limit the size of data

* comments
This commit is contained in:
Alan Ren
2021-01-28 13:23:30 -08:00
committed by GitHub
parent f9ea6430ee
commit c16aee760f
59 changed files with 535 additions and 4885 deletions

View File

@@ -0,0 +1,17 @@
/*---------------------------------------------------------------------------------------------
* Copyright (c) Microsoft Corporation. All rights reserved.
* Licensed under the Source EULA. See License.txt in the project root for license information.
*--------------------------------------------------------------------------------------------*/
'use strict';
import * as nls from 'vscode-nls';
const localize = nls.loadMessageBundle();
// TempDB Messages
export const XEventsFailed = localize('XEventsFailed', 'XEvents operation failed.');
export const XEventsStarted = localize('XEventsStarted', 'XEvents sessions started for PageContention and ObjectContention.');
export const XEventsNotSupported = localize('XEventsNotSupported', 'XEvents sessions not supported.');
export const XEventsStopped = localize('XEventsStopped', 'XEvents sessions PageContention and ObjectContention removed.');
// CONFIG VALUES ///////////////////////////////////////////////////////////
export const extensionConfigSectionName = 'server-reports';
export const configLogDebugInfo = 'logDebugInfo';