-
Notifications
You must be signed in to change notification settings - Fork 91
Expand file tree
/
Copy pathusage_errors.out
More file actions
1465 lines (1202 loc) · 55 KB
/
Copy pathusage_errors.out
File metadata and controls
1465 lines (1202 loc) · 55 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
EXECUTING COMMAND: omdb []
termination: Exited(2)
---------------------------------------------
stdout:
---------------------------------------------
stderr:
Omicron debugger (unstable)
Usage: omdb [OPTIONS] <COMMAND>
Commands:
clickhouse-admin Operate on a single-node ClickHouse admin server
crucible-agent Debug a specific crucible-agent
crucible-pantry Query a specific crucible-pantry
db Query the control plane database (CockroachDB)
mgs Debug a specific Management Gateway Service instance
nexus Debug a specific Nexus instance
oximeter Query oximeter collector state
oxql Enter the Oximeter Query Language shell for interactive querying
reconfigurator Interact with the Reconfigurator system
sled-agent Debug a specific Sled
support-bundle Collect or inspect a support bundle
timesync Monitor time synchronization
help Print this message or the help of the given subcommand(s)
Options:
--log-level <LOG_LEVEL> log level filter [env: LOG_LEVEL=] [default: warn]
--color <COLOR> Color output [default: auto] [possible values: auto, always, never]
-h, --help Print help (see more with '--help')
Connection Options:
--dns-server <DNS_SERVER> [env: OMDB_DNS_SERVER=]
Safety Options:
-w, --destructive Allow potentially-destructive subcommands
=============================================
EXECUTING COMMAND: omdb ["--help"]
termination: Exited(0)
---------------------------------------------
stdout:
Omicron debugger (unstable)
This tool provides commands for directly querying Omicron components about their internal state
using internal APIs. This is a prototype. The commands and output are unstable and may change.
Usage: omdb [OPTIONS] <COMMAND>
Commands:
clickhouse-admin Operate on a single-node ClickHouse admin server
crucible-agent Debug a specific crucible-agent
crucible-pantry Query a specific crucible-pantry
db Query the control plane database (CockroachDB)
mgs Debug a specific Management Gateway Service instance
nexus Debug a specific Nexus instance
oximeter Query oximeter collector state
oxql Enter the Oximeter Query Language shell for interactive querying
reconfigurator Interact with the Reconfigurator system
sled-agent Debug a specific Sled
support-bundle Collect or inspect a support bundle
timesync Monitor time synchronization
help Print this message or the help of the given subcommand(s)
Options:
--log-level <LOG_LEVEL>
log level filter
[env: LOG_LEVEL=]
[default: warn]
--color <COLOR>
Color output
[default: auto]
[possible values: auto, always, never]
-h, --help
Print help (see a summary with '-h')
Connection Options:
--dns-server <DNS_SERVER>
[env: OMDB_DNS_SERVER=]
Safety Options:
-w, --destructive
Allow potentially-destructive subcommands
---------------------------------------------
stderr:
=============================================
EXECUTING COMMAND: omdb ["not-a-command"]
termination: Exited(2)
---------------------------------------------
stdout:
---------------------------------------------
stderr:
error: unrecognized subcommand 'not-a-command'
Usage: omdb [OPTIONS] <COMMAND>
For more information, try '--help'.
=============================================
EXECUTING COMMAND: omdb ["--not-a-command"]
termination: Exited(2)
---------------------------------------------
stdout:
---------------------------------------------
stderr:
error: unexpected argument '--not-a-command' found
Usage: omdb [OPTIONS] <COMMAND>
For more information, try '--help'.
=============================================
EXECUTING COMMAND: omdb ["db"]
termination: Exited(2)
---------------------------------------------
stdout:
---------------------------------------------
stderr:
Query the control plane database (CockroachDB)
Usage: omdb db [OPTIONS] <COMMAND>
Commands:
sql Launch `cockroach-sql`
blueprints Print information about blueprints
db-metadata Commands for database metadata
crucible-dataset Commands relevant to Crucible datasets
replacements-to-do Print any Crucible resources that are located on expunged physical
disks
rack Print information about the rack
disks Print information about virtual disks
dns Print information about internal and external DNS
ereport Query and display error reports
inventory Print information about collected hardware/software inventory
physical-disks Print information about physical disks
region Print information about regions
region-replacement Query for information about region replacements, optionally manually
triggering one
region-snapshot-replacement Query for information about region snapshot replacements, optionally
manually triggering one
saga Commands for querying and interacting with sagas
sitrep Commands for querying and interacting with fault management situation
reports
sitreps Show the current history of fault management situation reports
sleds Print information about sleds
sled-instances Show instances grouped by the sled they are running on
target-release Print the current target release and the update date
instance Print information about customer instances
instances Alias to `omdb instance list`
network Print information about the network
migrations Print information about migrations
multicast Print information about multicast groups
snapshots Print information about snapshots
validate Validate the contents of the database
volumes Print information about volumes
vmm Print information about Propolis virtual machine manager (VMM)
processes
vmms Alias to `omdb db vmm list`
oximeter Print information about the oximeter collector
alert Print information about alerts
zpool Commands for querying and interacting with pools
user-data-export Commands for querying and interacting with user data export objects
whatis Given a UUID, try to figure out what type of object it refers to
trust-quorum Print information about trust quorum configurations
help Print this message or the help of the given subcommand(s)
Options:
--log-level <LOG_LEVEL> log level filter [env: LOG_LEVEL=] [default: warn]
--color <COLOR> Color output [default: auto] [possible values: auto, always, never]
-h, --help Print help
Connection Options:
--db-url <DB_URL> URL of the database SQL interface [env: OMDB_DB_URL=]
--dns-server <DNS_SERVER> [env: OMDB_DNS_SERVER=]
Database Options:
--fetch-limit <FETCH_LIMIT> limit to apply to queries that fetch rows [env:
OMDB_FETCH_LIMIT=] [default: 500]
--include-deleted whether to include soft-deleted records when enumerating objects
that can be soft-deleted
Safety Options:
-w, --destructive Allow potentially-destructive subcommands
=============================================
EXECUTING COMMAND: omdb ["db", "--help"]
termination: Exited(0)
---------------------------------------------
stdout:
Query the control plane database (CockroachDB)
Usage: omdb db [OPTIONS] <COMMAND>
Commands:
sql Launch `cockroach-sql`
blueprints Print information about blueprints
db-metadata Commands for database metadata
crucible-dataset Commands relevant to Crucible datasets
replacements-to-do Print any Crucible resources that are located on expunged physical
disks
rack Print information about the rack
disks Print information about virtual disks
dns Print information about internal and external DNS
ereport Query and display error reports
inventory Print information about collected hardware/software inventory
physical-disks Print information about physical disks
region Print information about regions
region-replacement Query for information about region replacements, optionally manually
triggering one
region-snapshot-replacement Query for information about region snapshot replacements, optionally
manually triggering one
saga Commands for querying and interacting with sagas
sitrep Commands for querying and interacting with fault management situation
reports
sitreps Show the current history of fault management situation reports
sleds Print information about sleds
sled-instances Show instances grouped by the sled they are running on
target-release Print the current target release and the update date
instance Print information about customer instances
instances Alias to `omdb instance list`
network Print information about the network
migrations Print information about migrations
multicast Print information about multicast groups
snapshots Print information about snapshots
validate Validate the contents of the database
volumes Print information about volumes
vmm Print information about Propolis virtual machine manager (VMM)
processes
vmms Alias to `omdb db vmm list`
oximeter Print information about the oximeter collector
alert Print information about alerts
zpool Commands for querying and interacting with pools
user-data-export Commands for querying and interacting with user data export objects
whatis Given a UUID, try to figure out what type of object it refers to
trust-quorum Print information about trust quorum configurations
help Print this message or the help of the given subcommand(s)
Options:
--log-level <LOG_LEVEL> log level filter [env: LOG_LEVEL=] [default: warn]
--color <COLOR> Color output [default: auto] [possible values: auto, always, never]
-h, --help Print help
Connection Options:
--db-url <DB_URL> URL of the database SQL interface [env: OMDB_DB_URL=]
--dns-server <DNS_SERVER> [env: OMDB_DNS_SERVER=]
Database Options:
--fetch-limit <FETCH_LIMIT> limit to apply to queries that fetch rows [env:
OMDB_FETCH_LIMIT=] [default: 500]
--include-deleted whether to include soft-deleted records when enumerating objects
that can be soft-deleted
Safety Options:
-w, --destructive Allow potentially-destructive subcommands
---------------------------------------------
stderr:
=============================================
EXECUTING COMMAND: omdb ["db", "disks"]
termination: Exited(2)
---------------------------------------------
stdout:
---------------------------------------------
stderr:
Print information about virtual disks
Usage: omdb db disks [OPTIONS] <COMMAND>
Commands:
info Get info for a specific disk
list Summarize current disks
physical Determine what crucible resources are on the given physical disk
help Print this message or the help of the given subcommand(s)
Options:
--log-level <LOG_LEVEL> log level filter [env: LOG_LEVEL=] [default: warn]
--color <COLOR> Color output [default: auto] [possible values: auto, always, never]
-h, --help Print help
Connection Options:
--db-url <DB_URL> URL of the database SQL interface [env: OMDB_DB_URL=]
--dns-server <DNS_SERVER> [env: OMDB_DNS_SERVER=]
Database Options:
--fetch-limit <FETCH_LIMIT> limit to apply to queries that fetch rows [env:
OMDB_FETCH_LIMIT=] [default: 500]
--include-deleted whether to include soft-deleted records when enumerating objects
that can be soft-deleted
Safety Options:
-w, --destructive Allow potentially-destructive subcommands
=============================================
EXECUTING COMMAND: omdb ["db", "dns"]
termination: Exited(2)
---------------------------------------------
stdout:
---------------------------------------------
stderr:
Print information about internal and external DNS
Usage: omdb db dns [OPTIONS] <COMMAND>
Commands:
show Summarize current version of all DNS zones
diff Show what changed in a given DNS version
names Show the full contents of a given DNS zone and version
help Print this message or the help of the given subcommand(s)
Options:
--log-level <LOG_LEVEL> log level filter [env: LOG_LEVEL=] [default: warn]
--color <COLOR> Color output [default: auto] [possible values: auto, always, never]
-h, --help Print help
Connection Options:
--db-url <DB_URL> URL of the database SQL interface [env: OMDB_DB_URL=]
--dns-server <DNS_SERVER> [env: OMDB_DNS_SERVER=]
Database Options:
--fetch-limit <FETCH_LIMIT> limit to apply to queries that fetch rows [env:
OMDB_FETCH_LIMIT=] [default: 500]
--include-deleted whether to include soft-deleted records when enumerating objects
that can be soft-deleted
Safety Options:
-w, --destructive Allow potentially-destructive subcommands
=============================================
EXECUTING COMMAND: omdb ["db", "dns", "diff"]
termination: Exited(2)
---------------------------------------------
stdout:
---------------------------------------------
stderr:
error: the following required arguments were not provided:
<GROUP>
<VERSION>
Usage: omdb db dns diff <GROUP> <VERSION>
For more information, try '--help'.
=============================================
EXECUTING COMMAND: omdb ["db", "dns", "names"]
termination: Exited(2)
---------------------------------------------
stdout:
---------------------------------------------
stderr:
error: the following required arguments were not provided:
<GROUP>
<VERSION>
Usage: omdb db dns names <GROUP> <VERSION>
For more information, try '--help'.
=============================================
EXECUTING COMMAND: omdb ["db", "inventory", "--help"]
termination: Exited(0)
---------------------------------------------
stdout:
Print information about collected hardware/software inventory
Usage: omdb db inventory [OPTIONS] <COMMAND>
Commands:
baseboard-ids list all baseboards ever found
cabooses list all cabooses ever found
collections list and show details from particular collections
physical-disks show all physical disks ever found
rot-pages list all root of trust pages ever found
help Print this message or the help of the given subcommand(s)
Options:
--log-level <LOG_LEVEL> log level filter [env: LOG_LEVEL=] [default: warn]
--color <COLOR> Color output [default: auto] [possible values: auto, always, never]
-h, --help Print help
Connection Options:
--db-url <DB_URL> URL of the database SQL interface [env: OMDB_DB_URL=]
--dns-server <DNS_SERVER> [env: OMDB_DNS_SERVER=]
Database Options:
--fetch-limit <FETCH_LIMIT> limit to apply to queries that fetch rows [env:
OMDB_FETCH_LIMIT=] [default: 500]
--include-deleted whether to include soft-deleted records when enumerating objects
that can be soft-deleted
Safety Options:
-w, --destructive Allow potentially-destructive subcommands
---------------------------------------------
stderr:
=============================================
EXECUTING COMMAND: omdb ["db", "inventory", "collections", "--help"]
termination: Exited(0)
---------------------------------------------
stdout:
list and show details from particular collections
Usage: omdb db inventory collections [OPTIONS] <COMMAND>
Commands:
list list collections
show show what was found in a particular collection
help Print this message or the help of the given subcommand(s)
Options:
--log-level <LOG_LEVEL> log level filter [env: LOG_LEVEL=] [default: warn]
--color <COLOR> Color output [default: auto] [possible values: auto, always, never]
-h, --help Print help
Connection Options:
--db-url <DB_URL> URL of the database SQL interface [env: OMDB_DB_URL=]
--dns-server <DNS_SERVER> [env: OMDB_DNS_SERVER=]
Database Options:
--fetch-limit <FETCH_LIMIT> limit to apply to queries that fetch rows [env:
OMDB_FETCH_LIMIT=] [default: 500]
--include-deleted whether to include soft-deleted records when enumerating objects
that can be soft-deleted
Safety Options:
-w, --destructive Allow potentially-destructive subcommands
---------------------------------------------
stderr:
=============================================
EXECUTING COMMAND: omdb ["db", "inventory", "collections", "show"]
termination: Exited(2)
---------------------------------------------
stdout:
---------------------------------------------
stderr:
error: the following required arguments were not provided:
<ID_OR_LATEST>
Usage: omdb db inventory collections show <ID_OR_LATEST>
For more information, try '--help'.
=============================================
EXECUTING COMMAND: omdb ["db", "inventory", "collections", "show", "--help"]
termination: Exited(0)
---------------------------------------------
stdout:
show what was found in a particular collection
Usage: omdb db inventory collections show [OPTIONS] <ID_OR_LATEST> [COMMAND]
Commands:
all show all information from the collection
sp show information about service processors (baseboard)
orphaned-datasets show orphaned datasets
help Print this message or the help of the given subcommand(s)
Arguments:
<ID_OR_LATEST> id of the collection (or `latest`)
Options:
--log-level <LOG_LEVEL> log level filter [env: LOG_LEVEL=] [default: warn]
--show-long-strings show long strings in their entirety
--color <COLOR> Color output [default: auto] [possible values: auto, always, never]
-h, --help Print help
Connection Options:
--db-url <DB_URL> URL of the database SQL interface [env: OMDB_DB_URL=]
--dns-server <DNS_SERVER> [env: OMDB_DNS_SERVER=]
Database Options:
--fetch-limit <FETCH_LIMIT> limit to apply to queries that fetch rows [env:
OMDB_FETCH_LIMIT=] [default: 500]
--include-deleted whether to include soft-deleted records when enumerating objects
that can be soft-deleted
Safety Options:
-w, --destructive Allow potentially-destructive subcommands
---------------------------------------------
stderr:
=============================================
EXECUTING COMMAND: omdb ["db", "inventory", "collections", "show", "all", "--help"]
termination: Exited(0)
---------------------------------------------
stdout:
show all information from the collection
Usage: omdb db inventory collections show <ID_OR_LATEST> all [OPTIONS]
Options:
--log-level <LOG_LEVEL> log level filter [env: LOG_LEVEL=] [default: warn]
--color <COLOR> Color output [default: auto] [possible values: auto, always, never]
-h, --help Print help
Connection Options:
--db-url <DB_URL> URL of the database SQL interface [env: OMDB_DB_URL=]
--dns-server <DNS_SERVER> [env: OMDB_DNS_SERVER=]
Database Options:
--fetch-limit <FETCH_LIMIT> limit to apply to queries that fetch rows [env:
OMDB_FETCH_LIMIT=] [default: 500]
--include-deleted whether to include soft-deleted records when enumerating objects
that can be soft-deleted
Safety Options:
-w, --destructive Allow potentially-destructive subcommands
---------------------------------------------
stderr:
=============================================
EXECUTING COMMAND: omdb ["db", "inventory", "collections", "show", "sp", "--help"]
termination: Exited(0)
---------------------------------------------
stdout:
show information about service processors (baseboard)
Usage: omdb db inventory collections show <ID_OR_LATEST> sp [OPTIONS] [SERIAL]
Arguments:
[SERIAL] show only information about one SP
Options:
--log-level <LOG_LEVEL> log level filter [env: LOG_LEVEL=] [default: warn]
--color <COLOR> Color output [default: auto] [possible values: auto, always, never]
-h, --help Print help
Connection Options:
--db-url <DB_URL> URL of the database SQL interface [env: OMDB_DB_URL=]
--dns-server <DNS_SERVER> [env: OMDB_DNS_SERVER=]
Database Options:
--fetch-limit <FETCH_LIMIT> limit to apply to queries that fetch rows [env:
OMDB_FETCH_LIMIT=] [default: 500]
--include-deleted whether to include soft-deleted records when enumerating objects
that can be soft-deleted
Safety Options:
-w, --destructive Allow potentially-destructive subcommands
---------------------------------------------
stderr:
=============================================
EXECUTING COMMAND: omdb ["db", "ereport"]
termination: Exited(2)
---------------------------------------------
stdout:
---------------------------------------------
stderr:
Query and display error reports
Usage: omdb db ereport [OPTIONS] <COMMAND>
Commands:
list List ereports
info Show an ereport
reporters List ereport reporters
classes Summarize ereports by class, marking which classes a diagnosis engine in Nexus consumes
(fetched from Nexus's lockstep API; falls back to `?` if Nexus is unreachable)
help Print this message or the help of the given subcommand(s)
Options:
--log-level <LOG_LEVEL> log level filter [env: LOG_LEVEL=] [default: warn]
--color <COLOR> Color output [default: auto] [possible values: auto, always, never]
-h, --help Print help
Connection Options:
--db-url <DB_URL> URL of the database SQL interface [env: OMDB_DB_URL=]
--dns-server <DNS_SERVER> [env: OMDB_DNS_SERVER=]
Database Options:
--fetch-limit <FETCH_LIMIT> limit to apply to queries that fetch rows [env:
OMDB_FETCH_LIMIT=] [default: 500]
--include-deleted whether to include soft-deleted records when enumerating objects
that can be soft-deleted
Safety Options:
-w, --destructive Allow potentially-destructive subcommands
=============================================
EXECUTING COMMAND: omdb ["db", "ereport", "list", "--help"]
termination: Exited(0)
---------------------------------------------
stdout:
List ereports
Usage: omdb db ereport list [OPTIONS]
Options:
--log-level <LOG_LEVEL>
log level filter
[env: LOG_LEVEL=]
[default: warn]
-s, --serial <SERIALS>
Include only ereports from systems with the provided serial numbers
-i, --id <IDS>
Include only ereports from the provided reporter restart IDs
-c, --class <CLASSES>
Include only ereports with the provided class strings
-b, --before <BEFORE>
Include only ereports collected before this timestamp
--color <COLOR>
Color output
[default: auto]
[possible values: auto, always, never]
-a, --after <AFTER>
Include only ereports collected after this timestamp
-m, --seen <SEEN>
Filter ereports based on whether or not their database records have been marked as "seen"
(included in a committed sitrep).
Note that ereports which have not been marked in the database *may* still have been
included in a sitrep. Marking of ereport database records occurs in the background, and
may not be up to date with the latest sitrep. If an ereport has been marked as seen, it
has *definitely* been included in a committed sitrep, but if an ereport has not been
marked, it *may or may not* have been included in a committed sitrep.
Possible values:
- all: Include all ereports, regardless of whether or not they have been marked
- marked: Include only ereports whose database records have been marked as seen
- unmarked: Include only ereports whose database records have NOT been marked as seen
[default: all]
-h, --help
Print help (see a summary with '-h')
Connection Options:
--db-url <DB_URL>
URL of the database SQL interface
[env: OMDB_DB_URL=]
--dns-server <DNS_SERVER>
[env: OMDB_DNS_SERVER=]
Database Options:
--fetch-limit <FETCH_LIMIT>
limit to apply to queries that fetch rows
[env: OMDB_FETCH_LIMIT=]
[default: 500]
--include-deleted
whether to include soft-deleted records when enumerating objects that can be soft-deleted
Safety Options:
-w, --destructive
Allow potentially-destructive subcommands
---------------------------------------------
stderr:
=============================================
EXECUTING COMMAND: omdb ["db", "ereport", "reporters", "--help"]
termination: Exited(0)
---------------------------------------------
stdout:
List ereport reporters
Usage: omdb db ereport reporters [OPTIONS] [SERIAL]
Arguments:
[SERIAL]
Options:
--log-level <LOG_LEVEL> log level filter [env: LOG_LEVEL=] [default: warn]
-t, --type <SLOT_TYPE>
-s, --slot <SLOT>
--color <COLOR> Color output [default: auto] [possible values: auto, always, never]
-h, --help Print help
Connection Options:
--db-url <DB_URL> URL of the database SQL interface [env: OMDB_DB_URL=]
--dns-server <DNS_SERVER> [env: OMDB_DNS_SERVER=]
Database Options:
--fetch-limit <FETCH_LIMIT> limit to apply to queries that fetch rows [env:
OMDB_FETCH_LIMIT=] [default: 500]
--include-deleted whether to include soft-deleted records when enumerating objects
that can be soft-deleted
Safety Options:
-w, --destructive Allow potentially-destructive subcommands
---------------------------------------------
stderr:
=============================================
EXECUTING COMMAND: omdb ["db", "ereport", "info", "--help"]
termination: Exited(0)
---------------------------------------------
stdout:
Show an ereport
Usage: omdb db ereport info [OPTIONS] <RESTART_ID> <ENA>
Arguments:
<RESTART_ID>
The reporter restart UUID of the ereport to show
<ENA>
The ENA of the ereport within the reporter restart
Options:
-j, --json
If set, output the ereport as JSON, rather than using the default human-readable format.
Note that this will output a JSON object containing the raw ereport data along with
additional metadata from the database record for this ereport. To emit *only* the original
JSON received from the reporter, add the `--raw` flag in addition to `--json`.
--log-level <LOG_LEVEL>
log level filter
[env: LOG_LEVEL=]
[default: warn]
-r, --raw
If outputting the ereport as JSON, output *only* the raw JSON received from the reporter
in its original form, omitting additional metadata from the database
--color <COLOR>
Color output
[default: auto]
[possible values: auto, always, never]
-h, --help
Print help (see a summary with '-h')
Connection Options:
--db-url <DB_URL>
URL of the database SQL interface
[env: OMDB_DB_URL=]
--dns-server <DNS_SERVER>
[env: OMDB_DNS_SERVER=]
Database Options:
--fetch-limit <FETCH_LIMIT>
limit to apply to queries that fetch rows
[env: OMDB_FETCH_LIMIT=]
[default: 500]
--include-deleted
whether to include soft-deleted records when enumerating objects that can be soft-deleted
Safety Options:
-w, --destructive
Allow potentially-destructive subcommands
---------------------------------------------
stderr:
=============================================
EXECUTING COMMAND: omdb ["db", "sleds", "--help"]
termination: Exited(0)
---------------------------------------------
stdout:
Print information about sleds
Usage: omdb db sleds [OPTIONS]
Options:
-F, --filter <FILTER>
Show sleds that match the given filter
Possible values:
- all: All sleds in the system, regardless of policy or state
- commissioned: All sleds that are currently part of the control plane
cluster
- decommissioned: All sleds that were previously part of the control plane
cluster but have been decommissioned
- discretionary: Sleds that are eligible for discretionary services
- in-service: Sleds that are in service (even if they might not be
eligible for discretionary services)
- query-during-inventory: Sleds whose sled agents should be queried for inventory
- reservation-create: Sleds on which reservations can be created
- vpc-routing: Sleds which should be sent OPTE V2P mappings and Routing
rules
- vpc-firewall: Sleds which should be sent VPC firewall rules
- tuf-artifact-replication: Sleds which should have TUF repo artifacts replicated
onto them
- sps-updated-by-reconfigurator: Sleds whose SPs should be updated by Reconfigurator
--log-level <LOG_LEVEL>
log level filter
[env: LOG_LEVEL=]
[default: warn]
--color <COLOR>
Color output
[default: auto]
[possible values: auto, always, never]
-h, --help
Print help (see a summary with '-h')
Connection Options:
--db-url <DB_URL>
URL of the database SQL interface
[env: OMDB_DB_URL=]
--dns-server <DNS_SERVER>
[env: OMDB_DNS_SERVER=]
Database Options:
--fetch-limit <FETCH_LIMIT>
limit to apply to queries that fetch rows
[env: OMDB_FETCH_LIMIT=]
[default: 500]
--include-deleted
whether to include soft-deleted records when enumerating objects that can be soft-deleted
Safety Options:
-w, --destructive
Allow potentially-destructive subcommands
---------------------------------------------
stderr:
=============================================
EXECUTING COMMAND: omdb ["db", "sitrep", "--help"]
termination: Exited(0)
---------------------------------------------
stdout:
Commands for querying and interacting with fault management situation reports
Usage: omdb db sitrep [OPTIONS] <COMMAND>
Commands:
history List the current situation report history
current Show the current situation report
info Show details on a situation report
help Print this message or the help of the given subcommand(s)
Options:
--log-level <LOG_LEVEL> log level filter [env: LOG_LEVEL=] [default: warn]
--color <COLOR> Color output [default: auto] [possible values: auto, always, never]
-h, --help Print help
Connection Options:
--db-url <DB_URL> URL of the database SQL interface [env: OMDB_DB_URL=]
--dns-server <DNS_SERVER> [env: OMDB_DNS_SERVER=]
Database Options:
--fetch-limit <FETCH_LIMIT> limit to apply to queries that fetch rows [env:
OMDB_FETCH_LIMIT=] [default: 500]
--include-deleted whether to include soft-deleted records when enumerating objects
that can be soft-deleted
Safety Options:
-w, --destructive Allow potentially-destructive subcommands
---------------------------------------------
stderr:
=============================================
EXECUTING COMMAND: omdb ["db", "saga"]
termination: Exited(2)
---------------------------------------------
stdout:
---------------------------------------------
stderr:
Commands for querying and interacting with sagas
Usage: omdb db saga [OPTIONS] <COMMAND>
Commands:
running List running sagas
inject-error Inject an error into a saga's currently running node(s)
abandon Prevent new Nexus processes from resuming execution of a saga
show Show the execution of a saga
help Print this message or the help of the given subcommand(s)
Options:
--log-level <LOG_LEVEL> log level filter [env: LOG_LEVEL=] [default: warn]
--color <COLOR> Color output [default: auto] [possible values: auto, always, never]
-h, --help Print help
Connection Options:
--db-url <DB_URL> URL of the database SQL interface [env: OMDB_DB_URL=]
--dns-server <DNS_SERVER> [env: OMDB_DNS_SERVER=]
Database Options:
--fetch-limit <FETCH_LIMIT> limit to apply to queries that fetch rows [env:
OMDB_FETCH_LIMIT=] [default: 500]
--include-deleted whether to include soft-deleted records when enumerating objects
that can be soft-deleted
Safety Options:
-w, --destructive Allow potentially-destructive subcommands
=============================================
EXECUTING COMMAND: omdb ["db", "snapshots"]
termination: Exited(2)
---------------------------------------------
stdout:
---------------------------------------------
stderr:
Print information about snapshots
Usage: omdb db snapshots [OPTIONS] <COMMAND>
Commands:
info Get info for a specific snapshot
list Summarize current snapshots
help Print this message or the help of the given subcommand(s)
Options:
--log-level <LOG_LEVEL> log level filter [env: LOG_LEVEL=] [default: warn]
--color <COLOR> Color output [default: auto] [possible values: auto, always, never]
-h, --help Print help
Connection Options:
--db-url <DB_URL> URL of the database SQL interface [env: OMDB_DB_URL=]
--dns-server <DNS_SERVER> [env: OMDB_DNS_SERVER=]
Database Options:
--fetch-limit <FETCH_LIMIT> limit to apply to queries that fetch rows [env:
OMDB_FETCH_LIMIT=] [default: 500]
--include-deleted whether to include soft-deleted records when enumerating objects
that can be soft-deleted
Safety Options:
-w, --destructive Allow potentially-destructive subcommands
=============================================
EXECUTING COMMAND: omdb ["db", "multicast"]
termination: Exited(2)
---------------------------------------------
stdout:
---------------------------------------------
stderr:
Print information about multicast groups
Usage: omdb db multicast [OPTIONS] <COMMAND>
Commands:
groups List all multicast groups
members List all multicast group members
pools List multicast IP pools and their ranges
info Get detailed info for a multicast group
help Print this message or the help of the given subcommand(s)
Options:
--log-level <LOG_LEVEL> log level filter [env: LOG_LEVEL=] [default: warn]
--color <COLOR> Color output [default: auto] [possible values: auto, always, never]
-h, --help Print help
Connection Options:
--db-url <DB_URL> URL of the database SQL interface [env: OMDB_DB_URL=]
--dns-server <DNS_SERVER> [env: OMDB_DNS_SERVER=]
Database Options:
--fetch-limit <FETCH_LIMIT> limit to apply to queries that fetch rows [env:
OMDB_FETCH_LIMIT=] [default: 500]
--include-deleted whether to include soft-deleted records when enumerating objects
that can be soft-deleted
Safety Options:
-w, --destructive Allow potentially-destructive subcommands
=============================================
EXECUTING COMMAND: omdb ["db", "network"]
termination: Exited(2)
---------------------------------------------
stdout:
---------------------------------------------
stderr:
Print information about the network
Usage: omdb db network [OPTIONS] <COMMAND>
Commands:
list-eips List external IPs
list-vnics List virtual network interfaces
help Print this message or the help of the given subcommand(s)
Options:
--log-level <LOG_LEVEL> log level filter [env: LOG_LEVEL=] [default: warn]
--verbose Print out raw data structures from the data store
--color <COLOR> Color output [default: auto] [possible values: auto, always, never]
-h, --help Print help
Connection Options:
--db-url <DB_URL> URL of the database SQL interface [env: OMDB_DB_URL=]
--dns-server <DNS_SERVER> [env: OMDB_DNS_SERVER=]
Database Options:
--fetch-limit <FETCH_LIMIT> limit to apply to queries that fetch rows [env:
OMDB_FETCH_LIMIT=] [default: 500]
--include-deleted whether to include soft-deleted records when enumerating objects
that can be soft-deleted
Safety Options:
-w, --destructive Allow potentially-destructive subcommands
=============================================
EXECUTING COMMAND: omdb ["mgs"]
termination: Exited(2)
---------------------------------------------
stdout:
---------------------------------------------
stderr:
Debug a specific Management Gateway Service instance
Usage: omdb mgs [OPTIONS] <COMMAND>
Commands: