-
Notifications
You must be signed in to change notification settings - Fork 2
/
Template SPLM TC FSC Server.xml
1972 lines (1972 loc) · 101 KB
/
Template SPLM TC FSC Server.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
<?xml version="1.0" encoding="UTF-8"?>
<zabbix_export>
<version>5.0</version>
<date>2021-08-16T20:20:46Z</date>
<groups>
<group>
<name>Teamcenter Server Components</name>
</group>
</groups>
<templates>
<template>
<template>Template SPLM TC FSC Server</template>
<name>Template SPLM TC FSC Server</name>
<groups>
<group>
<name>Teamcenter Server Components</name>
</group>
</groups>
<applications>
<application>
<name>Classes (Java)</name>
</application>
<application>
<name>Compilation (Java)</name>
</application>
<application>
<name>CPU (Java)</name>
</application>
<application>
<name>FSC (Teamcenter)</name>
</application>
<application>
<name>Garbage collector (Java)</name>
</application>
<application>
<name>Memory (Java)</name>
</application>
<application>
<name>Memory pool (Java)</name>
</application>
<application>
<name>Operating system (Java)</name>
</application>
<application>
<name>Runtime (Java)</name>
</application>
<application>
<name>Storage Information</name>
</application>
<application>
<name>Threads (Java)</name>
</application>
</applications>
<items>
<item>
<name>Number Of Failed Opening Files</name>
<type>JMX</type>
<key>jmx["com.teamcenter.mld:units=mSec,name=LocalReadWholeFile-FMSWebHandlerRoot,type=Collector,SRC=com.teamcenter.fms.servercache.FMSWebHandlerRoot",NumFailures]</key>
<delay>{$UPDATE}</delay>
<history>{$HISTORY}</history>
<trends>{$TREND}</trends>
<description>The number of failed transactions.</description>
<applications>
<application>
<name>FSC (Teamcenter)</name>
</application>
</applications>
<jmx_endpoint>service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi</jmx_endpoint>
<triggers>
<trigger>
<expression>{last()}>0</expression>
<name>File Management System Alert: Your users has a problem with opening files from Teamcenter</name>
<url>https://docs.sw.siemens.com/en-US/product/282219420/doc/PL20190708094221054.plm00102/html/c25a0001</url>
<priority>HIGH</priority>
<description>Your users has a problem with opening files from Teamcenter
1.Check FSC services
2.Check FCC component
2.Check volume consistent</description>
<manual_close>YES</manual_close>
</trigger>
</triggers>
</item>
<item>
<name>Number Of Failed Writing Files</name>
<type>JMX</type>
<key>jmx["com.teamcenter.mld:units=mSec,name=LocalWrite-FMSWebHandlerRoot,type=Collector,SRC=com.teamcenter.fms.servercache.FMSWebHandlerRoot",NumFailures]</key>
<delay>{$UPDATE}</delay>
<history>{$HISTORY}</history>
<trends>{$TREND}</trends>
<description>The number of failed transactions.</description>
<applications>
<application>
<name>FSC (Teamcenter)</name>
</application>
</applications>
<jmx_endpoint>service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi</jmx_endpoint>
<triggers>
<trigger>
<expression>{last()}>0</expression>
<name>File Management System Alert: Your users has a problem with wriing files to Teamcenter</name>
<url>https://docs.sw.siemens.com/en-US/product/282219420/doc/PL20190708094221054.plm00102/html/c25a0001</url>
<priority>HIGH</priority>
<description>Your users has a problem with opening files from Teamcenter
1.Check FSC services
2.Check FCC component
2.Check available space of volume</description>
<manual_close>YES</manual_close>
</trigger>
</triggers>
</item>
<item>
<name>AllRoutesFailed</name>
<type>JMX</type>
<key>jmx["FSC_Critical_Events:id=AllRoutesFailed",Historical_Stats]</key>
<delay>{$UPDATE}</delay>
<history>{$HISTORY}</history>
<trends>{$TREND}</trends>
<description>All Routes to resources in FMS Network topology is down. Something very bad has happened causing the FSC process to malfunction</description>
<applications>
<application>
<name>FSC (Teamcenter)</name>
</application>
</applications>
<jmx_endpoint>service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi</jmx_endpoint>
<triggers>
<trigger>
<expression>{last()}>0</expression>
<name>File Management System Alert: All Routes in FMS Network topology is down</name>
<url>https://docs.sw.siemens.com/en-US/product/282219420/doc/PL20190708094221054.plm00102/html/c25a0001</url>
<priority>HIGH</priority>
<description>The FSC Server process serving the resource might have stopped running.
1.Look up the FSCMonitoring.log for additional information on all routes down error.
2.Ensure failed routes are available and restart the FSC process. If problem persists contact support</description>
<manual_close>YES</manual_close>
</trigger>
</triggers>
</item>
<item>
<name>ClientClosedConnection (Historical_Stats)</name>
<type>JMX</type>
<key>jmx["FSC_Critical_Events:id=ClientClosedConnection",Historical_Stats]</key>
<delay>{$UPDATE}</delay>
<history>{$HISTORY}</history>
<trends>{$TREND}</trends>
<description>Client has prematurely closed the connection with FSC Server while data was being transferred.</description>
<applications>
<application>
<name>FSC (Teamcenter)</name>
</application>
</applications>
<jmx_endpoint>service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi</jmx_endpoint>
</item>
<item>
<name>ClientClosedConnection (Recent_Stats)</name>
<type>JMX</type>
<key>jmx["FSC_Critical_Events:id=ClientClosedConnection",Recent_Stats]</key>
<delay>{$UPDATE}</delay>
<history>{$HISTORY}</history>
<trends>{$TREND}</trends>
<description>Client has prematurely closed the connection with FSC Server while data was being transferred.</description>
<applications>
<application>
<name>FSC (Teamcenter)</name>
</application>
</applications>
<jmx_endpoint>service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi</jmx_endpoint>
</item>
<item>
<name>ExpiredTicket (Historical_Stats)</name>
<type>JMX</type>
<key>jmx["FSC_Critical_Events:id=ExpiredTicket",Historical_Stats]</key>
<delay>{$UPDATE}</delay>
<history>{$HISTORY}</history>
<trends>{$TREND}</trends>
<description>FSC Server encountered a expired ticket</description>
<applications>
<application>
<name>FSC (Teamcenter)</name>
</application>
</applications>
<jmx_endpoint>service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi</jmx_endpoint>
</item>
<item>
<name>ExpiredTicket (Recent_Stats)</name>
<type>JMX</type>
<key>jmx["FSC_Critical_Events:id=ExpiredTicket",Recent_Stats]</key>
<delay>{$UPDATE}</delay>
<history>{$HISTORY}</history>
<trends>{$TREND}</trends>
<description>FSC Server encountered a expired ticket</description>
<applications>
<application>
<name>FSC (Teamcenter)</name>
</application>
</applications>
<jmx_endpoint>service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi</jmx_endpoint>
<triggers>
<trigger>
<expression>{last(6000s)}>=2</expression>
<name>File Management System Alert: FSC Server encountered a expired ticket</name>
<url>https://docs.sw.siemens.com/en-US/product/282219420/doc/PL20190708094221054.plm00102/html/c25a0001</url>
<priority>HIGH</priority>
<description>Client is using an expired ticket to obtain the resources from the FSC Server.
1.Verify the system clock and time zone factors of the client where the ticket was originated.
2.Verify the preference value of ticket expiration interval.
3.Tune the above factors if needed and regenerate the ticket.</description>
<manual_close>YES</manual_close>
</trigger>
</triggers>
</item>
<item>
<name>GenericError (Historical_Stats)</name>
<type>JMX</type>
<key>jmx["FSC_Critical_Events:id=GenericError",Historical_Stats]</key>
<delay>{$UPDATE}</delay>
<history>{$HISTORY}</history>
<trends>{$TREND}</trends>
<description>A general error was thrown from FSC Server</description>
<applications>
<application>
<name>FSC (Teamcenter)</name>
</application>
</applications>
<jmx_endpoint>service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi</jmx_endpoint>
</item>
<item>
<name>GenericError (Recent_Stats)</name>
<type>JMX</type>
<key>jmx["FSC_Critical_Events:id=GenericError",Recent_Stats]</key>
<delay>{$UPDATE}</delay>
<history>{$HISTORY}</history>
<trends>{$TREND}</trends>
<description>A general error was thrown from FSC Server</description>
<applications>
<application>
<name>FSC (Teamcenter)</name>
</application>
</applications>
<jmx_endpoint>service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi</jmx_endpoint>
<triggers>
<trigger>
<expression>{last(6000s)}>=10</expression>
<name>File Management System Alert: A general error was thrown from FSC Server</name>
<url>https://docs.sw.siemens.com/en-US/product/282219420/doc/PL20190708094221054.plm00102/html/c25a0001</url>
<priority>HIGH</priority>
<description>The FSC Server process serving the resource is unstable due to recent configuration changes.
1.Look up the FSC log for additional information on the generic error.
2.Take action to correct the issue. If the error persist contact the support with error details.</description>
<manual_close>YES</manual_close>
</trigger>
</triggers>
</item>
<item>
<name>InvalidTicket (Historical_Stats)</name>
<type>JMX</type>
<key>jmx["FSC_Critical_Events:id=InvalidTicket",Historical_Stats]</key>
<delay>{$UPDATE}</delay>
<history>{$HISTORY}</history>
<trends>{$TREND}</trends>
<description>FSC Server encountered a invalid ticket</description>
<applications>
<application>
<name>FSC (Teamcenter)</name>
</application>
</applications>
<jmx_endpoint>service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi</jmx_endpoint>
</item>
<item>
<name>InvalidTicket (Recent_Stats)</name>
<type>JMX</type>
<key>jmx["FSC_Critical_Events:id=InvalidTicket",Recent_Stats]</key>
<delay>{$UPDATE}</delay>
<history>{$HISTORY}</history>
<trends>{$TREND}</trends>
<description>FSC Server encountered a invalid ticket</description>
<applications>
<application>
<name>FSC (Teamcenter)</name>
</application>
</applications>
<jmx_endpoint>service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi</jmx_endpoint>
<triggers>
<trigger>
<expression>{min(6000s)}>=1</expression>
<name>File Management System Alert: FSC Server encountered a invalid ticket</name>
<url>https://docs.sw.siemens.com/en-US/product/282219420/doc/PL20190708094221054.plm00102/html/c25a0001</url>
<priority>HIGH</priority>
<description>Client is using an invalid ticket to obtain the resources from the FSC Server.
1.Ensure that the invalid ticket is generated from a legitimate source.
2.Ensure that encryption keys stored in database match with keys stored with FMS.</description>
<manual_close>YES</manual_close>
</trigger>
</triggers>
</item>
<item>
<name>MemoryCollection (Historical_Stats)</name>
<type>JMX</type>
<key>jmx["FSC_Critical_Events:id=MemoryCollection",Historical_Stats]</key>
<delay>{$UPDATE}</delay>
<history>{$HISTORY}</history>
<trends>{$TREND}</trends>
<description>Java virtual machine detects that the memory usage of a memory pool is exceeding collection usage threshold</description>
<applications>
<application>
<name>FSC (Teamcenter)</name>
</application>
</applications>
<jmx_endpoint>service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi</jmx_endpoint>
</item>
<item>
<name>MemoryCollection (Recent_Stats)</name>
<type>JMX</type>
<key>jmx["FSC_Critical_Events:id=MemoryCollection",Recent_Stats]</key>
<delay>{$UPDATE}</delay>
<history>{$HISTORY}</history>
<trends>{$TREND}</trends>
<description>Java virtual machine detects that the memory usage of a memory pool is exceeding collection usage threshold</description>
<applications>
<application>
<name>FSC (Teamcenter)</name>
</application>
</applications>
<jmx_endpoint>service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi</jmx_endpoint>
<triggers>
<trigger>
<expression>{last(6000s)}>=1</expression>
<name>File Management System Alert:Memory Collection Threshold Exceeded</name>
<url>https://docs.sw.siemens.com/en-US/product/282219420/doc/PL20190708094221054.plm00102/html/c25a0001</url>
<priority>WARNING</priority>
<description>The FSC Server process is operating at maximum memory capacity.
1.Edit startfsc script and increase the value of FSC_MEM.
2.Restart the FSC and ensure that there are no errors.</description>
<manual_close>YES</manual_close>
</trigger>
</triggers>
</item>
<item>
<name>MemoryUsage (Historical_Stats)</name>
<type>JMX</type>
<key>jmx["FSC_Critical_Events:id=MemoryUsage",Historical_Stats]</key>
<delay>{$UPDATE}</delay>
<history>{$HISTORY}</history>
<trends>{$TREND}</trends>
<description>Java virtual machine detects that the memory usage of a memory pool is exceeding usage threshold.</description>
<applications>
<application>
<name>FSC (Teamcenter)</name>
</application>
</applications>
<jmx_endpoint>service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi</jmx_endpoint>
</item>
<item>
<name>MemoryUsage (Recent_Stats)</name>
<type>JMX</type>
<key>jmx["FSC_Critical_Events:id=MemoryUsage",Recent_Stats]</key>
<delay>{$UPDATE}</delay>
<history>{$HISTORY}</history>
<trends>{$TREND}</trends>
<description>Java virtual machine detects that the memory usage of a memory pool is exceeding usage threshold.</description>
<applications>
<application>
<name>FSC (Teamcenter)</name>
</application>
</applications>
<jmx_endpoint>service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi</jmx_endpoint>
<triggers>
<trigger>
<expression>{last(6000s)}>=1</expression>
<name>File Management System Alert:Memory Usage Threshold Exceeded</name>
<url>https://docs.sw.siemens.com/en-US/product/282219420/doc/PL20190708094221054.plm00102/html/c25a0001</url>
<priority>WARNING</priority>
<description>The FSC Server process is operating at maximum memory capacity.
1.Edit startfsc script and increase the value of FSC_MEM.
2.Restart the FSC and ensure that there are no errors.</description>
<manual_close>YES</manual_close>
</trigger>
</triggers>
</item>
<item>
<name>NoRouteError (Historical_Stats)</name>
<type>JMX</type>
<key>jmx["FSC_Critical_Events:id=NoRouteError",Historical_Stats]</key>
<delay>{$UPDATE}</delay>
<history>{$HISTORY}</history>
<trends>{$TREND}</trends>
<description>Client or FCC is connected to wrong FSC Server process.</description>
<applications>
<application>
<name>FSC (Teamcenter)</name>
</application>
</applications>
<jmx_endpoint>service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi</jmx_endpoint>
</item>
<item>
<name>NoRouteError (Recent_Stats)</name>
<type>JMX</type>
<key>jmx["FSC_Critical_Events:id=NoRouteError",Recent_Stats]</key>
<delay>{$UPDATE}</delay>
<history>{$HISTORY}</history>
<trends>{$TREND}</trends>
<description>Client or FCC is connected to wrong FSC Server process.</description>
<applications>
<application>
<name>FSC (Teamcenter)</name>
</application>
</applications>
<jmx_endpoint>service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi</jmx_endpoint>
<triggers>
<trigger>
<expression>{last(6000s)}>=2</expression>
<name>File Management System Alert: Client is attempting to connect to a wrong FSC process.</name>
<url>https://docs.sw.siemens.com/en-US/product/282219420/doc/PL20190708094221054.plm00102/html/c25a0001</url>
<priority>HIGH</priority>
<description>The Client might have established the connection with an old FCC process.
1.Check the fcc.log for errors.
2.Verify the Client or FCC configuration files and restart the FCC process.</description>
<manual_close>YES</manual_close>
</trigger>
</triggers>
</item>
<item>
<name>PeriodicChecks (Historical_Stats)</name>
<type>JMX</type>
<key>jmx["FSC_Critical_Events:id=PeriodicChecks",Historical_Stats]</key>
<delay>{$UPDATE}</delay>
<history>{$HISTORY}</history>
<trends>{$TREND}</trends>
<description>Periodic FSC Server health checks has detected an issue</description>
<applications>
<application>
<name>FSC (Teamcenter)</name>
</application>
</applications>
<jmx_endpoint>service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi</jmx_endpoint>
</item>
<item>
<name>PeriodicChecks (Recent_Stats)</name>
<type>JMX</type>
<key>jmx["FSC_Critical_Events:id=PeriodicChecks",Recent_Stats]</key>
<delay>{$UPDATE}</delay>
<history>{$HISTORY}</history>
<trends>{$TREND}</trends>
<description>Periodic FSC Server health checks has detected an issue</description>
<applications>
<application>
<name>FSC (Teamcenter)</name>
</application>
</applications>
<jmx_endpoint>service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi</jmx_endpoint>
<triggers>
<trigger>
<expression>{last(6000s)}>=2</expression>
<name>File Management System Alert: Periodic FSC Server health checks detected an issue</name>
<url>https://docs.sw.siemens.com/en-US/product/282219420/doc/PL20190708094221054.plm00102/html/c25a0001</url>
<priority>HIGH</priority>
<description>Periodic FSC network, local volume, performance and configuration checks has detected an issue.
1.Look up the FSCMonitoring.log for additional information on the PeriodicChecks event.
2.Take action to correct the issue. If the error persist contact the support with error details.</description>
<manual_close>YES</manual_close>
</trigger>
</triggers>
</item>
<item>
<name>QuarantinedDeadLink (Historical_Stats)</name>
<type>JMX</type>
<key>jmx["FSC_Critical_Events:id=QuarantinedDeadLink",Historical_Stats]</key>
<delay>{$UPDATE}</delay>
<history>{$HISTORY}</history>
<trends>{$TREND}</trends>
<description>A link between two resources in FSC network topology was quarnatined</description>
<applications>
<application>
<name>FSC (Teamcenter)</name>
</application>
</applications>
<jmx_endpoint>service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi</jmx_endpoint>
</item>
<item>
<name>QuarantinedDeadLink (Recent_Stats)</name>
<type>JMX</type>
<key>jmx["FSC_Critical_Events:id=QuarantinedDeadLink",Recent_Stats]</key>
<delay>{$UPDATE}</delay>
<history>{$HISTORY}</history>
<trends>{$TREND}</trends>
<description>A link between two resources in FSC network topology was quarnatined</description>
<applications>
<application>
<name>FSC (Teamcenter)</name>
</application>
</applications>
<jmx_endpoint>service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi</jmx_endpoint>
</item>
<item>
<name>RemoteAdminNotSupported (Historical_Stats)</name>
<type>JMX</type>
<key>jmx["FSC_Critical_Events:id=RemoteAdminNotSupported",Historical_Stats]</key>
<delay>{$UPDATE}</delay>
<history>{$HISTORY}</history>
<trends>{$TREND}</trends>
<description>The Fms_BootStrap_Urls value is incorrect</description>
<applications>
<application>
<name>FSC (Teamcenter)</name>
</application>
</applications>
<jmx_endpoint>service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi</jmx_endpoint>
</item>
<item>
<name>RemoteAdminNotSupported (Recent_Stats)</name>
<type>JMX</type>
<key>jmx["FSC_Critical_Events:id=RemoteAdminNotSupported",Recent_Stats]</key>
<delay>{$UPDATE}</delay>
<history>{$HISTORY}</history>
<trends>{$TREND}</trends>
<description>The Fms_BootStrap_Urls value is incorrect</description>
<applications>
<application>
<name>FSC (Teamcenter)</name>
</application>
</applications>
<jmx_endpoint>service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi</jmx_endpoint>
<triggers>
<trigger>
<expression>{last(6000s)}>=2</expression>
<name>File Management System Alert: TcServer or Teamcenter process is attempting to connect to a wrong FSC process.</name>
<url>https://docs.sw.siemens.com/en-US/product/282219420/doc/PL20190708094221054.plm00102/html/c25a0001</url>
<priority>HIGH</priority>
<description>The value of the preference Fms_BootStrap_Urls is incorrect.
1.Check the tcserver.syslog or teamcenter process.syslog for Fms_BootStrap_Urls value.
2.Correct the Fms_BootStrap_Urls varaible to proper host:port where FSC is running.</description>
<manual_close>YES</manual_close>
</trigger>
</triggers>
</item>
<item>
<name>TimeOutError (Historical_Stats)</name>
<type>JMX</type>
<key>jmx["FSC_Critical_Events:id=TimeOutError",Historical_Stats]</key>
<delay>{$UPDATE}</delay>
<history>{$HISTORY}</history>
<trends>{$TREND}</trends>
<description>FSC Server has encountered a time out issue</description>
<applications>
<application>
<name>FSC (Teamcenter)</name>
</application>
</applications>
<jmx_endpoint>service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi</jmx_endpoint>
</item>
<item>
<name>TimeOutError (Recent_Stats)</name>
<type>JMX</type>
<key>jmx["FSC_Critical_Events:id=TimeOutError",Recent_Stats]</key>
<delay>{$UPDATE}</delay>
<history>{$HISTORY}</history>
<trends>{$TREND}</trends>
<description>FSC Server has encountered a time out issue</description>
<applications>
<application>
<name>FSC (Teamcenter)</name>
</application>
</applications>
<jmx_endpoint>service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi</jmx_endpoint>
<triggers>
<trigger>
<expression>{min(6000s)}>=2</expression>
<name>File Management System Alert: A link between two resources in FSC network toplogy was quarnatined</name>
<url>https://docs.sw.siemens.com/en-US/product/282219420/doc/PL20190708094221054.plm00102/html/c25a0001</url>
<priority>HIGH</priority>
<description>The resource is offline or the network route to the resource via FSC has some issues.
1.Look up the FSCMonitoring.log for additional information on the quarantined link.
2.Ensure that the link is alive and restart the FSC Process.</description>
<manual_close>YES</manual_close>
</trigger>
<trigger>
<expression>{last(6000s)}>=2</expression>
<name>File Management System Alert: Client has prematurely closed the connection with FSC Server while data was being transferred.</name>
<url>https://docs.sw.siemens.com/en-US/product/282219420/doc/PL20190708094221054.plm00102/html/c25a0001</url>
<priority>HIGH</priority>
<description>The client application might have inadvertently terminated or have purposely interrupted the data transfer to FSC Server.
1.Take remedial steps to correct the issue.If the error persists contact the support with error details.</description>
<manual_close>YES</manual_close>
</trigger>
<trigger>
<expression>{last(6000s)}>=2</expression>
<name>File Management System Alert: FSC Server has encountered a time out issue</name>
<url>https://docs.sw.siemens.com/en-US/product/282219420/doc/PL20190708094221054.plm00102/html/c25a0001</url>
<priority>HIGH</priority>
<description>Time out errors occur due to variety of reasons including aged hardware/network components,low bandwidth and high latency, slow or non-responsive socket connections etc.
1.Try setting fsc default FSCDEFAULTS_MAXIMUMTHREADIDLETIMEMS and restart the computer and FSC process.
2.Upgrade the hardware and network components.If the error persists contact the support with error details.</description>
<manual_close>YES</manual_close>
</trigger>
</triggers>
</item>
<item>
<name>cl Loaded Class Count</name>
<type>JMX</type>
<key>jmx["java.lang:type=ClassLoading",LoadedClassCount]</key>
<delay>{$UPDATE}</delay>
<history>{$HISTORY}</history>
<trends>{$TREND}</trends>
<status>DISABLED</status>
<applications>
<application>
<name>Classes (Java)</name>
</application>
</applications>
<jmx_endpoint>service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi</jmx_endpoint>
</item>
<item>
<name>cl Total Loaded Class Count</name>
<type>JMX</type>
<key>jmx["java.lang:type=ClassLoading",TotalLoadedClassCount]</key>
<delay>{$UPDATE}</delay>
<history>{$HISTORY}</history>
<trends>{$TREND}</trends>
<status>DISABLED</status>
<applications>
<application>
<name>Classes (Java)</name>
</application>
</applications>
<jmx_endpoint>service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi</jmx_endpoint>
</item>
<item>
<name>cl Unloaded Class Count</name>
<type>JMX</type>
<key>jmx["java.lang:type=ClassLoading",UnloadedClassCount]</key>
<delay>{$UPDATE}</delay>
<history>{$HISTORY}</history>
<trends>{$TREND}</trends>
<status>DISABLED</status>
<applications>
<application>
<name>Classes (Java)</name>
</application>
</applications>
<jmx_endpoint>service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi</jmx_endpoint>
</item>
<item>
<name>comp Name of the current JIT compiler</name>
<type>JMX</type>
<key>jmx["java.lang:type=Compilation",Name]</key>
<delay>{$UPDATE}</delay>
<history>{$HISTORY}</history>
<trends>0</trends>
<status>DISABLED</status>
<value_type>CHAR</value_type>
<applications>
<application>
<name>Compilation (Java)</name>
</application>
</applications>
<jmx_endpoint>service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi</jmx_endpoint>
<triggers>
<trigger>
<expression>{str(Client)}=1</expression>
<name>{HOST.NAME} uses suboptimal JIT compiler</name>
<priority>INFO</priority>
</trigger>
</triggers>
</item>
<item>
<name>comp Accumulated time spent in compilation</name>
<type>JMX</type>
<key>jmx["java.lang:type=Compilation",TotalCompilationTime]</key>
<delay>{$UPDATE}</delay>
<history>{$HISTORY}</history>
<trends>{$TREND}</trends>
<status>DISABLED</status>
<value_type>FLOAT</value_type>
<units>s</units>
<applications>
<application>
<name>Compilation (Java)</name>
</application>
</applications>
<preprocessing>
<step>
<type>MULTIPLIER</type>
<params>0.001</params>
</step>
</preprocessing>
<jmx_endpoint>service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi</jmx_endpoint>
</item>
<item>
<name>gc ConcurrentMarkSweep number of collections per second</name>
<type>JMX</type>
<key>jmx["java.lang:type=GarbageCollector,name=ConcurrentMarkSweep",CollectionCount]</key>
<delay>{$UPDATE}</delay>
<history>{$HISTORY}</history>
<trends>{$TREND}</trends>
<status>DISABLED</status>
<value_type>FLOAT</value_type>
<applications>
<application>
<name>Garbage collector (Java)</name>
</application>
</applications>
<preprocessing>
<step>
<type>CHANGE_PER_SECOND</type>
<params/>
</step>
</preprocessing>
<jmx_endpoint>service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi</jmx_endpoint>
</item>
<item>
<name>gc ConcurrentMarkSweep accumulated time spent in collection</name>
<type>JMX</type>
<key>jmx["java.lang:type=GarbageCollector,name=ConcurrentMarkSweep",CollectionTime]</key>
<delay>{$UPDATE}</delay>
<history>{$HISTORY}</history>
<trends>{$TREND}</trends>
<status>DISABLED</status>
<value_type>FLOAT</value_type>
<units>s</units>
<applications>
<application>
<name>Garbage collector (Java)</name>
</application>
</applications>
<preprocessing>
<step>
<type>MULTIPLIER</type>
<params>0.001</params>
</step>
</preprocessing>
<jmx_endpoint>service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi</jmx_endpoint>
</item>
<item>
<name>gc Copy number of collections per second</name>
<type>JMX</type>
<key>jmx["java.lang:type=GarbageCollector,name=Copy",CollectionCount]</key>
<delay>{$UPDATE}</delay>
<history>{$HISTORY}</history>
<trends>{$TREND}</trends>
<status>DISABLED</status>
<value_type>FLOAT</value_type>
<applications>
<application>
<name>Garbage collector (Java)</name>
</application>
</applications>
<preprocessing>
<step>
<type>CHANGE_PER_SECOND</type>
<params/>
</step>
</preprocessing>
<jmx_endpoint>service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi</jmx_endpoint>
</item>
<item>
<name>gc Copy accumulated time spent in collection</name>
<type>JMX</type>
<key>jmx["java.lang:type=GarbageCollector,name=Copy",CollectionTime]</key>
<delay>{$UPDATE}</delay>
<history>{$HISTORY}</history>
<trends>{$TREND}</trends>
<status>DISABLED</status>
<value_type>FLOAT</value_type>
<units>s</units>
<applications>
<application>
<name>Garbage collector (Java)</name>
</application>
</applications>
<preprocessing>
<step>
<type>MULTIPLIER</type>
<params>0.001</params>
</step>
</preprocessing>
<jmx_endpoint>service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi</jmx_endpoint>
</item>
<item>
<name>gc MarkSweepCompact number of collections per second</name>
<type>JMX</type>
<key>jmx["java.lang:type=GarbageCollector,name=MarkSweepCompact",CollectionCount]</key>
<delay>{$UPDATE}</delay>
<history>{$HISTORY}</history>
<trends>{$TREND}</trends>
<status>DISABLED</status>
<value_type>FLOAT</value_type>
<applications>
<application>
<name>Garbage collector (Java)</name>
</application>
</applications>
<preprocessing>
<step>
<type>CHANGE_PER_SECOND</type>
<params/>
</step>
</preprocessing>
<jmx_endpoint>service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi</jmx_endpoint>
</item>
<item>
<name>gc MarkSweepCompact accumulated time spent in collection</name>
<type>JMX</type>
<key>jmx["java.lang:type=GarbageCollector,name=MarkSweepCompact",CollectionTime]</key>
<delay>{$UPDATE}</delay>
<history>{$HISTORY}</history>
<trends>{$TREND}</trends>
<status>DISABLED</status>
<value_type>FLOAT</value_type>
<units>s</units>
<applications>
<application>
<name>Garbage collector (Java)</name>
</application>
</applications>
<preprocessing>
<step>
<type>MULTIPLIER</type>
<params>0.001</params>
</step>
</preprocessing>
<jmx_endpoint>service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi</jmx_endpoint>
</item>
<item>
<name>gc ParNew number of collections per second</name>
<type>JMX</type>
<key>jmx["java.lang:type=GarbageCollector,name=ParNew",CollectionCount]</key>
<delay>{$UPDATE}</delay>
<history>{$HISTORY}</history>
<trends>{$TREND}</trends>
<status>DISABLED</status>
<value_type>FLOAT</value_type>
<applications>
<application>
<name>Garbage collector (Java)</name>
</application>
</applications>
<preprocessing>
<step>
<type>CHANGE_PER_SECOND</type>
<params/>
</step>
</preprocessing>
<jmx_endpoint>service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi</jmx_endpoint>
</item>
<item>
<name>gc ParNew accumulated time spent in collection</name>
<type>JMX</type>
<key>jmx["java.lang:type=GarbageCollector,name=ParNew",CollectionTime]</key>
<delay>{$UPDATE}</delay>
<history>{$HISTORY}</history>
<trends>{$TREND}</trends>
<status>DISABLED</status>
<value_type>FLOAT</value_type>
<units>s</units>
<applications>
<application>
<name>Garbage collector (Java)</name>
</application>
</applications>
<preprocessing>
<step>
<type>MULTIPLIER</type>
<params>0.001</params>
</step>
</preprocessing>
<jmx_endpoint>service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi</jmx_endpoint>
</item>
<item>
<name>gc PS MarkSweep number of collections per second</name>
<type>JMX</type>
<key>jmx["java.lang:type=GarbageCollector,name=PS MarkSweep",CollectionCount]</key>
<delay>{$UPDATE}</delay>
<history>{$HISTORY}</history>
<trends>{$TREND}</trends>
<status>DISABLED</status>
<value_type>FLOAT</value_type>
<applications>
<application>
<name>Garbage collector (Java)</name>
</application>
</applications>
<preprocessing>
<step>
<type>CHANGE_PER_SECOND</type>
<params/>
</step>
</preprocessing>
<jmx_endpoint>service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi</jmx_endpoint>
</item>
<item>
<name>gc PS MarkSweep accumulated time spent in collection</name>
<type>JMX</type>
<key>jmx["java.lang:type=GarbageCollector,name=PS MarkSweep",CollectionTime]</key>
<delay>{$UPDATE}</delay>
<history>{$HISTORY}</history>
<trends>{$TREND}</trends>
<status>DISABLED</status>
<value_type>FLOAT</value_type>
<units>s</units>
<applications>
<application>
<name>Garbage collector (Java)</name>
</application>
</applications>
<preprocessing>
<step>
<type>MULTIPLIER</type>
<params>0.001</params>
</step>
</preprocessing>
<jmx_endpoint>service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi</jmx_endpoint>
</item>
<item>
<name>gc PS Scavenge number of collections per second</name>
<type>JMX</type>
<key>jmx["java.lang:type=GarbageCollector,name=PS Scavenge",CollectionCount]</key>
<delay>{$UPDATE}</delay>
<history>{$HISTORY}</history>
<trends>{$TREND}</trends>
<status>DISABLED</status>
<value_type>FLOAT</value_type>
<applications>
<application>
<name>Garbage collector (Java)</name>
</application>
</applications>
<preprocessing>
<step>
<type>CHANGE_PER_SECOND</type>
<params/>
</step>
</preprocessing>
<jmx_endpoint>service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi</jmx_endpoint>
</item>
<item>
<name>gc PS Scavenge accumulated time spent in collection</name>
<type>JMX</type>
<key>jmx["java.lang:type=GarbageCollector,name=PS Scavenge",CollectionTime]</key>
<delay>{$UPDATE}</delay>
<history>{$HISTORY}</history>
<trends>{$TREND}</trends>
<status>DISABLED</status>
<value_type>FLOAT</value_type>
<units>s</units>
<applications>
<application>
<name>Garbage collector (Java)</name>
</application>
</applications>
<preprocessing>
<step>
<type>MULTIPLIER</type>
<params>0.001</params>
</step>
</preprocessing>
<jmx_endpoint>service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi</jmx_endpoint>
</item>
<item>
<name>mem Heap Memory committed</name>
<type>JMX</type>
<key>jmx["java.lang:type=Memory",HeapMemoryUsage.committed]</key>
<delay>{$UPDATE}</delay>
<history>{$HISTORY}</history>
<trends>{$TREND}</trends>
<units>B</units>
<applications>
<application>
<name>Memory (Java)</name>
</application>
</applications>
<jmx_endpoint>service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi</jmx_endpoint>
</item>
<item>
<name>mem Heap Memory max</name>
<type>JMX</type>
<key>jmx["java.lang:type=Memory",HeapMemoryUsage.max]</key>
<delay>{$UPDATE}</delay>
<history>{$HISTORY}</history>
<trends>{$TREND}</trends>
<units>B</units>
<applications>
<application>
<name>Memory (Java)</name>
</application>
</applications>
<jmx_endpoint>service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi</jmx_endpoint>
</item>