-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathSystemCenter.Operations.Manager.Health.Check.Report.Library.xml
1791 lines (1787 loc) · 227 KB
/
SystemCenter.Operations.Manager.Health.Check.Report.Library.xml
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
<ManagementPack ContentReadable="true" SchemaVersion="2.0" OriginalSchemaVersion="1.0" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<Manifest>
<Identity>
<ID>SystemCenter.Operations.Manager.Health.Check.Report.Library</ID>
<Version>3.0.1.5</Version>
</Identity>
<Name>System Center Operations Manager Health Check Report Library</Name>
<References>
<Reference Alias="DataWarehouse">
<ID>Microsoft.SystemCenter.DataWarehouse.Library</ID>
<Version>7.0.8433.0</Version>
<PublicKeyToken>31bf3856ad364e35</PublicKeyToken>
</Reference>
<Reference Alias="System">
<ID>System.Library</ID>
<Version>7.5.8500.0</Version>
<PublicKeyToken>31bf3856ad364e35</PublicKeyToken>
</Reference>
<Reference Alias="DWLIB">
<ID>Microsoft.SystemCenter.DataWarehouse.Report.Library</ID>
<Version>7.1.10226.0</Version>
<PublicKeyToken>31bf3856ad364e35</PublicKeyToken>
</Reference>
</References>
</Manifest>
<Presentation>
<StringResources>
<StringResource ID="Microsoft.SystemCenter.DataWarehouse.Report.ParameterPrompt.UserID" />
<StringResource ID="Microsoft.SystemCenter.DataWarehouse.Report.ParameterPrompt.ResolutionState" />
<StringResource ID="Microsoft.SystemCenter.DataWarehouse.Report.ParameterPrompt.ManagedEntityTypeSystemName" />
<StringResource ID="Microsoft.SystemCenter.DataWarehouse.Report.ParameterPrompt.Computer" />
<StringResource ID="Microsoft.SystemCenter.DataWarehouse.Report.ParameterPrompt.Eventnumber" />
<StringResource ID="Microsoft.SystemCenter.DataWarehouse.Report.ParameterPrompt.computergroups" />
</StringResources>
</Presentation>
<Reporting>
<Reports>
<Report ID="SystemCenter.Operations.Manager.Health.Check.Report.Alerts.PerUserID" Accessibility="Public" Visible="true" Target="System!System.Entity">
<ParameterBlock columns="6" xmlns="http://schemas.microsoft.com/mom/reporting/2007/ReportParameterSettings">
<Controls>
<Control type="Microsoft.SystemCenter.DataWarehouse.Report.ParameterControl.RelativeDateTimePicker" rowSpan="2" columnSpan="2">
<ReportParameters>
<ReportParameter name="TimeZone" binding="TimeZone">
<Prompt>DWLIB!Microsoft.SystemCenter.DataWarehouse.Report.ParameterPrompt.TimeZone</Prompt>
</ReportParameter>
<ReportParameter name="TimeZoneName" binding="TimeZoneName" />
<ReportParameter name="StartDate_BaseType" binding="StartDate_BaseType" />
<ReportParameter name="StartDate_BaseValue" binding="StartDate_BaseValue">
<Prompt>DWLIB!Microsoft.SystemCenter.DataWarehouse.Report.ParameterPrompt.StartDateTime</Prompt>
</ReportParameter>
<ReportParameter name="StartDate_OffsetType" binding="StartDate_OffsetType" />
<ReportParameter name="StartDate_OffsetValue" binding="StartDate_OffsetValue" />
<ReportParameter name="EndDate_BaseType" binding="EndDate_BaseType" />
<ReportParameter name="EndDate_BaseValue" binding="EndDate_BaseValue">
<Prompt>DWLIB!Microsoft.SystemCenter.DataWarehouse.Report.ParameterPrompt.EndDateTime</Prompt>
</ReportParameter>
<ReportParameter name="EndDate_OffsetType" binding="EndDate_OffsetType" />
<ReportParameter name="EndDate_OffsetValue" binding="EndDate_OffsetValue" />
</ReportParameters>
</Control>
<Control type="Microsoft.SystemCenter.DataWarehouse.Report.ParameterControl.CheckedListBox" rowSpan="1" columnSpan="1">
<ReportParameters>
<ReportParameter name="UserID">
<Prompt>SystemCenter.Operations.Manager.Health.Check.Report.Library!Microsoft.SystemCenter.DataWarehouse.Report.ParameterPrompt.UserID</Prompt>
</ReportParameter>
</ReportParameters>
</Control>
</Controls>
</ParameterBlock>
<ReportDefinition>Res.SystemCenter.Operations.Manager.Health.Check.Report.Library.Report.Alerts.PerUserID</ReportDefinition>
</Report>
<Report ID="SystemCenter.Operations.Manager.Health.Check.Report.Library.Report.Alerts.PerUserCount" Accessibility="Public" Visible="true" Target="System!System.Entity">
<ParameterBlock columns="6" xmlns="http://schemas.microsoft.com/mom/reporting/2007/ReportParameterSettings">
<Controls>
<Control type="Microsoft.SystemCenter.DataWarehouse.Report.ParameterControl.RelativeDateTimePicker" rowSpan="2" columnSpan="2">
<ReportParameters>
<ReportParameter name="TimeZone" binding="TimeZone">
<Prompt>DWLIB!Microsoft.SystemCenter.DataWarehouse.Report.ParameterPrompt.TimeZone</Prompt>
</ReportParameter>
<ReportParameter name="TimeZoneName" binding="TimeZoneName" />
<ReportParameter name="StartDate_BaseType" binding="StartDate_BaseType" />
<ReportParameter name="StartDate_BaseValue" binding="StartDate_BaseValue">
<Prompt>DWLIB!Microsoft.SystemCenter.DataWarehouse.Report.ParameterPrompt.StartDateTime</Prompt>
</ReportParameter>
<ReportParameter name="StartDate_OffsetType" binding="StartDate_OffsetType" />
<ReportParameter name="StartDate_OffsetValue" binding="StartDate_OffsetValue" />
<ReportParameter name="EndDate_BaseType" binding="EndDate_BaseType" />
<ReportParameter name="EndDate_BaseValue" binding="EndDate_BaseValue">
<Prompt>DWLIB!Microsoft.SystemCenter.DataWarehouse.Report.ParameterPrompt.EndDateTime</Prompt>
</ReportParameter>
<ReportParameter name="EndDate_OffsetType" binding="EndDate_OffsetType" />
<ReportParameter name="EndDate_OffsetValue" binding="EndDate_OffsetValue" />
</ReportParameters>
</Control>
<Control type="Microsoft.SystemCenter.DataWarehouse.Report.ParameterControl.CheckedListBox" rowSpan="1" columnSpan="1">
<ReportParameters>
<ReportParameter name="ResolutionState">
<Prompt>SystemCenter.Operations.Manager.Health.Check.Report.Library!Microsoft.SystemCenter.DataWarehouse.Report.ParameterPrompt.ResolutionState</Prompt>
</ReportParameter>
</ReportParameters>
</Control>
</Controls>
</ParameterBlock>
<ReportDefinition>Res.SystemCenter.Operations.Manager.Health.Check.Report.Library.Report.Alerts.PerUserCount</ReportDefinition>
</Report>
<Report ID="SystemCenter.Operations.Manager.Health.Check.Report.Library.Report.Misc.DatabaseState" Accessibility="Public" Visible="true" Target="System!System.Entity">
<ReportDefinition>Res.SystemCenter.Operations.Manager.Health.Check.Report.Library.Report.Misc.DatabaseState</ReportDefinition>
</Report>
<Report ID="SystemCenter.Operations.Manager.Health.Check.Report.Library.Report.Misc.ConfigChurn.Details" Accessibility="Public" Visible="false" Target="System!System.Entity">
<ParameterBlock columns="6" xmlns="http://schemas.microsoft.com/mom/reporting/2007/ReportParameterSettings">
<Controls>
<Control type="Microsoft.SystemCenter.DataWarehouse.Report.ParameterControl.TextBox" rowSpan="1" columnSpan="1">
<ReportParameters>
<ReportParameter name="ManagedEntityTypeSystemName">
<Prompt>SystemCenter.Operations.Manager.Health.Check.Report.Library!Microsoft.SystemCenter.DataWarehouse.Report.ParameterPrompt.ManagedEntityTypeSystemName</Prompt>
</ReportParameter>
</ReportParameters>
</Control>
</Controls>
</ParameterBlock>
<ReportDefinition>Res.SystemCenter.Operations.Manager.Health.Check.Report.Library.Report.Misc.ConfigChurn.Details</ReportDefinition>
</Report>
<Report ID="SystemCenter.Operations.Manager.Health.Check.Report.Library.Report.Misc.ConfigChurn.Overview" Accessibility="Public" Visible="true" Target="System!System.Entity">
<ReportDefinition>Res.SystemCenter.Operations.Manager.Health.Check.Report.Library.Report.Misc.ConfigChurn.Overview</ReportDefinition>
</Report>
<Report ID="SystemCenter.Operations.Manager.Health.Check.Report.Library.Report.Alerts.TotalAlertsPerDay" Accessibility="Public" Visible="true" Target="System!System.Entity">
<ParameterBlock columns="6" xmlns="http://schemas.microsoft.com/mom/reporting/2007/ReportParameterSettings">
<Controls>
<Control type="Microsoft.SystemCenter.DataWarehouse.Report.ParameterControl.RelativeDateTimePicker" rowSpan="2" columnSpan="2">
<ReportParameters>
<ReportParameter name="TimeZone" binding="TimeZone">
<Prompt>DWLIB!Microsoft.SystemCenter.DataWarehouse.Report.ParameterPrompt.TimeZone</Prompt>
</ReportParameter>
<ReportParameter name="TimeZoneName" binding="TimeZoneName" />
<ReportParameter name="StartDate_BaseType" binding="StartDate_BaseType" />
<ReportParameter name="StartDate_BaseValue" binding="StartDate_BaseValue">
<Prompt>DWLIB!Microsoft.SystemCenter.DataWarehouse.Report.ParameterPrompt.StartDateTime</Prompt>
</ReportParameter>
<ReportParameter name="StartDate_OffsetType" binding="StartDate_OffsetType" />
<ReportParameter name="StartDate_OffsetValue" binding="StartDate_OffsetValue" />
<ReportParameter name="EndDate_BaseType" binding="EndDate_BaseType" />
<ReportParameter name="EndDate_BaseValue" binding="EndDate_BaseValue">
<Prompt>DWLIB!Microsoft.SystemCenter.DataWarehouse.Report.ParameterPrompt.EndDateTime</Prompt>
</ReportParameter>
<ReportParameter name="EndDate_OffsetType" binding="EndDate_OffsetType" />
<ReportParameter name="EndDate_OffsetValue" binding="EndDate_OffsetValue" />
</ReportParameters>
</Control>
</Controls>
</ParameterBlock>
<ReportDefinition>Res.SystemCenter.Operations.Manager.Health.Check.Report.Library.Report.Alerts.TotalAlertsPerDay</ReportDefinition>
</Report>
<Report ID="SystemCenter.Operations.Manager.Health.Check.Report.Library.Report.Alerts.Top20Alerts" Accessibility="Public" Visible="true" Target="System!System.Entity">
<ParameterBlock columns="6" xmlns="http://schemas.microsoft.com/mom/reporting/2007/ReportParameterSettings">
<Controls>
<Control type="Microsoft.SystemCenter.DataWarehouse.Report.ParameterControl.RelativeDateTimePicker" rowSpan="2" columnSpan="2">
<ReportParameters>
<ReportParameter name="TimeZone" binding="TimeZone">
<Prompt>DWLIB!Microsoft.SystemCenter.DataWarehouse.Report.ParameterPrompt.TimeZone</Prompt>
</ReportParameter>
<ReportParameter name="TimeZoneName" binding="TimeZoneName" />
<ReportParameter name="StartDate_BaseType" binding="StartDate_BaseType" />
<ReportParameter name="StartDate_BaseValue" binding="StartDate_BaseValue">
<Prompt>DWLIB!Microsoft.SystemCenter.DataWarehouse.Report.ParameterPrompt.StartDateTime</Prompt>
</ReportParameter>
<ReportParameter name="StartDate_OffsetType" binding="StartDate_OffsetType" />
<ReportParameter name="StartDate_OffsetValue" binding="StartDate_OffsetValue" />
<ReportParameter name="EndDate_BaseType" binding="EndDate_BaseType" />
<ReportParameter name="EndDate_BaseValue" binding="EndDate_BaseValue">
<Prompt>DWLIB!Microsoft.SystemCenter.DataWarehouse.Report.ParameterPrompt.EndDateTime</Prompt>
</ReportParameter>
<ReportParameter name="EndDate_OffsetType" binding="EndDate_OffsetType" />
<ReportParameter name="EndDate_OffsetValue" binding="EndDate_OffsetValue" />
</ReportParameters>
</Control>
</Controls>
</ParameterBlock>
<ReportDefinition>Res.SystemCenter.Operations.Manager.Health.Check.Report.Library.Report.Alerts.Top20Alerts</ReportDefinition>
</Report>
<Report ID="SystemCenter.Operations.Manager.Health.Check.Report.Library.Report.Events.EventsPerComputer" Accessibility="Public" Visible="true" Target="System!System.Entity">
<ParameterBlock columns="6" xmlns="http://schemas.microsoft.com/mom/reporting/2007/ReportParameterSettings">
<Controls>
<Control type="Microsoft.SystemCenter.DataWarehouse.Report.ParameterControl.RelativeDateTimePicker" rowSpan="2" columnSpan="2">
<ReportParameters>
<ReportParameter name="TimeZone" binding="TimeZone">
<Prompt>DWLIB!Microsoft.SystemCenter.DataWarehouse.Report.ParameterPrompt.TimeZone</Prompt>
</ReportParameter>
<ReportParameter name="TimeZoneName" binding="TimeZoneName" />
<ReportParameter name="StartDate_BaseType" binding="StartDate_BaseType" />
<ReportParameter name="StartDate_BaseValue" binding="StartDate_BaseValue">
<Prompt>DWLIB!Microsoft.SystemCenter.DataWarehouse.Report.ParameterPrompt.StartDateTime</Prompt>
</ReportParameter>
<ReportParameter name="StartDate_OffsetType" binding="StartDate_OffsetType" />
<ReportParameter name="StartDate_OffsetValue" binding="StartDate_OffsetValue" />
<ReportParameter name="EndDate_BaseType" binding="EndDate_BaseType" />
<ReportParameter name="EndDate_BaseValue" binding="EndDate_BaseValue">
<Prompt>DWLIB!Microsoft.SystemCenter.DataWarehouse.Report.ParameterPrompt.EndDateTime</Prompt>
</ReportParameter>
<ReportParameter name="EndDate_OffsetType" binding="EndDate_OffsetType" />
<ReportParameter name="EndDate_OffsetValue" binding="EndDate_OffsetValue" />
</ReportParameters>
</Control>
</Controls>
</ParameterBlock>
<ReportDefinition>Res.SystemCenter.Operations.Manager.Health.Check.Report.Library.Report.Events.EventsPerComputer</ReportDefinition>
</Report>
<Report ID="SystemCenter.Operations.Manager.Health.Check.Report.Library.Report.Events.EventsPerComputerdetail" Accessibility="Public" Visible="false" Target="System!System.Entity">
<ParameterBlock columns="6" xmlns="http://schemas.microsoft.com/mom/reporting/2007/ReportParameterSettings">
<Controls>
<Control type="Microsoft.SystemCenter.DataWarehouse.Report.ParameterControl.TextBox" rowSpan="1" columnSpan="1">
<ReportParameters>
<ReportParameter name="Computer">
<Prompt>SystemCenter.Operations.Manager.Health.Check.Report.Library!Microsoft.SystemCenter.DataWarehouse.Report.ParameterPrompt.Computer</Prompt>
</ReportParameter>
</ReportParameters>
</Control>
</Controls>
</ParameterBlock>
<ReportDefinition>Res.SystemCenter.Operations.Manager.Health.Check.Report.Library.Report.Events.EventsPerComputerdetail</ReportDefinition>
</Report>
<Report ID="SystemCenter.Operations.Manager.Health.Check.Report.Library.Report.Events.EventsPerDay" Accessibility="Public" Visible="true" Target="System!System.Entity">
<ParameterBlock columns="6" xmlns="http://schemas.microsoft.com/mom/reporting/2007/ReportParameterSettings">
<Controls>
<Control type="Microsoft.SystemCenter.DataWarehouse.Report.ParameterControl.RelativeDateTimePicker" rowSpan="2" columnSpan="2">
<ReportParameters>
<ReportParameter name="TimeZone" binding="TimeZone">
<Prompt>DWLIB!Microsoft.SystemCenter.DataWarehouse.Report.ParameterPrompt.TimeZone</Prompt>
</ReportParameter>
<ReportParameter name="TimeZoneName" binding="TimeZoneName" />
<ReportParameter name="StartDate_BaseType" binding="StartDate_BaseType" />
<ReportParameter name="StartDate_BaseValue" binding="StartDate_BaseValue">
<Prompt>DWLIB!Microsoft.SystemCenter.DataWarehouse.Report.ParameterPrompt.StartDateTime</Prompt>
</ReportParameter>
<ReportParameter name="StartDate_OffsetType" binding="StartDate_OffsetType" />
<ReportParameter name="StartDate_OffsetValue" binding="StartDate_OffsetValue" />
<ReportParameter name="EndDate_BaseType" binding="EndDate_BaseType" />
<ReportParameter name="EndDate_BaseValue" binding="EndDate_BaseValue">
<Prompt>DWLIB!Microsoft.SystemCenter.DataWarehouse.Report.ParameterPrompt.EndDateTime</Prompt>
</ReportParameter>
<ReportParameter name="EndDate_OffsetType" binding="EndDate_OffsetType" />
<ReportParameter name="EndDate_OffsetValue" binding="EndDate_OffsetValue" />
</ReportParameters>
</Control>
</Controls>
</ParameterBlock>
<ReportDefinition>Res.SystemCenter.Operations.Manager.Health.Check.Report.Library.Report.Events.EventsPerDay</ReportDefinition>
</Report>
<Report ID="SystemCenter.Operations.Manager.Health.Check.Report.Library.Report.Events.EventsPerEventNumber" Accessibility="Public" Visible="true" Target="System!System.Entity">
<ParameterBlock columns="6" xmlns="http://schemas.microsoft.com/mom/reporting/2007/ReportParameterSettings">
<Controls>
<Control type="Microsoft.SystemCenter.DataWarehouse.Report.ParameterControl.RelativeDateTimePicker" rowSpan="2" columnSpan="2">
<ReportParameters>
<ReportParameter name="TimeZone" binding="TimeZone">
<Prompt>DWLIB!Microsoft.SystemCenter.DataWarehouse.Report.ParameterPrompt.TimeZone</Prompt>
</ReportParameter>
<ReportParameter name="TimeZoneName" binding="TimeZoneName" />
<ReportParameter name="StartDate_BaseType" binding="StartDate_BaseType" />
<ReportParameter name="StartDate_BaseValue" binding="StartDate_BaseValue">
<Prompt>DWLIB!Microsoft.SystemCenter.DataWarehouse.Report.ParameterPrompt.StartDateTime</Prompt>
</ReportParameter>
<ReportParameter name="StartDate_OffsetType" binding="StartDate_OffsetType" />
<ReportParameter name="StartDate_OffsetValue" binding="StartDate_OffsetValue" />
<ReportParameter name="EndDate_BaseType" binding="EndDate_BaseType" />
<ReportParameter name="EndDate_BaseValue" binding="EndDate_BaseValue">
<Prompt>DWLIB!Microsoft.SystemCenter.DataWarehouse.Report.ParameterPrompt.EndDateTime</Prompt>
</ReportParameter>
<ReportParameter name="EndDate_OffsetType" binding="EndDate_OffsetType" />
<ReportParameter name="EndDate_OffsetValue" binding="EndDate_OffsetValue" />
</ReportParameters>
</Control>
</Controls>
</ParameterBlock>
<ReportDefinition>Res.SystemCenter.Operations.Manager.Health.Check.Report.Library.Report.Events.EventsPerEventNumber</ReportDefinition>
</Report>
<Report ID="SystemCenter.Operations.Manager.Health.Check.Report.Library.Report.Events.EventDetails" Accessibility="Public" Visible="false" Target="System!System.Entity">
<ParameterBlock columns="6" xmlns="http://schemas.microsoft.com/mom/reporting/2007/ReportParameterSettings">
<Controls>
<Control type="Microsoft.SystemCenter.DataWarehouse.Report.ParameterControl.RelativeDateTimePicker" rowSpan="2" columnSpan="2">
<ReportParameters>
<ReportParameter name="TimeZone" binding="TimeZone">
<Prompt>DWLIB!Microsoft.SystemCenter.DataWarehouse.Report.ParameterPrompt.TimeZone</Prompt>
</ReportParameter>
<ReportParameter name="TimeZoneName" binding="TimeZoneName" />
<ReportParameter name="StartDate_BaseType" binding="StartDate_BaseType" />
<ReportParameter name="StartDate_BaseValue" binding="StartDate_BaseValue">
<Prompt>DWLIB!Microsoft.SystemCenter.DataWarehouse.Report.ParameterPrompt.StartDateTime</Prompt>
</ReportParameter>
<ReportParameter name="StartDate_OffsetType" binding="StartDate_OffsetType" />
<ReportParameter name="StartDate_OffsetValue" binding="StartDate_OffsetValue" />
<ReportParameter name="EndDate_BaseType" binding="EndDate_BaseType" />
<ReportParameter name="EndDate_BaseValue" binding="EndDate_BaseValue">
<Prompt>DWLIB!Microsoft.SystemCenter.DataWarehouse.Report.ParameterPrompt.EndDateTime</Prompt>
</ReportParameter>
<ReportParameter name="EndDate_OffsetType" binding="EndDate_OffsetType" />
<ReportParameter name="EndDate_OffsetValue" binding="EndDate_OffsetValue" />
</ReportParameters>
</Control>
<Control type="Microsoft.SystemCenter.DataWarehouse.Report.ParameterControl.CheckedListBox" rowSpan="1" columnSpan="1">
<ReportParameters>
<ReportParameter name="Eventnumber">
<Prompt>SystemCenter.Operations.Manager.Health.Check.Report.Library!Microsoft.SystemCenter.DataWarehouse.Report.ParameterPrompt.Eventnumber</Prompt>
</ReportParameter>
</ReportParameters>
</Control>
</Controls>
</ParameterBlock>
<ReportDefinition>Res.SystemCenter.Operations.Manager.Health.Check.Report.Library.Report.Events.EventDetails</ReportDefinition>
</Report>
<Report ID="SystemCenter.Operations.Manager.Health.Check.Report.Library.Report.Misc.MaintenanceMode" Accessibility="Public" Visible="true" Target="System!System.Entity">
<ParameterBlock columns="6" xmlns="http://schemas.microsoft.com/mom/reporting/2007/ReportParameterSettings">
<Controls>
<Control type="Microsoft.SystemCenter.DataWarehouse.Report.ParameterControl.RelativeDateTimePicker" rowSpan="2" columnSpan="2">
<ReportParameters>
<ReportParameter name="TimeZone" binding="TimeZone">
<Prompt>DWLIB!Microsoft.SystemCenter.DataWarehouse.Report.ParameterPrompt.TimeZone</Prompt>
</ReportParameter>
<ReportParameter name="TimeZoneName" binding="TimeZoneName" />
<ReportParameter name="StartDate_BaseType" binding="StartDate_BaseType" />
<ReportParameter name="StartDate_BaseValue" binding="StartDate_BaseValue">
<Prompt>DWLIB!Microsoft.SystemCenter.DataWarehouse.Report.ParameterPrompt.StartDateTime</Prompt>
</ReportParameter>
<ReportParameter name="StartDate_OffsetType" binding="StartDate_OffsetType" />
<ReportParameter name="StartDate_OffsetValue" binding="StartDate_OffsetValue" />
<ReportParameter name="EndDate_BaseType" binding="EndDate_BaseType" />
<ReportParameter name="EndDate_BaseValue" binding="EndDate_BaseValue">
<Prompt>DWLIB!Microsoft.SystemCenter.DataWarehouse.Report.ParameterPrompt.EndDateTime</Prompt>
</ReportParameter>
<ReportParameter name="EndDate_OffsetType" binding="EndDate_OffsetType" />
<ReportParameter name="EndDate_OffsetValue" binding="EndDate_OffsetValue" />
</ReportParameters>
</Control>
<Control type="Microsoft.SystemCenter.DataWarehouse.Report.ParameterControl.CheckedListBox" rowSpan="1" columnSpan="1">
<ReportParameters>
<ReportParameter name="computergroups">
<Prompt>SystemCenter.Operations.Manager.Health.Check.Report.Library!Microsoft.SystemCenter.DataWarehouse.Report.ParameterPrompt.computergroups</Prompt>
</ReportParameter>
</ReportParameters>
</Control>
</Controls>
</ParameterBlock>
<ReportDefinition>Res.SystemCenter.Operations.Manager.Health.Check.Report.Library.Report.Misc.MaintenanceMode</ReportDefinition>
</Report>
<Report ID="SystemCenter.Operations.Manager.Health.Check.Report.Library.Report.Perf.PerfBaseline" Accessibility="Public" Visible="true" Target="System!System.Entity">
<ReportDefinition>Res.SystemCenter.Operations.Manager.Health.Check.Report.Library.Report.Perf.PerfBaseline</ReportDefinition>
</Report>
<Report ID="SystemCenter.Operations.Manager.Health.Check.Report.Library.Report.Perf.PerfByComputer" Accessibility="Public" Visible="true" Target="System!System.Entity">
<ParameterBlock columns="6" xmlns="http://schemas.microsoft.com/mom/reporting/2007/ReportParameterSettings">
<Controls>
<Control type="Microsoft.SystemCenter.DataWarehouse.Report.ParameterControl.RelativeDateTimePicker" rowSpan="2" columnSpan="2">
<ReportParameters>
<ReportParameter name="TimeZone" binding="TimeZone">
<Prompt>DWLIB!Microsoft.SystemCenter.DataWarehouse.Report.ParameterPrompt.TimeZone</Prompt>
</ReportParameter>
<ReportParameter name="TimeZoneName" binding="TimeZoneName" />
<ReportParameter name="StartDate_BaseType" binding="StartDate_BaseType" />
<ReportParameter name="StartDate_BaseValue" binding="StartDate_BaseValue">
<Prompt>DWLIB!Microsoft.SystemCenter.DataWarehouse.Report.ParameterPrompt.StartDateTime</Prompt>
</ReportParameter>
<ReportParameter name="StartDate_OffsetType" binding="StartDate_OffsetType" />
<ReportParameter name="StartDate_OffsetValue" binding="StartDate_OffsetValue" />
<ReportParameter name="EndDate_BaseType" binding="EndDate_BaseType" />
<ReportParameter name="EndDate_BaseValue" binding="EndDate_BaseValue">
<Prompt>DWLIB!Microsoft.SystemCenter.DataWarehouse.Report.ParameterPrompt.EndDateTime</Prompt>
</ReportParameter>
<ReportParameter name="EndDate_OffsetType" binding="EndDate_OffsetType" />
<ReportParameter name="EndDate_OffsetValue" binding="EndDate_OffsetValue" />
</ReportParameters>
</Control>
</Controls>
</ParameterBlock>
<ReportDefinition>Res.SystemCenter.Operations.Manager.Health.Check.Report.Library.Report.Perf.PerfByComputer</ReportDefinition>
</Report>
<Report ID="SystemCenter.Operations.Manager.Health.Check.Report.Library.Report.Perf.PerfByPerf" Accessibility="Public" Visible="true" Target="System!System.Entity">
<ParameterBlock columns="6" xmlns="http://schemas.microsoft.com/mom/reporting/2007/ReportParameterSettings">
<Controls>
<Control type="Microsoft.SystemCenter.DataWarehouse.Report.ParameterControl.RelativeDateTimePicker" rowSpan="2" columnSpan="2">
<ReportParameters>
<ReportParameter name="TimeZone" binding="TimeZone">
<Prompt>DWLIB!Microsoft.SystemCenter.DataWarehouse.Report.ParameterPrompt.TimeZone</Prompt>
</ReportParameter>
<ReportParameter name="TimeZoneName" binding="TimeZoneName" />
<ReportParameter name="StartDate_BaseType" binding="StartDate_BaseType" />
<ReportParameter name="StartDate_BaseValue" binding="StartDate_BaseValue">
<Prompt>DWLIB!Microsoft.SystemCenter.DataWarehouse.Report.ParameterPrompt.StartDateTime</Prompt>
</ReportParameter>
<ReportParameter name="StartDate_OffsetType" binding="StartDate_OffsetType" />
<ReportParameter name="StartDate_OffsetValue" binding="StartDate_OffsetValue" />
<ReportParameter name="EndDate_BaseType" binding="EndDate_BaseType" />
<ReportParameter name="EndDate_BaseValue" binding="EndDate_BaseValue">
<Prompt>DWLIB!Microsoft.SystemCenter.DataWarehouse.Report.ParameterPrompt.EndDateTime</Prompt>
</ReportParameter>
<ReportParameter name="EndDate_OffsetType" binding="EndDate_OffsetType" />
<ReportParameter name="EndDate_OffsetValue" binding="EndDate_OffsetValue" />
</ReportParameters>
</Control>
</Controls>
</ParameterBlock>
<ReportDefinition>Res.SystemCenter.Operations.Manager.Health.Check.Report.Library.Report.Perf.PerfByPerf</ReportDefinition>
</Report>
<Report ID="SystemCenter.Operations.Manager.Health.Check.Report.Library.Report.Perf.PerfDaily" Accessibility="Public" Visible="true" Target="System!System.Entity">
<ParameterBlock columns="6" xmlns="http://schemas.microsoft.com/mom/reporting/2007/ReportParameterSettings">
<Controls>
<Control type="Microsoft.SystemCenter.DataWarehouse.Report.ParameterControl.RelativeDateTimePicker" rowSpan="2" columnSpan="2">
<ReportParameters>
<ReportParameter name="TimeZone" binding="TimeZone">
<Prompt>DWLIB!Microsoft.SystemCenter.DataWarehouse.Report.ParameterPrompt.TimeZone</Prompt>
</ReportParameter>
<ReportParameter name="TimeZoneName" binding="TimeZoneName" />
<ReportParameter name="StartDate_BaseType" binding="StartDate_BaseType" />
<ReportParameter name="StartDate_BaseValue" binding="StartDate_BaseValue">
<Prompt>DWLIB!Microsoft.SystemCenter.DataWarehouse.Report.ParameterPrompt.StartDateTime</Prompt>
</ReportParameter>
<ReportParameter name="StartDate_OffsetType" binding="StartDate_OffsetType" />
<ReportParameter name="StartDate_OffsetValue" binding="StartDate_OffsetValue" />
<ReportParameter name="EndDate_BaseType" binding="EndDate_BaseType" />
<ReportParameter name="EndDate_BaseValue" binding="EndDate_BaseValue">
<Prompt>DWLIB!Microsoft.SystemCenter.DataWarehouse.Report.ParameterPrompt.EndDateTime</Prompt>
</ReportParameter>
<ReportParameter name="EndDate_OffsetType" binding="EndDate_OffsetType" />
<ReportParameter name="EndDate_OffsetValue" binding="EndDate_OffsetValue" />
</ReportParameters>
</Control>
</Controls>
</ParameterBlock>
<ReportDefinition>Res.SystemCenter.Operations.Manager.Health.Check.Report.Library.Report.Perf.PerfDaily</ReportDefinition>
</Report>
<Report ID="SystemCenter.Operations.Manager.Health.Check.Report.Library.Report.Misc.InfraStructure" Accessibility="Public" Visible="true" Target="System!System.Entity">
<ReportDefinition>Res.SystemCenter.Operations.Manager.Health.Check.Report.Library.Report.Misc.InfraStructure</ReportDefinition>
</Report>
<Report ID="SystemCenter.Operations.Manager.Health.Check.Report.Library.Report.Misc.ManagementPacks" Accessibility="Public" Visible="true" Target="System!System.Entity">
<ReportDefinition>Res.SystemCenter.Operations.Manager.Health.Check.Report.Library.Report.Misc.ManagementPacks</ReportDefinition>
</Report>
<Report ID="SystemCenter.Operations.Manager.Health.Check.Report.Library.Report.Misc.APM" Accessibility="Public" Visible="true" Target="System!System.Entity">
<ReportDefinition>Res.SystemCenter.Operations.Manager.Health.Check.Report.Library.Report.Misc.APM</ReportDefinition>
</Report>
<Report ID="SystemCenter.Operations.Manager.Health.Check.Report.Library.Report.Misc.AgentsHealth" Accessibility="Public" Visible="true" Target="System!System.Entity">
<ReportDefinition>Res.SystemCenter.Operations.Manager.Health.Check.Report.Library.Report.Misc.AgentsHealth</ReportDefinition>
</Report>
<Report ID="SystemCenter.Operations.Manager.Health.Check.Report.Library.Report.Misc.HealthServicedistributionunas" Accessibility="Public" Visible="true" Target="System!System.Entity">
<ReportDefinition>Res.SystemCenter.Operations.Manager.Health.Check.Report.Library.Report.Misc.HealthServicedistributionunas</ReportDefinition>
</Report>
<Report ID="SystemCenter.Operations.Manager.Health.Check.Report.Library.Report.Misc.HealthServiceActionAccounts" Accessibility="Public" Visible="true" Target="System!System.Entity">
<ReportDefinition>Res.SystemCenter.Operations.Manager.Health.Check.Report.Library.Report.Misc.HealthServiceActionAccounts</ReportDefinition>
</Report>
<Report ID="SystemCenter.Operations.Manager.Health.Check.Report.Library.Report.Misc.OMSManaged" Accessibility="Public" Visible="true" Target="System!System.Entity">
<ReportDefinition>Res.SystemCenter.Operations.Manager.Health.Check.Report.Library.Report.Misc.OMSManaged</ReportDefinition>
</Report>
<Report ID="SystemCenter.Operations.Manager.Health.Check.Report.Library.Report.Misc.AgentsOverview" Accessibility="Public" Visible="true" Target="System!System.Entity">
<ReportDefinition>Res.SystemCenter.Operations.Manager.Health.Check.Report.Library.Report.Misc.AgentsOverview</ReportDefinition>
</Report>
<Report ID="SystemCenter.Operations.Manager.Health.Check.Report.Library.Report.Monitors.NoisiestMonitors" Accessibility="Public" Visible="true" Target="System!System.Entity">
<ParameterBlock columns="6" xmlns="http://schemas.microsoft.com/mom/reporting/2007/ReportParameterSettings">
<Controls>
<Control type="Microsoft.SystemCenter.DataWarehouse.Report.ParameterControl.RelativeDateTimePicker" rowSpan="2" columnSpan="2">
<ReportParameters>
<ReportParameter name="TimeZone" binding="TimeZone">
<Prompt>DWLIB!Microsoft.SystemCenter.DataWarehouse.Report.ParameterPrompt.TimeZone</Prompt>
</ReportParameter>
<ReportParameter name="TimeZoneName" binding="TimeZoneName" />
<ReportParameter name="StartDate_BaseType" binding="StartDate_BaseType" />
<ReportParameter name="StartDate_BaseValue" binding="StartDate_BaseValue">
<Prompt>DWLIB!Microsoft.SystemCenter.DataWarehouse.Report.ParameterPrompt.StartDateTime</Prompt>
</ReportParameter>
<ReportParameter name="StartDate_OffsetType" binding="StartDate_OffsetType" />
<ReportParameter name="StartDate_OffsetValue" binding="StartDate_OffsetValue" />
<ReportParameter name="EndDate_BaseType" binding="EndDate_BaseType" />
<ReportParameter name="EndDate_BaseValue" binding="EndDate_BaseValue">
<Prompt>DWLIB!Microsoft.SystemCenter.DataWarehouse.Report.ParameterPrompt.EndDateTime</Prompt>
</ReportParameter>
<ReportParameter name="EndDate_OffsetType" binding="EndDate_OffsetType" />
<ReportParameter name="EndDate_OffsetValue" binding="EndDate_OffsetValue" />
</ReportParameters>
</Control>
</Controls>
</ParameterBlock>
<ReportDefinition>Res.SystemCenter.Operations.Manager.Health.Check.Report.Library.Report.Monitors.NoisiestMonitors</ReportDefinition>
</Report>
<Report ID="SystemCenter.Operations.Manager.Health.Check.Report.Library.Report.Monitors.StateChangesPerDay" Accessibility="Public" Visible="true" Target="System!System.Entity">
<ParameterBlock columns="6" xmlns="http://schemas.microsoft.com/mom/reporting/2007/ReportParameterSettings">
<Controls>
<Control type="Microsoft.SystemCenter.DataWarehouse.Report.ParameterControl.RelativeDateTimePicker" rowSpan="2" columnSpan="2">
<ReportParameters>
<ReportParameter name="TimeZone" binding="TimeZone">
<Prompt>DWLIB!Microsoft.SystemCenter.DataWarehouse.Report.ParameterPrompt.TimeZone</Prompt>
</ReportParameter>
<ReportParameter name="TimeZoneName" binding="TimeZoneName" />
<ReportParameter name="StartDate_BaseType" binding="StartDate_BaseType" />
<ReportParameter name="StartDate_BaseValue" binding="StartDate_BaseValue">
<Prompt>DWLIB!Microsoft.SystemCenter.DataWarehouse.Report.ParameterPrompt.StartDateTime</Prompt>
</ReportParameter>
<ReportParameter name="StartDate_OffsetType" binding="StartDate_OffsetType" />
<ReportParameter name="StartDate_OffsetValue" binding="StartDate_OffsetValue" />
<ReportParameter name="EndDate_BaseType" binding="EndDate_BaseType" />
<ReportParameter name="EndDate_BaseValue" binding="EndDate_BaseValue">
<Prompt>DWLIB!Microsoft.SystemCenter.DataWarehouse.Report.ParameterPrompt.EndDateTime</Prompt>
</ReportParameter>
<ReportParameter name="EndDate_OffsetType" binding="EndDate_OffsetType" />
<ReportParameter name="EndDate_OffsetValue" binding="EndDate_OffsetValue" />
</ReportParameters>
</Control>
</Controls>
</ParameterBlock>
<ReportDefinition>Res.SystemCenter.Operations.Manager.Health.Check.Report.Library.Report.Monitors.StateChangesPerDay</ReportDefinition>
</Report>
<Report ID="SystemCenter.Operations.Manager.Health.Check.Report.Library.Report.Monitors.StateDataNotGroomed" Accessibility="Public" Visible="true" Target="System!System.Entity">
<ReportDefinition>Res.SystemCenter.Operations.Manager.Health.Check.Report.Library.Report.Monitors.StateDataNotGroomed</ReportDefinition>
</Report>
<Report ID="SystemCenter.Operations.Manager.Health.Check.Report.Library.Report.Misc.OverviewGroups" Accessibility="Public" Visible="true" Target="System!System.Entity">
<ReportDefinition>Res.SystemCenter.Operations.Manager.Health.Check.Report.Library.Report.Misc.OverviewGroups</ReportDefinition>
</Report>
</Reports>
</Reporting>
<LanguagePacks>
<LanguagePack ID="ENU" IsDefault="true">
<DisplayStrings>
<DisplayString ElementID="SystemCenter.Operations.Manager.Health.Check.Report.Library">
<Name>System Center Operations Manager Health Check reports</Name>
<Description>Health Check Reports by: Pete Zerger and Oskar Landman</Description>
</DisplayString>
<DisplayString ElementID="SystemCenter.Operations.Manager.Health.Check.Report.Alerts.PerUserID">
<Name>Health Check Report - Alerts - Per User Id</Name>
</DisplayString>
<DisplayString ElementID="SystemCenter.Operations.Manager.Health.Check.Report.Library.Report.Alerts.PerUserCount">
<Name>Health Check Report - Alerts - Per User Count</Name>
</DisplayString>
<DisplayString ElementID="SystemCenter.Operations.Manager.Health.Check.Report.Library.Report.Misc.DatabaseState">
<Name>Health Check Report - Misc - Databases State</Name>
</DisplayString>
<DisplayString ElementID="SystemCenter.Operations.Manager.Health.Check.Report.Library.Report.Misc.ConfigChurn.Details">
<Name>Health Check Report - Misc - Config Churn Details</Name>
</DisplayString>
<DisplayString ElementID="SystemCenter.Operations.Manager.Health.Check.Report.Library.Report.Misc.ConfigChurn.Overview">
<Name>Health Check Report - Misc - Config Churn Overview</Name>
</DisplayString>
<DisplayString ElementID="Microsoft.SystemCenter.DataWarehouse.Report.ParameterPrompt.UserID">
<Name>User Id</Name>
</DisplayString>
<DisplayString ElementID="Microsoft.SystemCenter.DataWarehouse.Report.ParameterPrompt.ResolutionState">
<Name>Resolution State</Name>
</DisplayString>
<DisplayString ElementID="Microsoft.SystemCenter.DataWarehouse.Report.ParameterPrompt.ManagedEntityTypeSystemName">
<Name>ManagedEntityTypeSystemName</Name>
</DisplayString>
<DisplayString ElementID="Microsoft.SystemCenter.DataWarehouse.Report.ParameterPrompt.Computer">
<Name>Computer</Name>
</DisplayString>
<DisplayString ElementID="Microsoft.SystemCenter.DataWarehouse.Report.ParameterPrompt.Eventnumber">
<Name>Eventnumber</Name>
</DisplayString>
<DisplayString ElementID="Microsoft.SystemCenter.DataWarehouse.Report.ParameterPrompt.computergroups">
<Name>Computer Groups</Name>
</DisplayString>
<DisplayString ElementID="SystemCenter.Operations.Manager.Health.Check.Report.Library.Report.Alerts.TotalAlertsPerDay">
<Name>Health Check Report - Alerts - Total Daily</Name>
</DisplayString>
<DisplayString ElementID="SystemCenter.Operations.Manager.Health.Check.Report.Library.Report.Alerts.Top20Alerts">
<Name>Health Check Report - Alerts - Top 20 Alerts</Name>
</DisplayString>
<DisplayString ElementID="SystemCenter.Operations.Manager.Health.Check.Report.Library.Report.Events.EventsPerComputer">
<Name>Health Check Report - Events - Total Events per Computer</Name>
</DisplayString>
<DisplayString ElementID="SystemCenter.Operations.Manager.Health.Check.Report.Library.Report.Events.EventsPerComputerdetail">
<Name>Health Check Report - Events - Events per Computer Detail</Name>
</DisplayString>
<DisplayString ElementID="SystemCenter.Operations.Manager.Health.Check.Report.Library.Report.Events.EventsPerDay">
<Name>Health Check Report - Events - Total Events per Day</Name>
</DisplayString>
<DisplayString ElementID="SystemCenter.Operations.Manager.Health.Check.Report.Library.Report.Events.EventsPerEventNumber">
<Name>Health Check Report - Events - Total Events per Event Number</Name>
</DisplayString>
<DisplayString ElementID="SystemCenter.Operations.Manager.Health.Check.Report.Library.Report.Events.EventDetails">
<Name>Health Check Report - Events - Event Details</Name>
</DisplayString>
<DisplayString ElementID="SystemCenter.Operations.Manager.Health.Check.Report.Library.Report.Misc.MaintenanceMode">
<Name>Health Check Report - Misc - Maintenance Mode</Name>
</DisplayString>
<DisplayString ElementID="SystemCenter.Operations.Manager.Health.Check.Report.Library.Report.Perf.PerfBaseline">
<Name>Health Check Report - Performance - Performance Baseline Collection rules</Name>
</DisplayString>
<DisplayString ElementID="SystemCenter.Operations.Manager.Health.Check.Report.Library.Report.Perf.PerfByComputer">
<Name>Health Check Report - Performance - Performance By Computer</Name>
</DisplayString>
<DisplayString ElementID="SystemCenter.Operations.Manager.Health.Check.Report.Library.Report.Perf.PerfByPerf">
<Name>Health Check Report - Performance - Performance Inserts Daily per Counter</Name>
</DisplayString>
<DisplayString ElementID="SystemCenter.Operations.Manager.Health.Check.Report.Library.Report.Perf.PerfDaily">
<Name>Health Check Report - Performance - Performance Inserts Daily Total</Name>
</DisplayString>
<DisplayString ElementID="SystemCenter.Operations.Manager.Health.Check.Report.Library.Report.Misc.InfraStructure">
<Name>Health Check Report - Misc - Infrastructure</Name>
</DisplayString>
<DisplayString ElementID="SystemCenter.Operations.Manager.Health.Check.Report.Library.Report.Misc.ManagementPacks">
<Name>Health Check Report - Misc - Management Packs</Name>
</DisplayString>
<DisplayString ElementID="SystemCenter.Operations.Manager.Health.Check.Report.Library.Report.Misc.APM">
<Name>Health Check Report - Misc - APM Agents</Name>
</DisplayString>
<DisplayString ElementID="SystemCenter.Operations.Manager.Health.Check.Report.Library.Report.Misc.AgentsHealth">
<Name>Health Check Report - Misc - Current Health Status Down Agents</Name>
</DisplayString>
<DisplayString ElementID="SystemCenter.Operations.Manager.Health.Check.Report.Library.Report.Misc.HealthServicedistributionunas">
<Name>Health Check Report - Misc - Health Service Runas Distribution</Name>
</DisplayString>
<DisplayString ElementID="SystemCenter.Operations.Manager.Health.Check.Report.Library.Report.Misc.HealthServiceActionAccounts">
<Name>Health Check Report - Misc - Health Service Action Accounts overview</Name>
</DisplayString>
<DisplayString ElementID="SystemCenter.Operations.Manager.Health.Check.Report.Library.Report.Misc.OMSManaged">
<Name>Health Check Report - Misc - OMS Managed Agents overview</Name>
</DisplayString>
<DisplayString ElementID="SystemCenter.Operations.Manager.Health.Check.Report.Library.Report.Misc.AgentsOverview">
<Name>Health Check Report - Misc - Agents Overview</Name>
</DisplayString>
<DisplayString ElementID="SystemCenter.Operations.Manager.Health.Check.Report.Library.Report.Monitors.NoisiestMonitors">
<Name>Health Check Report - Monitors - Noisiest Monitors</Name>
</DisplayString>
<DisplayString ElementID="SystemCenter.Operations.Manager.Health.Check.Report.Library.Report.Monitors.StateChangesPerDay">
<Name>Health Check Report - Monitors - State Changes per Day</Name>
</DisplayString>
<DisplayString ElementID="SystemCenter.Operations.Manager.Health.Check.Report.Library.Report.Monitors.StateDataNotGroomed">
<Name>Health Check Report - Monitors - State Data Not Groomed</Name>
</DisplayString>
<DisplayString ElementID="SystemCenter.Operations.Manager.Health.Check.Report.Library.Report.Misc.OverviewGroups">
<Name>Health Check Report - Misc - Overview Groups</Name>
</DisplayString>
</DisplayStrings>
<KnowledgeArticles>
<KnowledgeArticle ElementID="SystemCenter.Operations.Manager.Health.Check.Report.Alerts.PerUserID" Visible="true">
<MamlContent>
<maml:section xmlns:maml="http://schemas.microsoft.com/maml/2004/10">
<maml:title>Summary</maml:title>
<maml:para>This Report shows the amount of alerts defined by date and specific User ID. It is queried from the DataWarehouse Database. </maml:para>
<maml:para>
<maml:ui>Columns Description: </maml:ui>
</maml:para>
<maml:list>
<maml:listItem>
<maml:para>
<maml:ui>Name</maml:ui> – Name of the alert.</maml:para>
</maml:listItem>
<maml:listItem>
<maml:para>
<maml:ui>Description</maml:ui> – The Alert description of the alert.</maml:para>
</maml:listItem>
<maml:listItem>
<maml:para>
<maml:ui>User</maml:ui> – The user account name. </maml:para>
</maml:listItem>
<maml:listItem>
<maml:para>
<maml:ui>Resolution State</maml:ui> – Resolution state of the alert.</maml:para>
</maml:listItem>
<maml:listItem>
<maml:para>
<maml:ui>State Set Date Time</maml:ui> – Date Time when the resolution State of the alert was set.</maml:para>
</maml:listItem>
<maml:listItem>
<maml:para>
<maml:ui>Severity</maml:ui> – Severity of the alert. </maml:para>
</maml:listItem>
<maml:listItem>
<maml:para>
<maml:ui>Priority</maml:ui> – Priority of the alert.</maml:para>
</maml:listItem>
<maml:listItem>
<maml:para>
<maml:ui>Repeat</maml:ui> – Repeat Count of the alert</maml:para>
</maml:listItem>
</maml:list>
<maml:para />
<maml:para>
<maml:ui>Parameters: </maml:ui>
</maml:para>
<maml:para>Date/Time Selection: Allows defining a time period for the report with relative or fixed dates. </maml:para>
<maml:para>User ID: Allows selection of a User ID.</maml:para>
<maml:para>
<maml:ui>Sample Usage: </maml:ui>
</maml:para>
<maml:para />
<maml:para>Open the report and define the start date and end date. Select the account you want to run the report on and run the report. It will show all alerts by specific account between the start and end date. </maml:para>
<maml:para />
</maml:section>
</MamlContent>
</KnowledgeArticle>
<KnowledgeArticle ElementID="SystemCenter.Operations.Manager.Health.Check.Report.Library.Report.Alerts.PerUserCount" Visible="true">
<MamlContent>
<maml:section xmlns:maml="http://schemas.microsoft.com/maml/2004/10">
<maml:title>Summary</maml:title>
<maml:para>This Report shows the Count of alerts defined by date and Resolution State. It is queried from the DataWarehouse Database. </maml:para>
<maml:para>
<maml:ui>Columns Description: </maml:ui>
</maml:para>
<maml:list>
<maml:listItem>
<maml:para>
<maml:ui>User Name</maml:ui> – Name of the User.</maml:para>
</maml:listItem>
<maml:listItem>
<maml:para>
<maml:ui>Resolution State</maml:ui> – Resolution state of the alert.</maml:para>
</maml:listItem>
<maml:listItem>
<maml:para>
<maml:ui>Number of Alerts</maml:ui> – Total number of alerts.</maml:para>
</maml:listItem>
</maml:list>
<maml:para />
<maml:para>
<maml:ui>Parameters: </maml:ui>
</maml:para>
<maml:para>Date/Time Selection: Allows defining a time period for the report with relative or fixed dates. </maml:para>
<maml:para>Resolution State: Allows selection the resolution state of the alerts.</maml:para>
<maml:para>
<maml:ui>Sample Usage: </maml:ui>
</maml:para>
<maml:para />
<maml:para>Open the report and define the start date and end date. Select the resolution state you want to run the report on and run the report. It will show all alerts with a specific resolution state between the start and end date. </maml:para>
<maml:para />
</maml:section>
</MamlContent>
</KnowledgeArticle>
<KnowledgeArticle ElementID="SystemCenter.Operations.Manager.Health.Check.Report.Library.Report.Misc.DatabaseState" Visible="true">
<MamlContent>
<maml:section xmlns:maml="http://schemas.microsoft.com/maml/2004/10">
<maml:title>Summary</maml:title>
<maml:para>This Report shows contains 2 pages on Size and usage of the Operational Database and Data Warehouse.</maml:para>
<maml:list>
<maml:listItem>
<maml:para>
<maml:ui>Page 1</maml:ui> – overview of the Database health state, free space, size etc.</maml:para>
</maml:listItem>
<maml:listItem>
<maml:para>
<maml:ui>Page 2</maml:ui> – overview on tables sizes and indexes.</maml:para>
</maml:listItem>
</maml:list>
</maml:section>
</MamlContent>
</KnowledgeArticle>
<KnowledgeArticle ElementID="SystemCenter.Operations.Manager.Health.Check.Report.Library.Report.Misc.ConfigChurn.Overview" Visible="true">
<MamlContent>
<maml:section xmlns:maml="http://schemas.microsoft.com/maml/2004/10">
<maml:title>Summary</maml:title>
<maml:para>This report helps you identify Config Churn for Discovery Data which changes to often. This can cause performance issues. The data is queried from the Data Warehouse. This report shows an overview of the data and you can click the links within the report to show the discovery details.</maml:para>
<maml:para />
<maml:para>The following columns are available:</maml:para>
<maml:list>
<maml:listItem>
<maml:para>
<maml:ui>Managed Entity Type System Name</maml:ui> – Name of The discovered instance.
</maml:para>
</maml:listItem>
<maml:listItem>
<maml:para>
<maml:ui>Discovery System Name</maml:ui> – Rule name of the discovery.
</maml:para>
</maml:listItem>
<maml:listItem>
<maml:para>
<maml:ui>Changes</maml:ui> – How many times the discovery data was changed.
</maml:para>
</maml:listItem>
</maml:list>
</maml:section>
<maml:section xmlns:maml="http://schemas.microsoft.com/maml/2004/10">
<maml:title>Parameters:</maml:title>
<maml:para>Date/Time Selection: Allows defining a time period for the report with relative or fixed dates. </maml:para>
</maml:section>
<maml:section xmlns:maml="http://schemas.microsoft.com/maml/2004/10">
<maml:title>Additional</maml:title>
<maml:para>For detailed information on Config Churn a Blog Post by Kevin Holman:</maml:para>
<maml:para>
<maml:navigationLink>
<maml:linkText>What Is Config Churn?</maml:linkText>
<maml:uri href="http://blogs.technet.com/b/kevinholman/archive/2009/10/05/what-is-config-churn.aspx" />
</maml:navigationLink>
</maml:para>
<maml:para />
</maml:section>
</MamlContent>
</KnowledgeArticle>
<KnowledgeArticle ElementID="SystemCenter.Operations.Manager.Health.Check.Report.Library.Report.Alerts.TotalAlertsPerDay" Visible="true">
<MamlContent>
<maml:section xmlns:maml="http://schemas.microsoft.com/maml/2004/10">
<maml:title>Summary</maml:title>
<maml:para>This Report shows the Total alerts generated per day alerts on specific resolution state and time period. It is queried from the DataWarehouse Database. </maml:para>
<maml:para>
<maml:ui>Columns Description: (There are 3 columns Total Alerts, Monitor Alerts and Rule Alerts)</maml:ui>
</maml:para>
<maml:list>
<maml:listItem>
<maml:para>
<maml:ui>Date</maml:ui> – Day Date when the alerts are generated.</maml:para>
</maml:listItem>
<maml:listItem>
<maml:para>
<maml:ui>Alerts</maml:ui> – Alerts per day.</maml:para>
</maml:listItem>
</maml:list>
<maml:para />
<maml:para>
<maml:ui>Parameters: </maml:ui>
</maml:para>
<maml:para>Date/Time Selection: Allows defining a time period for the report with relative or fixed dates. </maml:para>
<maml:para>
<maml:ui>Sample Usage: </maml:ui>
</maml:para>
<maml:para />
<maml:para>Open the report and define the start date and end date and run the report. It will show all alerts per day for specific Alerts generated by monitors / Rules and total between the start and end date. </maml:para>
<maml:para />
</maml:section>
</MamlContent>
</KnowledgeArticle>
<KnowledgeArticle ElementID="SystemCenter.Operations.Manager.Health.Check.Report.Library.Report.Alerts.Top20Alerts" Visible="true">
<MamlContent>
<maml:section xmlns:maml="http://schemas.microsoft.com/maml/2004/10">
<maml:title>Summary</maml:title>
<maml:para>This Report shows the top 20 alerts on specific resolution state and time period. It is queried from the DataWarehouse Database. </maml:para>
<maml:para>
<maml:ui>Columns Description: </maml:ui>
</maml:para>
<maml:list>
<maml:listItem>
<maml:para>
<maml:ui>Repeat Count</maml:ui> – Repeat Count of the alerts.</maml:para>
</maml:listItem>
<maml:listItem>
<maml:para>
<maml:ui>Alert Name</maml:ui> – The Name of the alert.</maml:para>
</maml:listItem>
<maml:listItem>
<maml:para>
<maml:ui>Alert Description</maml:ui> – Description of the alert.</maml:para>
</maml:listItem>
</maml:list>
<maml:para />
<maml:para>
<maml:ui>Parameters: </maml:ui>
</maml:para>
<maml:para>Date/Time Selection: Allows defining a time period for the report with relative or fixed dates. </maml:para>
<maml:para>Resolution State ID: Allows selection of a Resolution State.</maml:para>
<maml:para>
<maml:ui>Sample Usage: </maml:ui>
</maml:para>
<maml:para />
<maml:para>Open the report and define the start date and end date. Select the resolution state you want to run the report on and run the report. It will show all alerts by specific account between the start and end date. </maml:para>
<maml:para />
</maml:section>
</MamlContent>
</KnowledgeArticle>
<KnowledgeArticle ElementID="SystemCenter.Operations.Manager.Health.Check.Report.Library.Report.Events.EventsPerComputer" Visible="true">
<MamlContent>
<maml:section xmlns:maml="http://schemas.microsoft.com/maml/2004/10">
<maml:title>Summary</maml:title>
<maml:para>This report will show the Computers (instances) generating the most events. Useful to identify which computer is causing an event Storm.
You can use the links in the report to zoom in per Computer to identify the events per Computer.</maml:para>
<maml:para>The following columns are available:</maml:para>
<maml:list>
<maml:listItem>
<maml:para>
<maml:ui>Computer Name</maml:ui> – Name of the computer raising the events.</maml:para>
</maml:listItem>
<maml:listItem>
<maml:para>
<maml:ui>Total Events</maml:ui> – Total of events generated.</maml:para>
</maml:listItem>
</maml:list>
<maml:para />
<maml:para>
<maml:ui>Parameters: </maml:ui>
</maml:para>
<maml:para>Date/Time Selection: Allows defining a time period for the report with relative or fixed dates. </maml:para>
<maml:para>
<maml:ui>Sample Usage: </maml:ui>
</maml:para>
<maml:para />
<maml:para>Open the report and define the start date and end date and run the report. It will show all events by specific Computer between the start and end date.
The report includes links to details per computer.</maml:para>
<maml:para />
</maml:section>
</MamlContent>
</KnowledgeArticle>
<KnowledgeArticle ElementID="SystemCenter.Operations.Manager.Health.Check.Report.Library.Report.Events.EventsPerDay" Visible="true">
<MamlContent>
<maml:section xmlns:maml="http://schemas.microsoft.com/maml/2004/10">
<maml:title>Summary</maml:title>
<maml:para>This report shows the total count of events logged on a per day basis. This report can be useful to identify an increase in the total events logged.</maml:para>
<maml:para>The following columns are available:</maml:para>
<maml:list>
<maml:listItem>
<maml:para>
<maml:ui>Day Added</maml:ui>
</maml:para>
</maml:listItem>
<maml:listItem>
<maml:para>
<maml:ui>Events per Day</maml:ui>
</maml:para>
</maml:listItem>
</maml:list>
<maml:para />
<maml:para>
<maml:ui>Parameters: </maml:ui>
</maml:para>
<maml:para>Date/Time Selection: Allows defining a time period for the report with relative or fixed dates. </maml:para>
<maml:para>
<maml:ui>Sample Usage: </maml:ui>
</maml:para>
<maml:para />
<maml:para>Open the report and define the start date and end date and run the report. It will show all events generated per day between the start and end date.</maml:para>
<maml:para />
</maml:section>
</MamlContent>
</KnowledgeArticle>
<KnowledgeArticle ElementID="SystemCenter.Operations.Manager.Health.Check.Report.Library.Report.Events.EventsPerEventNumber" Visible="true">
<MamlContent>
<maml:section xmlns:maml="http://schemas.microsoft.com/maml/2004/10">
<maml:title>Summary</maml:title>
<maml:para>This report will show the most common events logged based on event number.</maml:para>
<maml:para>You can use the link on the event number to drill through to the details of the events.</maml:para>
<maml:para>The following columns are available:</maml:para>
<maml:list>
<maml:listItem>
<maml:para>
<maml:ui>Event Source – </maml:ui>Source of the event.</maml:para>
</maml:listItem>
<maml:listItem>
<maml:para>
<maml:ui>Event number</maml:ui> – Event id of the event. (Sortable)</maml:para>
</maml:listItem>
<maml:listItem>
<maml:para>
<maml:ui>Total Events – </maml:ui>Total number of events. (Sortable)</maml:para>
</maml:listItem>
</maml:list>
<maml:para />
<maml:para>
<maml:ui>Parameters: </maml:ui>
</maml:para>
<maml:para>Date/Time Selection: Allows defining a time period for the report with relative or fixed dates. </maml:para>
<maml:para>
<maml:ui>Sample Usage: </maml:ui>
</maml:para>
<maml:para />
<maml:para>Open the report and define the start date and end date and run the report. It will show all events generated per day event id the start and end date.</maml:para>
<maml:para />
</maml:section>
</MamlContent>
</KnowledgeArticle>
<KnowledgeArticle ElementID="SystemCenter.Operations.Manager.Health.Check.Report.Library.Report.Misc.MaintenanceMode" Visible="true">
<MamlContent>
<maml:section xmlns:maml="http://schemas.microsoft.com/maml/2004/10">
<maml:title>Summary</maml:title>
<maml:para>This report will tell you exactly when the maintenance mode was set, on which system Name duration, the reason and the User ID of the user who set the maintenance mode.</maml:para>
<maml:para>The following columns are available:</maml:para>
<maml:list>
<maml:listItem>
<maml:para>
<maml:ui>System Name</maml:ui>
<maml:ui> – </maml:ui>Name of the object which was set to Maintenance.</maml:para>
</maml:listItem>
<maml:listItem>
<maml:para>
<maml:ui>Down Date Time</maml:ui>
<maml:ui> – </maml:ui>Date and time of the start of the Maintenance mode.</maml:para>
</maml:listItem>
<maml:listItem>
<maml:para>
<maml:ui>Restored Date Time</maml:ui>
<maml:ui />– Date and Tim of the end of the Maintenance mode.</maml:para>
</maml:listItem>
<maml:listItem>
<maml:para>
<maml:ui>Outage Type</maml:ui> – Type of the outage like Scheduled, unscheduled etc.</maml:para>
</maml:listItem>
<maml:listItem>
<maml:para>
<maml:ui>Root Cause</maml:ui> – The cause of the maintenance mode hardware, software etc.</maml:para>
</maml:listItem>
<maml:listItem>
<maml:para>
<maml:ui>Reason</maml:ui> –Reason for maintenance giving by the user.</maml:para>
</maml:listItem>
<maml:listItem>
<maml:para>
<maml:ui>User ID</maml:ui> – The account which set the maintenance mode.</maml:para>
</maml:listItem>
</maml:list>
<maml:para />
</maml:section>
<maml:section xmlns:maml="http://schemas.microsoft.com/maml/2004/10">
<maml:title>Configuration</maml:title>
<maml:para>The following parameters Need to be selected:</maml:para>
<maml:list>
<maml:listItem>
<maml:para>
<maml:ui>Start Date</maml:ui>
</maml:para>
</maml:listItem>