Skip to content

Commit 008b1e8

Browse files
author
Kusto Build System
committed
Auto-sync from Azure-Kusto-Service
1 parent 12b841d commit 008b1e8

2 files changed

Lines changed: 12 additions & 2 deletions

File tree

src/Kusto.Language/Parser/CodeGen/EngineCommandGrammar.cs

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6314,6 +6314,11 @@ internal override CommandParserInfo[] CreateCommandParsers(PredefinedRuleParsers
63146314
Token("show", CompletionKind.CommandPrefix),
63156315
Token("threadpools")));
63166316

6317+
var ShowWhatsGoingOn = Command("ShowWhatsGoingOn",
6318+
Custom(
6319+
Token("show", CompletionKind.CommandPrefix),
6320+
Token("whatsgoingon")));
6321+
63176322
var ExecuteDatabaseScript = Command("ExecuteDatabaseScript",
63186323
Custom(
63196324
Token("execute", CompletionKind.CommandPrefix),
@@ -6725,7 +6730,7 @@ internal override CommandParserInfo[] CreateCommandParsers(PredefinedRuleParsers
67256730
var ShowExtentDetails = Command("ShowExtentDetails",
67266731
Custom(
67276732
Token("show", CompletionKind.CommandPrefix),
6728-
If(Not(And(Token("database", "cluster", "databases", "ingestion", "tables", "table", "functions", "function", "external", "fabric", "workload_groups", "workload_group", "column", "materialized-view", "graph_model", "mirroring-template", "mirroring-templates", "principal", "continuous-export", "continuous-exports", "materialized-views", "diagnostics", "capacity", "operations", "operation", "journal", "queries", "running", "queryplan", "cache", "commands", "commands-and-queries", "data", "version", "stored_query_results", "stored_query_result", "graph_models", "graph_snapshot", "graph_snapshots", "certificates", "cloudsettings", "commconcurrency", "commpools", "fabriccache", "fabriclocks", "fabricclocks", "featureflags", "mempools", "servicepoints", "tcpconnections", "tcpports", "threadpools", "request_support", "entity_group", "entity_groups", "extentcontainers", "entity", "follower", "freshness", "memory", "plugins", "queryexecution", "rowstore", "rowstores", "schema", "callstacks", "filesystem", "streamingingestion", "query", "extents"))), rules.NameDeclaration),
6733+
If(Not(And(Token("database", "cluster", "databases", "ingestion", "tables", "table", "functions", "function", "external", "fabric", "workload_groups", "workload_group", "column", "materialized-view", "graph_model", "mirroring-template", "mirroring-templates", "principal", "continuous-export", "continuous-exports", "materialized-views", "diagnostics", "capacity", "operations", "operation", "journal", "queries", "running", "queryplan", "cache", "commands", "commands-and-queries", "data", "version", "stored_query_results", "stored_query_result", "graph_models", "graph_snapshot", "graph_snapshots", "certificates", "cloudsettings", "commconcurrency", "commpools", "fabriccache", "fabriclocks", "fabricclocks", "featureflags", "mempools", "servicepoints", "tcpconnections", "tcpports", "threadpools", "whatsgoingon", "request_support", "entity_group", "entity_groups", "extentcontainers", "entity", "follower", "freshness", "memory", "plugins", "queryexecution", "rowstore", "rowstores", "schema", "callstacks", "filesystem", "streamingingestion", "query", "extents"))), rules.NameDeclaration),
67296734
Token("extent"),
67306735
Optional(Token("details")),
67316736
Optional(
@@ -6739,7 +6744,7 @@ internal override CommandParserInfo[] CreateCommandParsers(PredefinedRuleParsers
67396744
var ShowExtentColumnStorageStats = Command("ShowExtentColumnStorageStats",
67406745
Custom(
67416746
Token("show", CompletionKind.CommandPrefix),
6742-
If(Not(And(Token("database", "cluster", "databases", "ingestion", "tables", "table", "functions", "function", "external", "fabric", "workload_groups", "workload_group", "column", "materialized-view", "graph_model", "mirroring-template", "mirroring-templates", "principal", "continuous-export", "continuous-exports", "materialized-views", "diagnostics", "capacity", "operations", "operation", "journal", "queries", "running", "queryplan", "cache", "commands", "commands-and-queries", "data", "version", "stored_query_results", "stored_query_result", "graph_models", "graph_snapshot", "graph_snapshots", "certificates", "cloudsettings", "commconcurrency", "commpools", "fabriccache", "fabriclocks", "fabricclocks", "featureflags", "mempools", "servicepoints", "tcpconnections", "tcpports", "threadpools", "request_support", "entity_group", "entity_groups", "extentcontainers", "entity", "follower", "freshness", "memory", "plugins", "queryexecution", "rowstore", "rowstores", "schema", "callstacks", "filesystem", "streamingingestion", "query", "extents"))), rules.NameDeclaration),
6747+
If(Not(And(Token("database", "cluster", "databases", "ingestion", "tables", "table", "functions", "function", "external", "fabric", "workload_groups", "workload_group", "column", "materialized-view", "graph_model", "mirroring-template", "mirroring-templates", "principal", "continuous-export", "continuous-exports", "materialized-views", "diagnostics", "capacity", "operations", "operation", "journal", "queries", "running", "queryplan", "cache", "commands", "commands-and-queries", "data", "version", "stored_query_results", "stored_query_result", "graph_models", "graph_snapshot", "graph_snapshots", "certificates", "cloudsettings", "commconcurrency", "commpools", "fabriccache", "fabriclocks", "fabricclocks", "featureflags", "mempools", "servicepoints", "tcpconnections", "tcpports", "threadpools", "whatsgoingon", "request_support", "entity_group", "entity_groups", "extentcontainers", "entity", "follower", "freshness", "memory", "plugins", "queryexecution", "rowstore", "rowstores", "schema", "callstacks", "filesystem", "streamingingestion", "query", "extents"))), rules.NameDeclaration),
67436748
Token("extent"),
67446749
rules.AnyGuidLiteralOrString,
67456750
Token("column"),
@@ -8289,6 +8294,7 @@ internal override CommandParserInfo[] CreateCommandParsers(PredefinedRuleParsers
82898294
new CommandParserInfo("ShowTcpConnections", ShowTcpConnections),
82908295
new CommandParserInfo("ShowTcpPorts", ShowTcpPorts),
82918296
new CommandParserInfo("ShowThreadPools", ShowThreadPools),
8297+
new CommandParserInfo("ShowWhatsGoingOn", ShowWhatsGoingOn),
82928298
new CommandParserInfo("ExecuteDatabaseScript", ExecuteDatabaseScript),
82938299
new CommandParserInfo("ExecuteClusterScript", ExecuteClusterScript),
82948300
new CommandParserInfo("CreateRequestSupport", CreateRequestSupport),

src/Kusto.Language/Parser/CodeGen/EngineCommands.cs

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1593,6 +1593,9 @@ public static class EngineCommands
15931593
public static readonly CommandSymbol ShowThreadPools =
15941594
new CommandSymbol("ShowThreadPools", _schema19);
15951595

1596+
public static readonly CommandSymbol ShowWhatsGoingOn =
1597+
new CommandSymbol("ShowWhatsGoingOn", _schema19);
1598+
15961599
public static readonly CommandSymbol ExecuteDatabaseScript =
15971600
new CommandSymbol("ExecuteDatabaseScript", _schema19);
15981601

@@ -2457,6 +2460,7 @@ public static class EngineCommands
24572460
ShowTcpConnections,
24582461
ShowTcpPorts,
24592462
ShowThreadPools,
2463+
ShowWhatsGoingOn,
24602464
ExecuteDatabaseScript,
24612465
ExecuteClusterScript,
24622466
CreateRequestSupport,

0 commit comments

Comments
 (0)