CloudWatch Logs: Add pattern command to syntax (#76152)

This commit is contained in:
Isabella Siu 2023-10-16 10:46:17 -04:00 committed by GitHub
parent 1bc3bb4a60
commit 2054c53877
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -10,12 +10,13 @@ interface CloudWatchLogsLanguage extends monacoType.languages.IMonarchLanguage {
export const DISPLAY = 'display';
export const FIELDS = 'fields';
export const FILTER = 'filter';
export const PATTERN = 'pattern';
export const STATS = 'stats';
export const SORT = 'sort';
export const LIMIT = 'limit';
export const PARSE = 'parse';
export const DEDUP = 'dedup';
export const LOGS_COMMANDS = [DISPLAY, FIELDS, FILTER, STATS, SORT, LIMIT, PARSE, DEDUP];
export const LOGS_COMMANDS = [DISPLAY, FIELDS, FILTER, PATTERN, STATS, SORT, LIMIT, PARSE, DEDUP];
export const LOGS_LOGIC_OPERATORS = ['and', 'or', 'not'];