Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions output/schema/schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -124486,7 +124486,7 @@
"properties": [
{
"name": "current_watches",
"required": true,
"required": false,
"type": {
"kind": "array_of",
"value": {
Expand All @@ -124511,7 +124511,7 @@
},
{
"name": "queued_watches",
"required": true,
"required": false,
"type": {
"kind": "array_of",
"value": {
Expand Down
4 changes: 2 additions & 2 deletions output/typescript/types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -13096,9 +13096,9 @@ export interface WatcherActionsUsage {
}

export interface WatcherNodeStats {
current_watches: Array<WatchRecordStats>
current_watches?: Array<WatchRecordStats>
execution_thread_pool: ExecutionThreadPool
queued_watches: Array<WatchRecordQueuedStats>
queued_watches?: Array<WatchRecordQueuedStats>
watch_count: long
watcher_state: WatcherState
node_id: Id
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,9 +18,9 @@
*/

class WatcherNodeStats {
current_watches: WatchRecordStats[]
current_watches?: WatchRecordStats[]
execution_thread_pool: ExecutionThreadPool
queued_watches: WatchRecordQueuedStats[]
queued_watches?: WatchRecordQueuedStats[]
watch_count: long
watcher_state: WatcherState
node_id: Id
Expand Down