-
Notifications
You must be signed in to change notification settings - Fork 283
/
Copy pathtoc.yml
1388 lines (1388 loc) · 61.3 KB
/
toc.yml
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
items:
- name: Automation
topicUid: automation
items:
- name: Managing Automation scripts
topicUid: Managing_Automation_scripts
- name: Designing Automation scripts
topicUid: Designing_Automation_scripts
items:
- name: General script configuration
topicUid: General_script_configuration
- name: Script variables
topicUid: Script_variables
- name: Script actions
topicUid: Script_actions
- name: Automation script actions in DataMiner Cube
topicUid: Automation_script_actions_in_DataMiner_Cube
items:
- name: Assign dummy
topicUid: Assign_dummy
- name: Assign template
topicUid: Assign_template
- name: C# code
topicUid: CSharp_code
- name: Clear memory
topicUid: Clear_memory
- name: Comment
topicUid: Comment
- name: Email
topicUid: Email
- name: Exit
topicUid: Exit
- name: Find interactive client
topicUid: Find_interactive_client
- name: Get parameter or memory value
topicUid: Get_parameter_or_memory_value
- name: GoTo and Label
topicUid: GoTo_and_Label
- name: If condition
topicUid: If_condition
- name: Information
topicUid: Information
- name: Log
topicUid: Log
- name: Script
topicUid: Script
- name: Set parameter, memory position or variable
topicUid: Set_parameter_memory_position_or_variable
- name: Set element state
topicUid: Set_element_state
- name: Sleep
topicUid: Sleep
- name: SMS
topicUid: SMS
- name: Upload report to FTP
topicUid: Upload_report_to_FTP
- name: Upload report to shared folder
topicUid: Upload_report_to_shared_folder
- name: User interaction
topicUid: User_interaction
- name: Running Automation scripts
topicUid: Running_Automation_scripts
items:
- name: Manually executing a script
topicUid: Manually_executing_a_script
- name: Script execution options
topicUid: Script_execution_options
- name: Using C# code in Automation scripts
topicUid: Using_CSharp_code_in_Automation_scripts
items:
- name: Adding C# code to an Automation script
topicUid: Adding_CSharp_code_to_an_Automation_script
- name: Debugging C# scripts
topicUid: Debugging_CSharp_scripts
- name: Building interactive Automation scripts with C#
topicUid: Building_interactive_Automation_scripts_with_CSharp
- name: Compiling a C# code block as a library
topicUid: Compiling_a_CSharp_code_block_as_a_library
- name: Special parameters available in Automation scripts
topicUid: Special_parameters_available_in_DMS_Automation_scripts
- name: Alarm level IDs for use in Automation scripts
topicUid: Alarm_level_IDs_for_use_in_Automation_scripts
- name: Automation scripts triggered from redundancy groups
topicUid: Automation_scripts_triggered_from_redundancy_groups
- name: Frequently asked questions about DataMiner Automation
topicUid: Frequently_asked_questions_about_DMS_Automation
items:
- name: How can I execute an Automation Script on an element in timeout?
topicUid: How_can_I_execute_an_Automation_Script_on_an_element_in_timeout
- name: How do I abort a running Automation script?
topicUid: How_do_I_abort_a_running_Automation_script
- name: How do I retrieve the current value of a script parameter?
topicUid: How_do_I_retrieve_the_current_value_of_a_script_parameter
- name: How do I connect to a CMDB from an Automation script?
topicUid: How_do_I_connect_to_a_CMDB_from_an_Automation_script
- name: How do I parse Correlation Alarm Info data?
topicUid: How_do_I_parse_Correlation_Alarm_Info_data
- name: How can I manage permanent memory files?
topicUid: How_can_I_manage_permanent_memory_files
- name: Business Intelligence
topicUid: sla
items:
- name: Creating an SLA
items:
- name: Creating a new SLA
topicUid: Creating_a_new_SLA
- name: Replicating an existing SLA
topicUid: Replicating_an_existing_SLA
- name: Configuring an SLA
items:
- name: Setting the SLA Window
topicUid: Setting_the_SLA_Window
- name: Setting the offline window for an SLA
topicUid: Setting_the_offline_window_for_an_SLA
- name: Configuring the alarm settings for an SLA
topicUid: Configuring_the_alarm_settings_for_an_SLA
- name: Turning SLA tracking on and off
topicUid: Turning_SLA_tracking_on_and_off
- name: Resetting the SLA counters
topicUid: Resetting_the_SLA_counters
- name: Setting the time to keep outages
topicUid: Setting_the_time_to_keep_outages
- name: Setting the SLA start and end time
topicUid: Setting_the_SLA_start_and_end_time
- name: Configuring SLA Compliance
topicUid: Configuring_SLA_Compliance
- name: Making an SLA generate tickets
topicUid: Making_an_SLA_generate_tickets
- name: Saving and loading an SLA configuration
topicUid: Saving_and_loading_an_SLA_configuration
- name: Changing an SLA into an enhanced service
topicUid: Changing_an_SLA_into_an_enhanced_service
- name: Viewing SLA information
items:
- name: Consulting general SLA information
topicUid: Consulting_general_SLA_information
- name: Checking SLA Key Performance Indicators
topicUid: Checking_SLA_Key_Performance_Indicators
- name: Checking the SLA compliance
topicUid: Checking_the_SLA_compliance
- name: Viewing a list of outages
topicUid: Viewing_a_list_of_outages
- name: Viewing a list of current active service alarms
topicUid: Viewing_a_list_of_current_active_service_alarms
- name: Making corrections to existing outages
items:
- name: Correcting an outage in the outage list
topicUid: Correcting_an_outage_in_the_outage_list
- name: Excluding alarms that affect the SLA
topicUid: Excluding_alarms_that_affect_the_SLA
- name: SLA reporting
topicUid: SLA_reporting
- name: Tutorials
items:
- name: Using an SLA to monitor a power service
topicUid: SLA_tutorial
- name: Correlation
items:
- name: About DataMiner Correlation
topicUid: About_DMS_Correlation
- name: Managing Correlation rules
topicUid: Managing_Correlation_rules
items:
- name: Collapsing and expanding folders
topicUid: Collapsing_and_expanding_folders
- name: Adding a new folder
topicUid: Adding_a_new_folder
- name: Moving rules or folders
topicUid: Moving_rules_or_folders
- name: Deleting a rule or folder
topicUid: Deleting_a_rule_or_folder
- name: Renaming a folder
topicUid: Renaming_a_folder
- name: Adding a new Correlation rule
topicUid: Adding_a_new_Correlation_rule
- name: Testing a Correlation rule
topicUid: Testing_a_Correlation_rule
- name: General configuration of Correlation rules
topicUid: General_configuration_of_Correlation_rules
- name: Filtering and grouping base alarms for Correlation rules
topicUid: Filtering_and_grouping_base_alarms_for_Correlation_rules
items:
- name: Adding alarm filters to Correlation rules
topicUid: Adding_alarm_filters_to_Correlation_rules
- name: Limiting the base alarms
topicUid: Limiting_the_base_alarms
- name: Grouping alarms in Correlation rules
topicUid: Grouping_alarms_in_Correlation_rules
- name: Adding rule conditions in Correlation rules
topicUid: Adding_rule_conditions_in_Correlation_rules
- name: Adding rule actions in Correlation rules
topicUid: Adding_rule_actions_in_Correlation_rules
items:
- name: Acknowledging a base alarm
topicUid: Acknowledging_a_base_alarm
- name: Creating a ticket
topicUid: Creating_a_ticket
- name: Escalating an event
topicUid: Escalating_an_event
- name: Triggering a correlated alarm
topicUid: Triggering_a_correlated_alarm
- name: Running an Automation script from a Correlation rule
topicUid: Running_an_Automation_script_from_a_Correlation_rule
- name: Sending an email
topicUid: Sending_an_email
- name: Sending a text message
topicUid: Sending_a_text_message
- name: Triggering a parameter set
topicUid: Triggering_a_parameter_set
- name: Best practices when creating Correlation rules
topicUid: Best_Practices_When_Creating_Correlation_Rules
- name: DataMiner Correlation tutorials
items:
- name: Responding to element timeouts using Correlation
topicUid: Correlation_Tutorial_Element_Timeout
- name: Correlation rule syntax
topicUid: Correlation_rule_syntax
items:
- name: Condition format
topicUid: Condition_format
- name: Script condition functions
topicUid: Script_condition_functions
- name: Examples of script conditions
topicUid: Examples_of_script_conditions
- name: Using Correlation analyzers
topicUid: Using_Correlation_analyzers
items:
- name: Creating an analyzer
topicUid: Creating_an_analyzer
- name: Configuring an analyzer
topicUid: Configuring_an_analyzer
- name: Running an analyzer
topicUid: Running_an_analyzer
- name: Managing analyzers
topicUid: Managing_analyzers
- name: Working with the Connectivity Editor
topicUid: Working_with_the_Connectivity_Editor
items:
- name: Creating a connectivity chain
topicUid: Creating_a_connectivity_chain
- name: Creating an internal connectivity chain
topicUid: Creating_an_internal_connectivity_chain
- name: Managing connectivity chains
topicUid: Managing_connectivity_chains
- name: Working with aggregation rules
topicUid: Working_with_aggregation_rules
items:
- name: About aggregation rules
topicUid: About_aggregation_rules
- name: Viewing aggregation information
topicUid: Viewing_aggregation_information
- name: Managing aggregation rules
topicUid: Managing_aggregation_rules
- name: Dashboards and Low-Code Apps
topicUid: Dashboards_and_Low_Code_Apps
items:
- name: Dashboards app
topicUid: newR_D
items:
- name: Accessing the Dashboards app
topicUid: Accessing_the_Dashboards_app
- name: Overview of the Dashboards app UI
topicUid: Overview_of_the_Dashboards_app_UI
- name: Managing dashboard folders
topicUid: Managing_dashboard_folders
- name: Creating and configuring dashboards
items:
- name: Creating a completely new dashboard
topicUid: Creating_a_completely_new_dashboard
- name: Creating a dashboard based on an example
topicUid: Creating_a_dashboard_based_on_an_example
- name: Duplicating a dashboard
topicUid: Duplicating_a_dashboard
- name: Deleting a dashboard
topicUid: Deleting_a_dashboard
- name: Editing a dashboard
topicUid: Editing_a_dashboard
- name: Changing dashboard settings
topicUid: Changing_dashboard_settings
- name: Configuring security for a dashboard
topicUid: Configuring_dashboard_security
- name: Configuring the dashboard layout
topicUid: Configuring_the_dashboard_layout
- name: Embedding a dashboard component in a webpage or Visio drawing
topicUid: Embedding_a_dashboard_component_in_a_webpage_or_Visio_drawing
- name: Specifying data input in a dashboard or app URL
topicUid: Specifying_data_input_in_a_URL
- name: Sharing a dashboard
topicUid: Sharing_a_dashboard
- name: Generating a report based on a dashboard
items:
- name: From DataMiner Cube
topicUid: Generating_a_report_based_on_a_dashboard_Cube
- name: From the Dashboards app
topicUid: Sharing_PDF_report_from_Dashboards_app
- name: Customizing the Dashboards app
topicUid: Customizing_the_Dashboards_app
- name: Dashboard Gateway installation
topicUid: Dashboard_Gateway_installation
- name: Tutorials
topicUid: Tutorial_Dashboards
items:
- name: Displaying a custom empty component message
topicUid: Tutorial_Dashboards_Displaying_a_custom_empty_component_message
- name: Leveraging feeds in a web component
topicUid: Tutorial_Dashboards_Feeds_Web_Component
- name: Leveraging controls and feeds to create a dynamic GQI query
topicUid: Tutorial_Dashboards_Controls_And_Feeds_Query
- name: Getting started with node edge graphs
topicUid: Tutorial_Apps_Node_Edge
- name: Creating a parameter table connected to an element feed
topicUid: Creating_a_parameter_table_connected_to_an_element_feed
- name: Creating an alarm dashboard for a daily DMS health check
topicUid: Tutorial_Alarm_Dashboard_for_your_daily_DMS_health_check
- name: Low-Code Apps
topicUid: Application_framework
items:
- name: Accessing the Low-Code Apps module
topicUid: Accessing_custom_apps
- name: Creating low-code applications
topicUid: Creating_custom_apps
- name: Editing a low-code application
topicUid: Editing_custom_apps
- name: Configuring low-code applications
items:
- name: Configuring the low-code app layout
topicUid: LowCodeApps_Layout
- name: Configuring a page of a low-code app
topicUid: LowCodeApps_page_config
- name: Configuring a panel of a low-code app
topicUid: LowCodeApps_panel_config
- name: Changing low-code app settings
topicUid: Changing_low-code_app_settings
- name: Configuring the header bar of a low-code app page
topicUid: LowCodeApps_header_config
- name: Configuring low-code app events
topicUid: LowCodeApps_event_config
- name: Configuring security for a low-code app
topicUid: LowCodeApps_security_config
- name: Retrieving an earlier version of a low-code app
topicUid: LowCodeApps_earlier_version
- name: Organizing the apps on the landing page in sections
topicUid: LowCodeApps_organizing_landing_page
- name: Deleting a low-code application
topicUid: Deleting_custom_apps
- name: Configuring app actions and behavior via the URL
topicUid: Configuring_app_actions_and_behavior_via_URL
- name: Tutorials
topicUid: Tutorial_Apps
items:
- name: Creating and publishing an app
topicUid: Tutorial_Apps_Creating_And_Publishing
- name: Editing an existing app
topicUid: Tutorial_Apps_Edit_Existing_App
- name: Managing the pages in an app
topicUid: Tutorial_Apps_Managing_Pages
- name: Creating and showing a panel
topicUid: Tutorial_Apps_Panel
- name: Using a header bar
topicUid: Tutorial_Apps_Headerbar
- name: Running a script when a page opens
topicUid: Tutorial_Apps_Script_Upon_Page_Load
- name: Chaining actions
topicUid: Tutorial_Apps_Chaining_Actions
- name: Using the stepper component in a low-code app
topicUid: TutorialStepper
- name: Styling a table component
topicUid: Tutorial_Apps_Style_A_Table
- name: Using the maps component in a low-code app
topicUid: TutorialMaps
- name: Getting started with the grid component
topicUid: Tutorial_Apps_Grid
- name: Creating a visually appealing and user-friendly low-code app
topicUid: Tutorial_App_Design
- name: Using flows in a low-code app
topicUid: Tutorial_Apps_Flows
- name: Using variables in a low-code app
topicUid: Tutorial_Apps_Variables
- name: Creating a custom event scheduler low-code app
topicUid: Tutorial_Custom_Event_Scheduler_LCA
- name: Visualizing the Starlink location history in DataMiner
topicUid: Tutorial_Visualizing_Starlink_Location_History_in_DataMiner
- name: Configuring components
topicUid: Configuring_components
items:
- name: Applying a visualization
topicUid: Apply_Visualization
- name: Adding data to a component
topicUid: Adding_data_to_component
- name: Customizing the component layout
topicUid: Customize_Component_Layout
- name: Dynamically referencing data in text
topicUid: Dynamically_Referencing_Data_in_Text
- name: Using the Template Editor
topicUid: Template_Editor
- name: Deleting a component
topicUid: Delete_Component
- name: Available visualizations
topicUid: Available_visualizations
items:
- name: General
items:
- name: Block
topicUid: DashboardBlock
- name: Button
topicUid: DashboardButton
- name: Button panel
topicUid: DashboardButtonPanel
- name: Form
topicUid: DashboardForm
- name: Text
topicUid: DashboardText
- name: Image
topicUid: DashboardImage
- name: Icon
topicUid: DashboardIcon
- name: Generic map
topicUid: DashboardGenericMap
- name: Clock (digital)
topicUid: DashboardClockDigital
- name: Clock (analog)
topicUid: DashboardClockAnalog
- name: Group
topicUid: DashboardGroup
- name: Maps
topicUid: DashboardMaps
- name: Query filter
topicUid: DashboardQueryFilter
- name: Stepper
topicUid: DashboardStepper
- name: Trigger
topicUid: DashboardTrigger
- name: Web
topicUid: DashboardWeb
- name: Time range
topicUid: DashboardTimeRange
- name: States and values
items:
- name: State
topicUid: DashboardState
- name: Progress bar
topicUid: DashboardProgressBar
- name: Gauge
topicUid: DashboardGauge
- name: Ring
topicUid: DashboardRing
- name: State timeline
topicUid: DashboardStateTimeline
- name: Tables
items:
- name: Parameter table
topicUid: DashboardParameterTable
- name: Alarm table
topicUid: DashboardAlarmTable
- name: Pivot table
topicUid: DashboardPivotTable
- name: Table
topicUid: DashboardTable
- name: Charts
items:
- name: Column & Bar chart
topicUid: ColumnAndBarChart
- name: Line & area chart
topicUid: LineAndAreaChart
- name: Pie & donut chart
topicUid: PieAndDonutChart
- name: Other
items:
- name: Timeline
topicUid: DashboardTimeline
- name: List
topicUid: DashboardList
- name: EPM picker
topicUid: DashboardEPMPicker
- name: Grid
topicUid: DashboardGrid
- name: Interactive Automation script
topicUid: InteractiveAutomationScript
- name: Node edge graph
topicUid: DashboardNodeEdgeGraph
- name: Parameter page
topicUid: DashboardParameterPage
- name: Service definition
topicUid: DashboardServiceDefinition
- name: Spectrum Analyzer
topicUid: DashboardSpectrumAnalyzer
- name: Visual Overview
topicUid: DashboardVisualOverview
- name: Tree
topicUid: DashboardTree
- name: Parameter picker
topicUid: DashboardParameterPicker
- name: Trend statistics
topicUid: DashboardTrendStatistics
- name: Feeds
topicUid: Feeds
- name: Basic controls
items:
- name: Dropdown
topicUid: DashboardDropdown
- name: Numeric input
topicUid: DashboardNumericInput
- name: Search input
topicUid: DashboardSearchInput
- name: Text input
topicUid: DashboardTextInput
- name: Time range
topicUid: TimeRange
- name: Toggle
topicUid: Toggle
- name: Component data
topicUid: Component_Data
- name: URL data
topicUid: URL_data
- name: Flows
topicUid: Using_flows
items:
- name: Configuring a flow
topicUid: Configuring_a_flow
- name: Flow operators
topicUid: Flow_operators
- name: Variables
topicUid: Variables
- name: Generic Query Interface (GQI)
items:
- name: About the Generic Query Interface
topicUid: About_GQI
- name: GQI DxM
topicUid: GQI_DxM
- name: Creating a GQI query
topicUid: Creating_GQI_query
- name: Query data sources
topicUid: Query_data_sources
items:
- name: Get alarms
topicUid: Get_alarms
- name: Get ad hoc data
topicUid: Get_ad_hoc_data
- name: Get trend data patterns
topicUid: Get_trend_data_patterns
- name: Get trend data pattern events
topicUid: Get_trend_data_pattern_events
- name: Get behavioral change events
topicUid: Get_behavioral_change_events
- name: Get DCF connections
topicUid: Get_DCF_connections
- name: Get elements
topicUid: Get_elements
- name: Get parameter table by alias
topicUid: Get_parameter_table_by_alias
- name: Get object manager instances
topicUid: Get_object_manager_instances
- name: Get parameter table by ID
topicUid: Get_parameter_table_by_ID
- name: Get parameter relations
topicUid: Get_parameter_relations
- name: Get parameters for element where
topicUid: Get_parameters_for_element_where
- name: Get profile instances
topicUid: Get_profile_instances
- name: Get resources
topicUid: Get_resources
- name: Get services
topicUid: Get_services
- name: Get view relations
topicUid: Get_view_relations
- name: Get views
topicUid: Get_views
- name: Start from
topicUid: Start_from
- name: Query operators
topicUid: Query_operators
items:
- name: Aggregate
topicUid: GQI_Aggregate
- name: Column manipulations
topicUid: GQI_Column_manipulations
- name: Filter
topicUid: GQI_Filter
- name: Join
topicUid: GQI_Join
- name: Select
topicUid: GQI_Select
- name: (Then) Sort (by)
topicUid: GQI_Sort
- name: Top X
topicUid: GQI_Top_X
- name: Extensions
items:
- name: Configuring an ad hoc data source
topicUid: Configuring_an_ad_hoc_data_source_in_a_query
items:
- name: Building blocks of queries with ad hoc data
topicUid: Ad_hoc_Building_blocks
- name: Life cycle of queries with ad hoc data
topicUid: Ad_hoc_Life_cycle
- name: Linking rows to DataMiner objects
topicUid: Ad_hoc_Metadata
- name: Examples
items:
- name: Forwarding dummy data to the GQI
topicUid: Forwarding_dummy_data_to_GQI
- name: Scaling an ad hoc data source
topicUid: Scaling_Ad_hoc_Data_Source
- name: Tutorials
items:
- name: Building a GQI data source that fetches satellites
topicUid: Ad_hoc_Tutorials_Satellites
- name: Building a GQI data source that retrieves data from a DMS
topicUid: Ad_hoc_Tutorials_GQIDMS
- name: Configuring a custom operator
topicUid: GQI_Custom_Operator
items:
- name: Building blocks of a custom operator
topicUid: CO_Building_blocks
- name: Life cycle of a custom operator
topicUid: CO_Life_cycle
- name: Modifying links to DataMiner objects
topicUid: CO_Metadata
- name: Tutorials
items:
- name: Creating a minus operator
topicUid: Creating_Minus_Operator
- name: Creating a duration operator
topicUid: Creating_Duration_Operator
- name: Optimizing your custom operator
topicUid: Custom_Operator_Tutorial
- name: Providing a custom sort order
topicUid: GQI_Redirect_Sort_Tutorial
- name: API reference
items:
- name: GenIfRowMetadata
topicUid: GQI_GenIfRowMetadata
- name: GQIArgument
topicUid: GQI_GQIArgument
- name: GQICell
topicUid: GQI_GQICell
- name: GQIColumn
topicUid: GQI_GQIColumn
- name: GQIColumn<T>
topicUid: GQI_GQIColumnT
- name: GQIDMS
topicUid: GQI_GQIDMS
- name: GQIEditableHeader
topicUid: GQI_GQIEditableHeader
- name: GQIEditableRow
topicUid: GQI_GQIEditableRow
- name: GQILogLevel
topicUid: GQI_GQILogLevel
- name: GQIPage
topicUid: GQI_GQIPage
- name: GQIRow
topicUid: GQI_GQIRow
- name: GQISortDirection
topicUid: GQI_GQISortDirection
- name: IGQIColumn
topicUid: GQI_IGQIColumn
- name: IGQIColumnOperator
topicUid: GQI_IGQIColumnOperator
- name: IGQICoreBlock
topicUid: GQI_IGQICoreBlock
- name: IGQICoreOperator
topicUid: GQI_IGQICoreOperator
- name: IGQIDataSource
topicUid: GQI_IGQIDataSource
- name: IGQIFactory
topicUid: GQI_IGQIFactory
- name: IGQIFilterOperator
topicUid: GQI_IGQIFilterOperator
- name: IGQIInputArguments
topicUid: GQI_IGQIInputArguments
- name: IGQILogger
topicUid: GQI_IGQILogger
- name: IGQIOptimizableOperator
topicUid: GQI_IGQIOptimizableOperator
- name: IGQIOnDestroy
topicUid: GQI_IGQIOnDestroy
- name: IGQIOnInit
topicUid: GQI_IGQIOnInit
- name: IGQIOnPrepareFetch
topicUid: GQI_IGQIOnPrepareFetch
- name: IGQIOperator
topicUid: GQI_IGQIOperator
- name: IGQIOperatorNode
topicUid: GQI_IGQIOperatorNode
- name: IGQIQueryNode
topicUid: GQI_IGQIQueryNode
- name: IGQIRowOperator
topicUid: GQI_IGQIRowOperator
- name: IGQISortField
topicUid: GQI_IGQISortField
- name: IGQISortOperator
topicUid: GQI_IGQISortOperator
- name: IGQIUpdateable
topicUid: GQI_IGQIUpdateable
- name: IGQIUpdater
topicUid: GQI_IGQIUpdater
- name: ObjectRefMetadata
topicUid: GQI_ObjectRefMetadata
- name: OnArgumentsProcessedInputArgs
topicUid: GQI_OnArgumentsProcessedInputArgs
- name: OnInitInputArgs
topicUid: GQI_OnInitInputArgs
- name: RowMetadataBase
topicUid: GQI_RowMetadataBase
- name: TimeRangeMetadata
topicUid: GQI_TimeRangeMetadata
- name: Best practices
topicUid: GQI_Extensions_Best_Practices
- name: Logging
topicUid: GQI_Extensions_Logging
- name: Logging
topicUid: GQI_Logging
- name: Query updates
topicUid: Query_updates
- name: Importing a query
topicUid: Importing_a_query
- name: Logging
topicUid: Dashboards_and_Low_Code_Apps_Logging
- name: Style Guide
topicUid: LCA_Style_guide
- name: Frequently asked questions
topicUid: Dashboards_and_Low_Code_Apps_FAQ
- name: DMS Dashboards (legacy)
topicUid: dashboards
items:
- name: Accessing dashboards
topicUid: Accessing_dashboards
items:
- name: Logging on to the Dashboards App
topicUid: Logging_on_to_the_Dashboards_App
- name: Dashboard URL options
topicUid: Dashboard_URL_options
- name: Creating and configuring dashboards
topicUid: Creating_and_configuring_dashboards1
items:
- name: Creating a new dashboard
topicUid: Creating_a_new_dashboard
- name: Configuring dashboard components
topicUid: Configuring_dashboard_components1
- name: Adding an item to a dashboard from outside the Dashboards app
topicUid: Adding_an_item_to_a_dashboard_from_outside_the_Dashboards_app
- name: Dashboard components
topicUid: Dashboard_components
- name: Creating a dashboard with a dynamic list layout
topicUid: Creating_a_dashboard_with_a_dynamic_list_layout
- name: Creating a dashboard container
topicUid: Creating_a_dashboard_container
- name: Managing dashboards in the legacy app
topicUid: Managing_dashboards_in_the_legacy_app
items:
- name: Activating or deactivating a dashboard
topicUid: Activating_or_deactivating_a_dashboard
- name: Editing a dashboard
topicUid: Editing_a_dashboard1
- name: Duplicating a dashboard
topicUid: Duplicating_a_dashboard1
- name: Deleting a dashboard
topicUid: Deleting_a_dashboard1
- name: Organizing dashboards in folders
topicUid: Organizing_dashboards_in_folders
- name: Customizing the legacy Dashboards app
topicUid: Customizing_the_legacy_Dashboards_app
- name: Legacy Dashboard Gateway installation
items:
- name: Installing a DMS Dashboard Gateway
topicUid: Installing_a_DMS_Dashboard_Gateway
- name: Adding a Dashboards User to the DMS
topicUid: Adding_a_Dashboards_User_to_the_DMS
- name: Configuring dashboard access rights
topicUid: Configuring_dashboard_access_rights
- name: Dashboard Gateway troubleshooting
topicUid: Dashboard_Gateway_troubleshooting
- name: Data Aggregator
topicUid: Data_Aggregator_DxM
items:
- name: Installation and setup
topicUid: Data_Aggregator_install_setup
- name: Settings
topicUid: Data_Aggregator_settings
- name: Configuring GQI queries
topicUid: Data_Aggregator_queries
- name: Troubleshooting
topicUid: Data_Aggregator_troubleshooting
- name: Data Sources
topicUid: Data_Sources
items:
- name: Scripted connectors
topicUid: Scripted_Connectors
- name: Data API
topicUid: Data_API
- name: Getting started with the Data Sources module
topicUid: Data_Sources_Setup
- name: Limitations
topicUid: Data_Sources_Limitations
- name: Tutorials
items:
- name: Creating a scripted connector
topicUid: Data_Sources_Tutorials_GettingStarted
- name: DataMiner Object Models (DOM)
topicUid: DOM
items:
- name: DOM objects
topicUid: DOM_objects
items:
- name: SectionDefinition object
topicUid: DOM_SectionDefinition
items:
- name: AutoIncrementFieldDescriptor
topicUid: DOM_AutoIncrementFieldDescriptor
- name: DomInstanceFieldDescriptor
topicUid: DOM_DomInstanceFieldDescriptor
- name: DomInstanceValueFieldDescriptor
topicUid: DOM_DomInstanceValueFieldDescriptor
- name: ElementFieldDescriptor
topicUid: DOM_ElementFieldDescriptor
- name: GenericEnumFieldDescriptor
topicUid: DOM_GenericEnumFieldDescriptor
- name: GroupFieldDescriptor
topicUid: DOM_GroupFieldDescriptor
- name: ReservationFieldDescriptor
topicUid: DOM_ReservationFieldDescriptor
- name: ResourceFieldDescriptor
topicUid: DOM_ResourceFieldDescriptor
- name: ServiceDefinitionFieldDescriptor
topicUid: DOM_ServiceDefinitionFieldDescriptor
- name: StaticTextFieldDescriptor
topicUid: DOM_StaticTextFieldDescriptor
- name: UserFieldDescriptor
topicUid: DOM_UserFieldDescriptor
- name: DomDefinition object
topicUid: DomDefinition
- name: DomInstance object
topicUid: DomInstance
items:
- name: DOM multiple sections
topicUid: DOM_MultipleSections
- name: DomTemplate object
topicUid: DomTemplate
- name: DomBehaviorDefinition object
topicUid: DomBehaviorDefinition
- name: DOM managers
topicUid: DOM_managers
- name: DOM helper class
topicUid: DomHelper_class
- name: DOM events
topicUid: DOM_events
- name: DOM history
topicUid: DOM_history
- name: DOM status system
topicUid: DOM_status_system
- name: DOM actions
topicUid: DOM_actions
- name: DOM module settings
topicUid: DOM_ModuleSettings
items:
- name: Module ID
topicUid: DOM_ModuleId
- name: ModuleSections
topicUid: DOM_ModuleSections
- name: FieldAliases
topicUid: DOM_FieldAliases
- name: ExecuteScriptOnDomInstanceActionSettings
topicUid: ExecuteScriptOnDomInstanceActionSettings
- name: DomManagerInformationEventSettings
topicUid: DomManagerInformationEventSettings
- name: DomInstanceNameDefinition
topicUid: DomInstanceNameDefinition
- name: ModuleBehaviorDefinition
topicUid: DOM_ModuleBehaviorDefinition
- name: TtlSettings
topicUid: DOM_TtlSettings
- name: DomInstanceHistorySettings
topicUid: DOM_DomInstanceHistorySettings
- name: StorageSettings
topicUid: DOM_StorageSettings
- name: DOM data storage
topicUid: DOM_data_storage
- name: Best practices
topicUid: DOM_best_practices
- name: DOM examples
items:
- name: Invoice app example
topicUid: DOM_Invoice_app_example
- name: Status system example
topicUid: DOM_status_system_example
- name: Altering and getting values of a DomInstance - examples
topicUid: DOM_Altering_values_of_a_DomInstance
- name: Processing multiple DomInstances - examples
topicUid: DOM_BulkProcessing_Examples
- name: DOM DevOps tools
topicUid: DOM_DevOps_tools
items:
- name: DOM DevOps tools installation
topicUid: DOM_DevOps_installation
- name: Using the DOM Designer
topicUid: DOM_Designer
items:
- name: Configuring the Excel file
topicUid: DOM_Designer_Excel_config
- name: Deploying the Excel file
topicUid: DOM_Designer_Excel_deployment
- name: Using the DOM Editor
topicUid: DOM_Editor
items:
- name: Creating a new module and definition
topicUid: DOM_editor_new_def
- name: Adding a field
topicUid: DOM_editor_adding_field
- name: Adding a section definition
topicUid: DOM_editor_adding_section
- name: Adding a button
topicUid: DOM_editor_adding_button
- name: Changing a field name
topicUid: DOM_editor_changing_field_name
- name: Deleting a field
topicUid: DOM_editor_deleting_field
- name: Deleting a section definition
topicUid: DOM_editor_deleting_section
- name: Naming a DOM instance
topicUid: DOM_editor_naming_instance
- name: Tutorials
items:
- name: Getting started with DOM
topicUid: DOM_Getting_Started_With_DOM
- name: Making DOM objects state-aware
topicUid: DOM_Making_DOM_Stateful
- name: Creating a basic DOM setup
topicUid: DOM_Create_Basic_Setup
- name: Removing an enum entry from a GenericEnumFieldDescriptor
topicUid: DOM_Remove_Enum_Entry
- name: Removing a field descriptor from a definition
topicUid: DOM_Remove_FieldDescriptor_Definition
- name: Generating code with the DOM Editor
topicUid: DOM_Generating_code_with_the_DOM_editor
- name: Experience and Performance Management (EPM)
topicUid: EPM
items:
- name: About DataMiner Experience and Performance Management
topicUid: About_DMS_Experience_and_Performance_Management
- name: Working with the Experience and Performance Management interface
topicUid: Working_with_the_Experience_and_Performance_Management_interface
items:
- name: Accessing the Experience and Performance Management user interface
topicUid: Accessing_the_Experience_and_Performance_Management_user_interface
- name: EPM user interface components
topicUid: EPM_user_interface_components
- name: Using the EPM filter section
topicUid: Using_the_EPM_filter_section
- name: Using the EPM overview section
topicUid: Using_the_EPM_overview_section
- name: EPM alarm monitoring and trending
topicUid: EPM_alarm_monitoring_and_trending
- name: Creating a link between DataMiner elements and the EPM element
topicUid: Creating_a_link_between_DataMiner_elements_and_the_EPM_element
- name: EPM integration training
topicUid: EPM_Integration_Training
- name: Tutorials
items:
- name: Getting started with EPM
topicUid: EPM_Introduction_Tutorial
- name: Inventory & Asset Management
items:
- name: About DataMiner Inventory & Asset Management
topicUid: About_DMS_Inventory_Asset_Management
- name: Browsing the database with DataMiner Inventory and Asset Management
topicUid: Browsing_the_database_with_DMS_Inventory_and_Asset_Management
- name: Managing data in the database with DataMiner Inventory and Asset Management
topicUid: Managing_data_in_the_database_with_DMS_Inventory_and_Asset_Management
items:
- name: Adding a row to a table
topicUid: Adding_a_row_to_a_table
- name: Updating a table row
topicUid: Updating_a_table_row
- name: Deleting a row from a table
topicUid: Deleting_a_row_from_a_table
- name: Exporting a table to a CSV file
topicUid: Exporting_a_table_to_a_CSV_file
- name: Searching the database
topicUid: Searching_the_database
- name: Reloading the Asset Manager user interface
topicUid: Reloading_the_Asset_Manager_user_interface
- name: Starting a sync of the DataMiner database and the CMDB
topicUid: Starting_a_sync_of_the_DataMiner_database_and_the_CMDB
- name: Configuring DataMiner Inventory and Asset Management
topicUid: Configuring_DMS_Inventory_and_Asset_Management
items:
- name: Tags in the Asset Manager configuration file
topicUid: Tags_in_the_Asset_Manager_configuration_file
- name: Example of an Asset Manager configuration file
topicUid: Example_of_an_Asset_Manager_configuration_file
- name: Activating the Asset Management database in Cube
topicUid: Activating_the_Asset_Management_database_in_Cube
- name: Configuring data mediation settings in DataMiner Inventory and Asset Management
topicUid: Configuring_data_mediation_settings_in_DMS_Inventory_and_Asset_Management
items:
- name: Tags in the Asset Manager mediation configuration file
topicUid: Tags_in_the_Asset_Manager_mediation_configuration_file
- name: Example of an Asset Manager mediation configuration file
topicUid: Example_of_an_Asset_Manager_mediation_configuration_file