-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathmenu.yml
More file actions
1457 lines (1442 loc) · 53.7 KB
/
menu.yml
File metadata and controls
1457 lines (1442 loc) · 53.7 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
# Menu configuration for Admin Tool
#
# Structure:
# items: List of top-level menu items
# path: Unique path identifier for items containing sub-items
# title: Display title for the menu item
# items: List of sub-items (optional)
# route: endpoint to navigate to (GET requests) or to invoke (POST and DELETE requests)
# breadcrumb: whether to add a breadcrumb node for this item (optional, default: false)
# external: indicates that the menu item will link outside the Admin Tool (optional, default: false)
# this is represented with a link icon in the UI
# disable: comma-separated list of deployment environments where the item should be disabled and hidden
# classes: list of special CSS classes that will render an item greyed out when a resource such as a DB or ZK connection is not available
# tbd: indicates that the menu item has not been implemented yet (optional, default: false)
# method: HTTP method to use when invoking the route (optional, default: get)
# confmsg: Confirmation message to display when invoking a POST or DELETE route (optional, default: title)
# description: Markdown description to display on the page (optional)
# otherwise, a list of sub-items (based on route) will be displayed
items:
- path: home
title: AdminTool
items:
- title: Home
route: /
- title: Consistency Reports
route: /queries/consistency
breadcrumb: true
- title: Daily Consistency Checks
route: /queries/consistency/daily
- title: Batches
route: /ops/zk/ingest/batches
disable: ecs-dbsnapshot
- title: Jobs
route: /ops/zk/ingest/jobs-by-collection
disable: ecs-dbsnapshot
- path: about
title: About
items:
- title: Admin Tool Version
route: /version
- title: Admin Tool Context
route: /context
- title: Admin Tool Clients
route: /clients
- title: Merritt Manifest
route: /merritt_manifest
- title: Help
route: /help
- title: Admin Tool State
route: /state
- title: Admin Tool Metrics
route: /metrics
- title: Merritt Troubleshooting
route: https://github.com/CDLUC3/mrt-doc-private/blob/main/docs/system-recovery/README.md
external: true
- path: source
title: Source
route: /source
breadcrumb: true
disable: ecs-ephemeral, ecs-dbsnapshot, ecs-stg, ecs-prd
items:
- title: Tag Conventions
external: true
route: https://github.com/CDLUC3/mrt-admin-sinatra/blob/main/present/tagging/build.md
- title: Repostiory Tags
route: /source/tags
path: tags
breadcrumb: true
items:
- title: Admin Tool
route: /source/tags/admintool
- title: UI
route: /source/tags/ui
- title: Ingest
route: /source/tags/ingest
- title: Store
route: /source/tags/store
- title: Inventory
route: /source/tags/inventory
- title: Audit
route: /source/tags/audit
- title: Replic
route: /source/tags/replic
- title: Core
route: /source/tags/core
- title: Cloud
route: /source/tags/cloud
- title: ZK
route: /source/tags/zk
- title: Repository Images
route: /source/images
path: images
breadcrumb: true
items:
- title: Admin Tool
route: /source/images/admintool
- title: UI
route: /source/images/ui
- title: Ingest
route: /source/images/ingest
- title: Store
route: /source/images/store
- title: Inventory
route: /source/images/inventory
- title: Audit
route: /source/images/audit
- title: Replic
route: /source/images/replic
- title: Archive Images Cleanup
route: /source/archive-images
method: post
- title: Repository Artifacts
route: /source/artifacts
path: artifacts
breadcrumb: true
items:
- title: Ingest
route: /source/artifacts/ingest
- title: Store
route: /source/artifacts/store
- title: Inventory
route: /source/artifacts/inventory
- title: Audit
route: /source/artifacts/audit
- title: Replic
route: /source/artifacts/replic
- title: Core
route: /source/artifacts/core
- title: Core BOM
route: /source/artifacts/core-bom
- title: Core Parent Props
route: /source/artifacts/core-parprop
- title: Cloud
route: /source/artifacts/cloud
- title: ZK
route: /source/artifacts/zk
- title: Merritt ECS Manifest
route: /merritt_manifest
- title: Merritt EC2 Manifest
route: /merritt_ec2_manifest
- path: reports
title: Reports
classes: needs-db
items:
- path: repository
title: Repository
route: /queries/repository
breadcrumb: true
description: |
## Reports on the repository
- [By Campus](/queries/repository/campus)
- [By Collection](/queries/repository/collections)
- [By Owner](/queries/repository/owners)
- [By Mime Type](/queries/repository/mimes)
- [Campus Invoices](/queries/repository/campus/invoices)
items:
- path: campus
title: By Campus
route: /queries/repository/campus
breadcrumb: true
items:
- title: File/Byte Counts
route: /queries/repository/campus/bytes
- title: Object Counts
route: /queries/repository/campus/objects
- path: collection
title: By Collection
route: /queries/repository/collections
breadcrumb: true
items:
- title: File/Byte Counts
route: /queries/repository/collections/bytes
- title: Object Counts
route: /queries/repository/collections/objects
- path: all-time
title: Recent Years
items:
- title: Producer Files Added by Date (Last 5 Years)
route: /queries/repository/all-time/producer-files
- title: File Size Added by Date (Last 5 Years)
route: /queries/repository/all-time/file-size
- title: Cumulative File Size with - 3 Years + Forecast (GB)
route: /queries/repository/all-time/cuml-file-size
- path: last-year
title: Last 12 Months
items:
- title: Producer Files Added by Date (Last 12 months)
route: /queries/repository/last-year/producer-files
- title: File Size Added by Date (GB, Last 12 months)
route: /queries/repository/last-year/file-size
- path: last-month
title: Last Month
items:
- title: Producer Files Added by Date (Last 4 weeks)
route: /queries/repository/last-month/producer-files
- title: File Size Added by Date (GB, Last 4 weeks)
route: /queries/repository/last-month/file-size
- path: owner
title: By Owner
items:
- title: Owner Files/Bytes
route: /queries/repository/owners
- title: Collection Details
route: /queries/repository/collection
breadcrumb: true
description: |
## Collection Details
- title: Object Details - Search by Ark
route: /queries/repository/object-ark
breadcrumb: true
- title: Objects - Search by erc-what
route: /queries/repository/objects-erc-what
breadcrumb: true
- title: Objects - Search by erc-who
route: /queries/repository/objects-erc-who
breadcrumb: true
- title: Objects - Search by erc-when
route: /queries/repository/objects-erc-when
breadcrumb: true
- title: Objects - Search by filename
route: /queries/repository/objects-by-filename
breadcrumb: true
- title: Objects - Search by Local Id
route: /queries/repository/objects-localid
breadcrumb: true
- title: Objects - Search by Container
route: /queries/repository/objects-container
breadcrumb: true
- title: Object Details
route: /queries/repository/object
breadcrumb: true
description: |
## Object Details
- path: mimes
title: By Mime Type
route: /queries/repository/mimes
breadcrumb: true
items:
- path: campus
title: By Campus
route: /queries/repository/mimes/campus
breadcrumb: true
items:
- title: CDL
route: /queries/repository/mimes/campus/CDL
- title: UCB
route: /queries/repository/mimes/campus/UCB
- title: UCD
route: /queries/repository/mimes/campus/UCD
- title: UCI
route: /queries/repository/mimes/campus/UCI
- title: UCLA
route: /queries/repository/mimes/campus/UCLA
- title: UCM
route: /queries/repository/mimes/campus/UCM
- title: UCR
route: /queries/repository/mimes/campus/UCR
- title: UCSB
route: /queries/repository/mimes/campus/UCSB
- title: UCSC
route: /queries/repository/mimes/campus/UCSC
- title: UCSD
route: /queries/repository/mimes/campus/UCSD
- title: UCSF
route: /queries/repository/mimes/campus/UCSF
- title: Other
route: /queries/repository/mimes/campus/Other
- path: group
title: By Mime Group
route: /queries/repository/mimes/group
breadcrumb: true
items:
- title: software
route: /queries/repository/mimes/group/software
- title: audio
route: /queries/repository/mimes/group/audio
- title: container
route: /queries/repository/mimes/group/container
- title: data
route: /queries/repository/mimes/group/data
- title: geo
route: /queries/repository/mimes/group/geo
- title: image
route: /queries/repository/mimes/group/image
- title: software
route: /queries/repository/mimes/group/software
- title: text
route: /queries/repository/mimes/group/text
- title: video
route: /queries/repository/mimes/group/video
- title: web
route: /queries/repository/mimes/group/web
- title: Campus Invoices
path: invoices
route: /queries/repository/campus/invoices
breadcrumb: true
items:
- title: 'FY Begin 2022'
path: '2022'
route: /queries/repository/campus/invoices/2022
breadcrumb: true
items:
- title: CDL
route: /queries/repository/campus/invoices/2022/CDL
- title: UCB
route: /queries/repository/campus/invoices/2022/UCB
- title: UCD
route: /queries/repository/campus/invoices/2022/UCD
- title: UCI
route: /queries/repository/campus/invoices/2022/UCI
- title: UCLA
route: /queries/repository/campus/invoices/2022/UCLA
- title: UCM
route: /queries/repository/campus/invoices/2022/UCM
- title: UCR
route: /queries/repository/campus/invoices/2022/UCR
- title: UCSB
route: /queries/repository/campus/invoices/2022/UCSB
- title: UCSC
route: /queries/repository/campus/invoices/2022/UCSC
- title: UCSD
route: /queries/repository/campus/invoices/2022/UCSD
- title: UCSF
route: /queries/repository/campus/invoices/2022/UCSF
- title: Other
route: /queries/repository/campus/invoices/2022/Other
- title: 'FY Begin 2023'
path: '2023'
route: /queries/repository/campus/invoices/2023
breadcrumb: true
items:
- title: CDL
route: /queries/repository/campus/invoices/2023/CDL
- title: UCB
route: /queries/repository/campus/invoices/2023/UCB
- title: UCD
route: /queries/repository/campus/invoices/2023/UCD
- title: UCI
route: /queries/repository/campus/invoices/2023/UCI
- title: UCLA
route: /queries/repository/campus/invoices/2023/UCLA
- title: UCM
route: /queries/repository/campus/invoices/2023/UCM
- title: UCR
route: /queries/repository/campus/invoices/2023/UCR
- title: UCSB
route: /queries/repository/campus/invoices/2023/UCSB
- title: UCSC
route: /queries/repository/campus/invoices/2023/UCSC
- title: UCSD
route: /queries/repository/campus/invoices/2023/UCSD
- title: UCSF
route: /queries/repository/campus/invoices/2023/UCSF
- title: Other
route: /queries/repository/campus/invoices/2023/Other
- title: 'FY Begin 2024'
path: '2024'
route: /queries/repository/campus/invoices/2024
breadcrumb: true
items:
- title: CDL
route: /queries/repository/campus/invoices/2024/CDL
- title: UCB
route: /queries/repository/campus/invoices/2024/UCB
- title: UCD
route: /queries/repository/campus/invoices/2024/UCD
- title: UCI
route: /queries/repository/campus/invoices/2024/UCI
- title: UCLA
route: /queries/repository/campus/invoices/2024/UCLA
- title: UCM
route: /queries/repository/campus/invoices/2024/UCM
- title: UCR
route: /queries/repository/campus/invoices/2024/UCR
- title: UCSB
route: /queries/repository/campus/invoices/2024/UCSB
- title: UCSC
route: /queries/repository/campus/invoices/2024/UCSC
- title: UCSD
route: /queries/repository/campus/invoices/2024/UCSD
- title: UCSF
route: /queries/repository/campus/invoices/2024/UCSF
- title: Other
route: /queries/repository/campus/invoices/2024/Other
- title: 'FY Begin 2025'
path: '2025'
route: /queries/repository/campus/invoices/2025
breadcrumb: true
items:
- title: CDL
route: /queries/repository/campus/invoices/2025/CDL
- title: UCB
route: /queries/repository/campus/invoices/2025/UCB
- title: UCD
route: /queries/repository/campus/invoices/2025/UCD
- title: UCI
route: /queries/repository/campus/invoices/2025/UCI
- title: UCLA
route: /queries/repository/campus/invoices/2025/UCLA
- title: UCM
route: /queries/repository/campus/invoices/2025/UCM
- title: UCR
route: /queries/repository/campus/invoices/2025/UCR
- title: UCSB
route: /queries/repository/campus/invoices/2025/UCSB
- title: UCSC
route: /queries/repository/campus/invoices/2025/UCSC
- title: UCSD
route: /queries/repository/campus/invoices/2025/UCSD
- title: UCSF
route: /queries/repository/campus/invoices/2025/UCSF
- title: Other
route: /queries/repository/campus/invoices/2025/Other
- path: consistency
title: Consistency
route: /queries/consistency
breadcrumb: true
items:
- title: Daily Checks
route: /queries/consistency/daily
- path: replication
title: Replication
route: /queries/consistency/replication
breadcrumb: true
items:
- title: Object Replication - Only 2 Copies
route: /queries/consistency/replication/objects-2
- title: Object Replication - Only 1 Copy
route: /queries/consistency/replication/objects-1
- title: Object Replication - 4 Copies
route: /queries/consistency/replication/objects-4
- title: File Replication - Only 2 Copies
route: /queries/consistency/replication/files-2
- title: File Replication - Only 1 Copy
route: /queries/consistency/replication/files-1
- title: File Replication - 4 Copies
route: /queries/consistency/replication/files-4
- path: obj-comp
title: Obj Composition
route: /queries/consistency/obj-comp
breadcrumb: true
items:
- title: Version Clobber
route: /queries/consistency/obj-comp/version-clobber
- title: Objects no local id
route: /queries/consistency/obj-comp/objects-no-local-id
- title: Local id no Ark
route: /queries/consistency/obj-comp/local-id-no-ark
- title: Objects linked to multiple Collections
route: /queries/consistency/obj-comp/mult-colls
- path: recent-ingest
title: Recent Ingests
route: /queries/recent
breadcrumb: true
items:
- title: Recent Objects
route: /queries/recent/objects
- title: By Collection
route: /queries/recent/by-collection
- title: By Date
route: /queries/recent/ingests/today
- title: Recent Bytes ingested by hour
route: /queries/recent/bytes-by-hour
- title: Recent Bytes ingested by day - last 30 days
route: /queries/recent/bytes-by-day
- title: Bytes ingested by week - last year
route: /queries/recent/bytes-by-week
- title: Bytes ingested by Month
route: /queries/recent/bytes-by-month
- title: Bytes ingested by Year
route: /queries/recent/bytes-by-years
- path: use-cases
title: Use Cases
breadcrumb: true
route: /queries/use-cases
items:
- title: Largest Objects
route: /queries/use-cases/largest-objects
- title: Objects with most files
route: /queries/use-cases/most-files
- title: Objects with largest individual files
route: /queries/use-cases/largest-files
- title: Objects with non-ascii erc-what (mrt-demo)
route: /queries/use-cases/non-ascii-erc-what-mrt-demo
- title: Objects with non-ascii pathname (mrt-demo)
route: /queries/use-cases/non-ascii-pathname-mrt-demo
- title: Objects with long mime types - selected collections
route: /queries/use-cases/long-mime-type-selected-collections
- title: Objects with long pathnames - selected collections
route: /queries/use-cases/long-pathname-selected-collections
- path: content
title: Content Reports
breadcrumb: true
route: /queries/content
items:
- path: content
title: By Collection
breadcrumb: true
route: /queries/content/mnemonic
items:
- title: Producer File Preview (paginated)
route: /queries/content/mnemonic/producer-files-preview
- title: Producer File Listing (☁️)
route: /queries/content/mnemonic/producer-files
- title: UCSC Object Preview (paginated)
route: /queries/content/mnemonic/ucsc-objects-preview
- title: UCSC Object Listing (☁️)
route: /queries/content/mnemonic/ucsc-objects
- title: Saved Reports (☁️)
route: /saved-reports/list
description: |
Saved reports will expire after 28 days.
Presigned URLs will expire after 7 days. (we need to verify this)
- route: /queries/update-billing
title: Update Billing
method: post
- path: Operations
title: Operations
route: /ops
breadcrumb: true
items:
- path: zookeeper
title: ZooKeeper
route: /ops/zk
disable: ecs-dbsnapshot
classes: needs-zk
breadcrumb: true
items:
- path: zk-nodes
title: ZooKeeper Nodes
route: /ops/zk/nodes
breadcrumb: true
items:
- title: All Nodes
route: /ops/zk/nodes/node-names?zkpath=/&mode=node
- title: All Node Data
route: /ops/zk/nodes/node-names?zkpath=/&mode=data
- title: Batch UUID's
route: /ops/zk/nodes/node-names?zkpath=/batch-uuids&mode=data
- title: Batches
route: /ops/zk/nodes/node-names?zkpath=/batches&mode=node
- title: Jobs
route: /ops/zk/nodes/node-names?zkpath=/jobs&mode=node
- title: Jobs By State
route: /ops/zk/nodes/node-names?zkpath=/jobs/states&mode=node
- title: Locks
route: /ops/zk/nodes/node-names?zkpath=/locks&mode=node
- title: Access Nodes
route: /ops/zk/nodes/node-names?zkpath=/access&mode=node
- title: Orphan Report
route: /ops/zk/nodes/orphan
- path: force-failure
title: Force Failure
route: /ops/zk/nodes/force-failure
items:
- title: Batch Node no state folders
route: /ops/zk/nodes/force-failure/states
confmsg: This will create a batch node with no state folders.
method: post
- title: Job in Multiple Batch States
route: /ops/zk/nodes/force-failure/duplicate-batch-states
confmsg: This will create a job in multiple batch states.
method: post
- title: Job in Multiple Job States
route: /ops/zk/nodes/force-failure/duplicate-job-states
confmsg: This will create a job in multiple job states.
method: post
- title: Create a Batch Lock
route: /ops/zk/nodes/force-failure/lock
confmsg: This will create a batch lock that can become invalid after a period of time.
method: post
- path: ingest-queue
title: Ingest Queue
route: /ops/zk/ingest
breadcrumb: true
items:
- title: Ingest Batches
route: /ops/zk/ingest/batches
- title: Jobs by Collection
route: /ops/zk/ingest/jobs-by-collection
- title: Jobs by Collection and Batch
route: /ops/zk/ingest/jobs-by-collection-and-batch
- title: Ingest Queue Maintenance
route: /ops/zk/ingest/maintenance
- path: access-queue
title: Access Queue
route: /ops/zk/access
breadcrumb: true
items:
- title: View Queue
route: /ops/zk/access/jobs
- title: Access Queue Maintenance
route: /ops/zk/access/maintenance
- title: Create Fake Access Request
route: /ops/zk/access/fake
method: post
- title: ZK Maintenance
route: /ops/zk/maintenance
disable: ecs-stg, ecs-prd
- title: ZooKeeper Stat
disable: ecs-stg, ecs-prd
route: /ops/zk/stat
- path: ldap
title: LDAP
route: /ldap
classes: needs-ldap
breadcrumb: true
items:
- title: Users
route: /ldap/users
- title: Collections
route: /ldap/collections
- title: Missing LDAP Collections
route: /ldap/collections-missing
description: |
Generate a report that maps entities in the Merritt LDAP database to entries in the Merritt inventory database.
For any items that do not match, an error will be reported in the report.
This indicates that maintenance needs to be performed on the LDAP entries for Merritt.
- path: show-folders
title: File System
route: /ops/show-folders
breadcrumb: true
items:
- title: Ingest Folders
route: /ops/show-folders/list?path=/merritt-filesys/ingest/queue
- title: Show All Folders
route: /ops/show-folders/list
- title: Cleanup Ingest Folders
route: /ops/show-folders/cleanup
confmsg: This will cleanup ingest batches older than 30 days, RecycleBin items older than 3 days and ZK snapshots older than 3 days.
description: Choose "Operations -> Ingest Folders -> Cleanup Ingest Folders" from the menu
method: post
- path: force-failure
title: Force Failure
route: /ops/show-folders/force-failure
items:
- title: Estimating
route: /ops/show-folders/force-failure/estimating
confmsg: This will cause all Estimating jobs to fail until the failure file is removed from the ingest folder.
method: post
- title: Download
route: /ops/show-folders/force-failure/download
confmsg: This will cause all Downloading jobs to fail until the failure file is removed from the ingest folder.
method: post
- title: Notify
route: /ops/show-folders/force-failure/notify
confmsg: This will cause all Notify jobs to fail until the failure file is removed from the ingest folder.
method: post
- title: Provisioning
confmsg: This will cause all Provisioning jobs to fail until the failure file is removed from the ingest folder.
route: /ops/show-folders/force-failure/provisioning
method: post
- title: Processing
confmsg: This will cause all Processing jobs to fail until the failure file is removed from the ingest folder.
route: /ops/show-folders/force-failure/processing
method: post
- path: db-queue
title: Database Queues
route: /ops/db-queue
classes: needs-db
breadcrumb: true
items:
- path: replication-queue
title: Replication Queue
route: /ops/db-queue/replication
breadcrumb: true
items:
- title: Repl Required
route: /ops/db-queue/replication/required
- title: In Progress
route: /ops/db-queue/replication/in-progress
- title: Failed
route: /ops/db-queue/replication/failed
- title: Recent Activity
route: /ops/db-queue/replication/activity
breadcrumb: true
items:
- title: Last 10 Minutes
route: /ops/db-queue/replication/activity/last-10-min
- title: Last 6 Hours
route: /ops/db-queue/replication/activity/last-6-hours
- title: Last 24 Hours
route: /ops/db-queue/replication/activity/last-24-hours
- title: Last 7 Days
route: /ops/db-queue/replication/activity/7days
- title: Last 30 Days
route: /ops/db-queue/replication/activity/30days
- title: 30-60 Days Ago
route: /ops/db-queue/replication/activity/30-60-days-ago
- path: audit-queue
route: /ops/db-queue/audit
breadcrumb: true
title: Audit Queue
items:
- title: Oldest Audit Check
route: /ops/db-queue/audit/oldest-audit-check
- title: Active Batches
route: /ops/db-queue/audit/active-batches
- title: Counts by State
route: /ops/db-queue/audit/counts-by-state
- title: Audit - New UCB Content
route: /ops/db-queue/audit/new-ucb-content
- title: Audit - Reset New UCB Content
route: /ops/db-queue-update/audit/reset-new-ucb-content
- path: audit-stats
route: /ops/db-queue/audit/stats
title: Audit Stats
items:
- title: Stats, Last 30 days
route: /ops/db-queue/audit/30-days
- title: Stats, Last 90 days
route: /ops/db-queue/audit/90-days
- title: Stats, Last 180 days
route: /ops/db-queue/audit/180-days
- title: Stats, Last 365 days
route: /ops/db-queue/audit/365-days
- title: Recent Activity
route: /ops/db-queue/audit/activity
breadcrumb: true
items:
- title: Last 10 Minutes
route: /ops/db-queue/audit/activity/last-10-min
- title: Last 6 Hours
route: /ops/db-queue/audit/activity/last-6-hours
- title: Last 24 Hours
route: /ops/db-queue/audit/activity/last-24-hours
- path: collections
title: Collections
route: /ops/collections
classes: needs-db
breadcrumb: true
items:
- title: List Collections and Locks
route: /ops/collections/list
- path: management
title: Collection Creation
breadcrumb: true
route: /ops/collections/management
items:
- title: SLAs
route: /ops/collections/management/slas
- title: Create SLA
disable: ecs-dbsnapshot
route: /ops/collections/management/create-sla
- title: Owners
route: /ops/collections/management/owners
- title: Create Owner
disable: ecs-dbsnapshot
route: /ops/collections/management/create-owner
- title: Collections
route: /ops/collections/management/collections
- title: Create Collection
disable: ecs-dbsnapshot
route: /ops/collections/management/create-collection
- title: Ingest Profiles
route: /ops/collections/management/profiles
description: |
List all *ingest profiles* known to the ingest server.
An ingest profile describes characteristics associated with a collection's configuration,
such as its context mnemonic, description and primary storage node.
These profiles are managed in a github repository and are deployed to a configuration S3 bucket.
- title: Collection Creation Docs
route: https://github.com/CDLUC3/mrt-doc-private/blob/main/docs/system-recovery/colladmin-create-collection.md
external: true
- title: Storage Node Config
route: /ops/collections/storage-node-config
- path: db
title: DB config
route: /ops/collections/db
breadcrumb: true
items:
- title: Node cleanup needed (slow)
route: /ops/collections/db/node-cleanup-needed
- title: Non standard primary config (slow)
route: /ops/collections/db/primary-config
- title: Non standard secondary config
route: /ops/collections/db/secondary-config
- path: storage
route: /ops/storage
breadcrumb: true
classes: needs-db
title: Storage
items:
- title: Storage Config
route: /ops/storage/storage-config
disable: ecs-dbsnapshot
- title: Storage Nodes
route: /ops/storage/db/nodes
- path: metrics
route: /ops/metrics
breadcrumb: true
disable: ecs-dbsnapshot, ecs-stg
title: Metrics
items:
- path: benchmark-retrieval
route: /ops/metrics/benchmark-retrieval
breadcrumb: true
title: Benchmark Retrieval
items:
- path: 7day
title: 7 days, 15 min
breadcrumb: true
items:
- title: README (7 days)
disable: ecs-prd
route: /ops/metrics/benchmark-retrieval/README.md
- title: 100MB (7 days)
disable: ecs-dev, docker, ecs-ephemeral
route: /ops/metrics/benchmark-retrieval/100_mb_random.dat?offset_days=7&period_min=15
- title: 20MB (7 days)
disable: ecs-dev, docker, ecs-ephemeral
route: /ops/metrics/benchmark-retrieval/20_mb_random.dat
- path: 30day
title: 30 days, 6 hours
breadcrumb: true
items:
- title: README (30 days)
disable: ecs-prd
route: /ops/metrics/benchmark-retrieval/README.md?offset_days=30&period_min=360
- title: 100MB (30 days)
disable: ecs-dev, docker, ecs-ephemeral
route: /ops/metrics/benchmark-retrieval/100_mb_random.dat?offset_days=30&period_min=360
- title: 20MB (30 days)
disable: ecs-dev, docker, ecs-ephemeral
route: /ops/metrics/benchmark-retrieval/20_mb_random.dat?offset_days=30&period_min=360
- path: 90day
title: 90 days, 24 hours
breadcrumb: true
items:
- title: README (90 days)
disable: ecs-prd
route: /ops/metrics/benchmark-retrieval/README.md?offset_days=90&period_min=1440
- title: 100MB (90 days)
disable: ecs-dev, docker, ecs-ephemeral
route: /ops/metrics/benchmark-retrieval/100_mb_random.dat?offset_days=90&period_min=1440
- title: 20MB (90 days)
disable: ecs-dev, docker, ecs-ephemeral
route: /ops/metrics/benchmark-retrieval/20_mb_random.dat?offset_days=90&period_min=1440
- title: Delete List Review
route: /ops/inventory/delete-lists
disable: ecs-dbsnapshot
- title: Storage Scans
route: /ops/storage/scans
disable: ecs-dbsnapshot
- title: Cloudwatch Logs
route: /ops/cloudwatch
disable: default, docker
- title: Opensearch Logs
route: /ops/opensearch
disable: default, docker
- path: cluster
title: Cluster
route: /infra/ecs
breadcrumb: true
items:
- title: Services
path: services
route: /infra/ecs/services
breadcrumb: true
items:
- title: Deployment State
route: /infra/ecs/services/state
disable: default, docker
- title: UI
path: ui
route: /infra/ecs/services/ui
breadcrumb: true
items:
- title: UI State
route: /json/ui/state
- title: UI Audit Replic State
route: /json/ui/audit-replic
- title: Redeploy UI
route: /infra/ecs/redeploy/ui
disable: default, docker
confmsg: This will re-deploy the UI service in ECS.
method: post
- title: Retag and Redeploy UI
route: /infra/ecs/retag-redeploy/ui
disable: default, docker
confmsg: This will re-deploy the UI service in ECS.
method: post
- title: UI Logs
route: /ops/cloudwatch/logs/ui
- title: UI Errors
disable: default, docker
route: /opensearch/logs/level/ui
- title: UI Reqs 400+
disable: default, docker
route: /opensearch/logs/status_code/ui
- title: UI Reqs 500+
disable: default, docker
route: /opensearch/logs/status_code/ui?status_code=500
- title: Ingest
path: ingest
route: /infra/ecs/services/ingest
disable: ecs-dbsnapshot
breadcrumb: true
items:
- title: Ingest State
route: /json/ingest/state
- title: Ingest Build Tag
route: /json/ingest/tag
- title: Redeploy Ingest
route: /infra/ecs/redeploy/ingest
confmsg: This will re-deploy the Ingest service in ECS.
method: post
- title: Scale Up Ingest
route: /infra/ecs/scale-up/ingest
disable: default, docker
confmsg: This will scale up the number of Ingest tasks running in ECS unless the maximum configured number has been reached.
method: post
- title: Scale Down Ingest
route: /infra/ecs/scale-down/ingest
disable: default, docker
confmsg: This will scale down the number of Ingest tasks running in ECS unless the minimum configured number has been reached.
method: post
- title: Ingest Logs
route: /ops/cloudwatch/logs/ingest
- title: Ingest Errors
disable: default, docker
route: /opensearch/logs/level/ingest
- title: Ingest Reqs 400+
disable: default, docker
route: /opensearch/logs/status_code/ingest
- title: Ingest Reqs 500+
disable: default, docker
route: /opensearch/logs/status_code/ingest?status_code=500
- title: Store
path: store
disable: ecs-dbsnapshot
route: /infra/ecs/services/store
breadcrumb: true
items:
- title: Store State
route: /json/store/state
- title: Store State by Node
route: /json/store/jsonstatus
- title: Store Build Tag
route: /json/store/tag
- title: Store Nodes
route: /json/store/nodes
- title: Store Hostname
route: /json/store/hostname
- title: Redeploy Store
route: /infra/ecs/redeploy/store
disable: default, docker
confmsg: This will re-deploy the Store service in ECS.
method: post
- title: Scale Up Store
route: /infra/ecs/scale-up/store
disable: default, docker
confmsg: This will scale up the number of Store tasks running in ECS unless the maximum configured number has been reached.
method: post
- title: Scale Down Store
route: /infra/ecs/scale-down/store
confmsg: This will scale down the number of Store tasks running in ECS unless the minimum configured number has been reached.
disable: default, docker
method: post
- title: Store Logs
route: /ops/cloudwatch/logs/store
- title: Store Errors
disable: default, docker
route: /opensearch/logs/level/store
- title: Store Reqs 400+
disable: default, docker
route: /opensearch/logs/status_code/store
- title: Store Reqs 500+
disable: default, docker
route: /opensearch/logs/status_code/store?status_code=500
- title: Inventory
path: inventory
route: /infra/ecs/services/inventory
disable: ecs-dbsnapshot
breadcrumb: true
items:
- title: Inventory State
route: /json/inventory/state
- title: Inventory Build Tag
route: /json/inventory/tag
- title: Inventory Start
confmsg: This will signal the Inventory service to process items in the database queue.
method: post
route: /json/inventory/start
- title: Inventory Stop
route: /json/inventory/stop
confmsg: This will signal the Inventory service to stop processing items in the database queue.
method: post
- title: Inventory Admin Init
route: /json/inventory/admin-init
disable: ecs-stg, ecs-prd
confmsg: This will signal the Inventory service to initialize the creation of Admin Objects.
method: post
- title: Redeploy Inventory
route: /infra/ecs/redeploy/inventory
disable: default, docker
confmsg: This will re-deploy the Inventory service in ECS.
method: post