-
Notifications
You must be signed in to change notification settings - Fork 2
/
Template SPLM TC Business Logic Server_J2EE.xml
2212 lines (2212 loc) · 117 KB
/
Template SPLM TC Business Logic Server_J2EE.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:13Z</date>
<groups>
<group>
<name>Teamcenter Server Components</name>
</group>
</groups>
<templates>
<template>
<template>Template SPLM TC Business Logic Server_J2EE</template>
<name>Template SPLM TC Business Logic Server_J2EE</name>
<description>This template is for Teamcenter up to version 12.3</description>
<groups>
<group>
<name>Teamcenter Server Components</name>
</group>
</groups>
<applications>
<application>
<name>Business Logic (Teamcenter)</name>
</application>
<application>
<name>Classes (Java)</name>
</application>
<application>
<name>Compilation (Java)</name>
</application>
<application>
<name>CPU (Java)</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>Threads (Java)</name>
</application>
</applications>
<items>
<item>
<name>Number of Assigned Servers</name>
<type>JMX</type>
<key>jmx["Administer {$POOLID} manager :id={$POOLID}","Number of Assigned Servers"]</key>
<delay>{$UPDATE}</delay>
<history>{$HISTORY}</history>
<trends>{$TREND}</trends>
<description>Teamcenter Server Pool Manager</description>
<applications>
<application>
<name>Business Logic (Teamcenter)</name>
</application>
</applications>
<jmx_endpoint>service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi</jmx_endpoint>
</item>
<item>
<name>Number of Cold Servers</name>
<type>JMX</type>
<key>jmx["Administer {$POOLID} manager :id={$POOLID}","Number of Cold Servers"]</key>
<delay>{$UPDATE}</delay>
<history>{$HISTORY}</history>
<trends>{$TREND}</trends>
<description>Teamcenter Server Pool Manager</description>
<applications>
<application>
<name>Business Logic (Teamcenter)</name>
</application>
</applications>
<jmx_endpoint>service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi</jmx_endpoint>
</item>
<item>
<name>Number of Servers</name>
<type>JMX</type>
<key>jmx["Administer {$POOLID} manager :id={$POOLID}","Number of Servers"]</key>
<delay>{$UPDATE}</delay>
<history>{$HISTORY}</history>
<trends>{$TREND}</trends>
<description>Teamcenter Server Pool Manager</description>
<applications>
<application>
<name>Business Logic (Teamcenter)</name>
</application>
</applications>
<jmx_endpoint>service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi</jmx_endpoint>
</item>
<item>
<name>Number of Servers Terminated Before Normal Timeout</name>
<type>JMX</type>
<key>jmx["Administer {$POOLID} manager :id={$POOLID}","Number of Servers Terminated Before Normal Timeout"]</key>
<delay>{$UPDATE}</delay>
<history>{$HISTORY}</history>
<trends>{$TREND}</trends>
<description>Teamcenter Server Pool Manager</description>
<applications>
<application>
<name>Business Logic (Teamcenter)</name>
</application>
</applications>
<jmx_endpoint>service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi</jmx_endpoint>
</item>
<item>
<name>Number of Warming Up Servers</name>
<type>JMX</type>
<key>jmx["Administer {$POOLID} manager :id={$POOLID}","Number of Warming Up Servers"]</key>
<delay>{$UPDATE}</delay>
<history>{$HISTORY}</history>
<trends>{$TREND}</trends>
<description>Teamcenter Server Pool Manager</description>
<applications>
<application>
<name>Business Logic (Teamcenter)</name>
</application>
</applications>
<jmx_endpoint>service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi</jmx_endpoint>
</item>
<item>
<name>Number of Warm Servers</name>
<type>JMX</type>
<key>jmx["Administer {$POOLID} manager :id={$POOLID}","Number of Warm Servers"]</key>
<delay>{$UPDATE}</delay>
<history>{$HISTORY}</history>
<trends>{$TREND}</trends>
<description>Teamcenter Server Pool Manager</description>
<applications>
<application>
<name>Business Logic (Teamcenter)</name>
</application>
</applications>
<jmx_endpoint>service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi</jmx_endpoint>
</item>
<item>
<name>Servers in Edit Mode</name>
<type>JMX</type>
<key>jmx["Administer {$POOLID} manager :id={$POOLID}","Servers in Edit Mode"]</key>
<delay>{$UPDATE}</delay>
<history>{$HISTORY}</history>
<trends>{$TREND}</trends>
<description>Teamcenter Server Pool Manager</description>
<applications>
<application>
<name>Business Logic (Teamcenter)</name>
</application>
</applications>
<jmx_endpoint>service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi</jmx_endpoint>
</item>
<item>
<name>Servers in Read Mode</name>
<type>JMX</type>
<key>jmx["Administer {$POOLID} manager :id={$POOLID}","Servers in Read Mode"]</key>
<delay>{$UPDATE}</delay>
<history>{$HISTORY}</history>
<trends>{$TREND}</trends>
<description>Teamcenter Server Pool Manager</description>
<applications>
<application>
<name>Business Logic (Teamcenter)</name>
</application>
</applications>
<jmx_endpoint>service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi</jmx_endpoint>
</item>
<item>
<name>Servers in Stateless Mode</name>
<type>JMX</type>
<key>jmx["Administer {$POOLID} manager :id={$POOLID}","Servers in Stateless Mode"]</key>
<delay>{$UPDATE}</delay>
<history>{$HISTORY}</history>
<trends>{$TREND}</trends>
<description>Teamcenter Server Pool Manager</description>
<applications>
<application>
<name>Business Logic (Teamcenter)</name>
</application>
</applications>
<jmx_endpoint>service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi</jmx_endpoint>
</item>
<item>
<name>Host</name>
<type>JMX</type>
<key>jmx["Administer {$POOLID} manager :id={$POOLID}",Host]</key>
<delay>{$UPDATE}</delay>
<history>{$HISTORY}</history>
<trends>0</trends>
<value_type>TEXT</value_type>
<description>Teamcenter Server Pool Manager</description>
<applications>
<application>
<name>Business Logic (Teamcenter)</name>
</application>
</applications>
<jmx_endpoint>service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi</jmx_endpoint>
</item>
<item>
<name>ColdServers (Historical_Stats)</name>
<type>JMX</type>
<key>jmx["Administer {$POOLID} manager monitoring:id=ColdServers",Historical_Stats]</key>
<delay>{$UPDATE}</delay>
<history>{$HISTORY}</history>
<trends>{$TREND}</trends>
<description>A cold server is one that did not report back to the server manager within the configured time period (Default: 5 mins) after being started.</description>
<applications>
<application>
<name>Business Logic (Teamcenter)</name>
</application>
</applications>
<jmx_endpoint>service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi</jmx_endpoint>
</item>
<item>
<name>ColdServers (Recent_Stats)</name>
<type>JMX</type>
<key>jmx["Administer {$POOLID} manager monitoring:id=ColdServers",Recent_Stats]</key>
<delay>{$UPDATE}</delay>
<history>{$HISTORY}</history>
<trends>{$TREND}</trends>
<description>A cold server is one that did not report back to the server manager within the configured time period (Default: 5 mins) after being started.</description>
<applications>
<application>
<name>Business Logic (Teamcenter)</name>
</application>
</applications>
<jmx_endpoint>service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi</jmx_endpoint>
<triggers>
<trigger>
<expression>{last(600s)}>=10</expression>
<name>Teamcenter Alert: Cold servers exceeded threshold</name>
<url>https://docs.sw.siemens.com/en-US/product/282219420/doc/PL20190708094221054.plm00102/html/pool_specific_configuration_tuning</url>
<priority>WARNING</priority>
<description>Performance problems in loading libraries or accessing the database.
A tcserver hanging during initialization.
1.Monitor the CPU and memory consumption on the machine.
2.Look at the syslogs of servers that are detected as cold.</description>
<manual_close>YES</manual_close>
</trigger>
</triggers>
</item>
<item>
<name>EditModeTimeouts (Historical_Stats)</name>
<type>JMX</type>
<key>jmx["Administer {$POOLID} manager monitoring:id=EditModeTimeouts",Historical_Stats]</key>
<delay>{$UPDATE}</delay>
<history>{$HISTORY}</history>
<trends>{$TREND}</trends>
<description>Edit mode timeouts may result in lost user data.</description>
<applications>
<application>
<name>Business Logic (Teamcenter)</name>
</application>
</applications>
<jmx_endpoint>service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi</jmx_endpoint>
</item>
<item>
<name>EditModeTimeouts (Recent_Stats)</name>
<type>JMX</type>
<key>jmx["Administer {$POOLID} manager monitoring:id=EditModeTimeouts",Recent_Stats]</key>
<delay>{$UPDATE}</delay>
<history>{$HISTORY}</history>
<trends>{$TREND}</trends>
<description>Edit mode timeouts may result in lost user data.</description>
<applications>
<application>
<name>Business Logic (Teamcenter)</name>
</application>
</applications>
<jmx_endpoint>service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi</jmx_endpoint>
<triggers>
<trigger>
<expression>{last(600s)}>=10</expression>
<name>Teamcenter Alert: Edit Mode TimeOuts exceeded threshold</name>
<url>https://docs.sw.siemens.com/en-US/product/282219420/doc/PL20190708094221054.plm00102/html/pool_specific_configuration_tuning</url>
<priority>WARNING</priority>
<description>The timeout configuration has produced the indicated number of timed out servers.
1.The timeout period can be configured by running Web Application Manager to update the context parameters and produce a new EAR file for deployment in the web tier application server.</description>
<manual_close>YES</manual_close>
</trigger>
</triggers>
</item>
<item>
<name>LoginTime (Historical_Stats)</name>
<type>JMX</type>
<key>jmx["Administer {$POOLID} manager monitoring:id=LoginTime",Historical_Stats]</key>
<delay>{$UPDATE}</delay>
<history>{$HISTORY}</history>
<trends>0</trends>
<value_type>CHAR</value_type>
<description>Average time taken for user to login during recent time period</description>
<applications>
<application>
<name>Business Logic (Teamcenter)</name>
</application>
</applications>
<jmx_endpoint>service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi</jmx_endpoint>
</item>
<item>
<name>LoginTime (Recent_Stats)</name>
<type>JMX</type>
<key>jmx["Administer {$POOLID} manager monitoring:id=LoginTime",Recent_Stats]</key>
<delay>{$UPDATE}</delay>
<history>{$HISTORY}</history>
<trends>{$TREND}</trends>
<description>Average time taken for user to login during recent time period</description>
<applications>
<application>
<name>Business Logic (Teamcenter)</name>
</application>
</applications>
<jmx_endpoint>service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi</jmx_endpoint>
<triggers>
<trigger>
<expression>{last(600s)}>=60</expression>
<name>Teamcenter Alert: Login Time exceeded threshold</name>
<url>https://docs.sw.siemens.com/en-US/product/282219420/doc/PL20190708094221054.plm00102/html/pool_specific_configuration_tuning</url>
<priority>WARNING</priority>
<description>High CPU consumption on the machine
Slow responses from DB
Trouble getting DB locks
1.Monitor resource consumption in the server pool and the database
2.Check the syslogs for database errors.</description>
<manual_close>YES</manual_close>
</trigger>
</triggers>
</item>
<item>
<name>PoolCapacityTimeouts (Historical_Stats)</name>
<type>JMX</type>
<key>jmx["Administer {$POOLID} manager monitoring:id=PoolCapacityTimeouts",Historical_Stats]</key>
<delay>{$UPDATE}</delay>
<history>{$HISTORY}</history>
<trends>{$TREND}</trends>
<description>Servers are being terminated by the manager before their normal timeout period due to insufficient capacity in the server pool.</description>
<applications>
<application>
<name>Business Logic (Teamcenter)</name>
</application>
</applications>
<jmx_endpoint>service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi</jmx_endpoint>
</item>
<item>
<name>PoolCapacityTimeouts (Recent_Stats)</name>
<type>JMX</type>
<key>jmx["Administer {$POOLID} manager monitoring:id=PoolCapacityTimeouts",Recent_Stats]</key>
<delay>{$UPDATE}</delay>
<history>{$HISTORY}</history>
<trends>{$TREND}</trends>
<description>Servers are being terminated by the manager before their normal timeout period due to insufficient capacity in the server pool.</description>
<applications>
<application>
<name>Business Logic (Teamcenter)</name>
</application>
</applications>
<jmx_endpoint>service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi</jmx_endpoint>
<triggers>
<trigger>
<expression>{last(600s)}>=10</expression>
<name>Teamcenter Alert: Pool Capacity Timeouts exceeded threshold</name>
<url>https://docs.sw.siemens.com/en-US/product/282219420/doc/PL20190708094221054.plm00102/html/pool_specific_configuration_tuning</url>
<priority>WARNING</priority>
<description>The pool capacity and timeout configurations have produced the indicated number of timed out servers.
1.Decrease PROCESS_WARM so that fewer resources are reserved for new sessions.
2.Increase PROCESS_MAX to provide more capacity in the server pool (make sure that enough memory is available on the machine for an increased number of servers).
3.Set shorter timeouts, so that idle servers are removed more quickly.</description>
<manual_close>YES</manual_close>
</trigger>
</triggers>
</item>
<item>
<name>QueryTimeouts (Historical_Stats)</name>
<type>JMX</type>
<key>jmx["Administer {$POOLID} manager monitoring:id=QueryTimeouts",Historical_Stats]</key>
<delay>{$UPDATE}</delay>
<history>{$HISTORY}</history>
<trends>{$TREND}</trends>
<description>A query time out indicates that a single server request has taken longer than the configured timeout.</description>
<applications>
<application>
<name>Business Logic (Teamcenter)</name>
</application>
</applications>
<jmx_endpoint>service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi</jmx_endpoint>
</item>
<item>
<name>QueryTimeouts (Recent_Stats)</name>
<type>JMX</type>
<key>jmx["Administer {$POOLID} manager monitoring:id=QueryTimeouts",Recent_Stats]</key>
<delay>{$UPDATE}</delay>
<history>{$HISTORY}</history>
<trends>{$TREND}</trends>
<description>A query time out indicates that a single server request has taken longer than the configured timeout.</description>
<applications>
<application>
<name>Business Logic (Teamcenter)</name>
</application>
</applications>
<jmx_endpoint>service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi</jmx_endpoint>
<triggers>
<trigger>
<expression>{last(600s)}>=10</expression>
<name>Teamcenter Alert: Query TimeOuts exceeded threshold</name>
<url>https://docs.sw.siemens.com/en-US/product/282219420/doc/PL20190708094221054.plm00102/html/pool_specific_configuration_tuning</url>
<priority>WARNING</priority>
<description>Performance issues in the tcserver
A tcserver hang while processing the request
A request proceeding normally but requiring more processing time than allowed by the timeout (e.g., a request that produces a huge response or analyzes a large portion of the database)
1.Use the Server Manager interface and the web tier monitoring feature to identify tcservers with long-running requests.
2.Analyze the use case that causes the query timeout.
3.Monitor CPU consumption to detect servers that are hung or are completely consuming a CPU. Collect stack traces for these tcservers.
4.Dynamically adjust the logging levels for these tcservers to obtain additional information.</description>
<manual_close>YES</manual_close>
</trigger>
</triggers>
</item>
<item>
<name>ReadModeTimeouts (Historical_Stats)</name>
<type>JMX</type>
<key>jmx["Administer {$POOLID} manager monitoring:id=ReadModeTimeouts",Historical_Stats]</key>
<delay>{$UPDATE}</delay>
<history>{$HISTORY}</history>
<trends>{$TREND}</trends>
<description>Read mode timeouts may force Rich Client users to restart their client sessions.</description>
<applications>
<application>
<name>Business Logic (Teamcenter)</name>
</application>
</applications>
<jmx_endpoint>service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi</jmx_endpoint>
</item>
<item>
<name>ReadModeTimeouts (Recent_Stats)</name>
<type>JMX</type>
<key>jmx["Administer {$POOLID} manager monitoring:id=ReadModeTimeouts",Recent_Stats]</key>
<delay>{$UPDATE}</delay>
<history>{$HISTORY}</history>
<trends>{$TREND}</trends>
<description>Read mode timeouts may force Rich Client users to restart their client sessions.</description>
<applications>
<application>
<name>Business Logic (Teamcenter)</name>
</application>
</applications>
<jmx_endpoint>service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi</jmx_endpoint>
<triggers>
<trigger>
<expression>{last(600s)}>=10</expression>
<name>Teamcenter Alert: Read Mode TimeOuts exceeded threshold</name>
<url>https://docs.sw.siemens.com/en-US/product/282219420/doc/PL20190708094221054.plm00102/html/pool_specific_configuration_tuning</url>
<priority>WARNING</priority>
<description>The timeout configuration has produced the indicated number of timed out servers.
1.The timeout period can be configured by running Web Application Manager to update the context parameters and produce a new EAR file for deployment in the web tier application server.</description>
<manual_close>YES</manual_close>
</trigger>
</triggers>
</item>
<item>
<name>ServerManagerGraveEvents (Historical_Stats)</name>
<type>JMX</type>
<key>jmx["Administer {$POOLID} manager monitoring:id=ServerManagerGraveEvents",Historical_Stats]</key>
<delay>{$UPDATE}</delay>
<history>{$HISTORY}</history>
<trends>{$TREND}</trends>
<description>Something very bad has happened causing the server manager to malfunction.</description>
<applications>
<application>
<name>Business Logic (Teamcenter)</name>
</application>
</applications>
<jmx_endpoint>service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi</jmx_endpoint>
<triggers>
<trigger>
<expression>{last()}>=90</expression>
<name>Teamcenter Alert: Serious problem with Server Manager</name>
<url>https://docs.sw.siemens.com/en-US/product/282219420/doc/PL20190708094221054.plm00102/html/pool_specific_configuration_tuning</url>
<priority>HIGH</priority>
<description>A configuration error or operational failure is preventing the Server Manager from functioning correctly.
1.Look into the problem message and take necessary step to correct the problem, or contact support</description>
<manual_close>YES</manual_close>
</trigger>
</triggers>
</item>
<item>
<name>StatelessModeTimeouts (Historical_Stats)</name>
<type>JMX</type>
<key>jmx["Administer {$POOLID} manager monitoring:id=StatelessModeTimeouts",Historical_Stats]</key>
<delay>{$UPDATE}</delay>
<history>{$HISTORY}</history>
<trends>{$TREND}</trends>
<description>Stateless mode timeouts generally have low impact on users and are a good way to control resource consumption in the server pool. However, an excessive rate might lead to high CPU consumption due to continually starting new servers.</description>
<applications>
<application>
<name>Business Logic (Teamcenter)</name>
</application>
</applications>
<jmx_endpoint>service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi</jmx_endpoint>
</item>
<item>
<name>StatelessModeTimeouts (Recent_Stats)</name>
<type>JMX</type>
<key>jmx["Administer {$POOLID} manager monitoring:id=StatelessModeTimeouts",Recent_Stats]</key>
<delay>{$UPDATE}</delay>
<history>{$HISTORY}</history>
<trends>{$TREND}</trends>
<description>Stateless mode timeouts generally have low impact on users and are a good way to control resource consumption in the server pool. However, an excessive rate might lead to high CPU consumption due to continually starting new servers.</description>
<applications>
<application>
<name>Business Logic (Teamcenter)</name>
</application>
</applications>
<jmx_endpoint>service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi</jmx_endpoint>
<triggers>
<trigger>
<expression>{last(600s)}>=10</expression>
<name>Teamcenter Alert: Stateless Mode TimeOuts exceeded threshold</name>
<url>https://docs.sw.siemens.com/en-US/product/282219420/doc/PL20190708094221054.plm00102/html/pool_specific_configuration_tuning</url>
<priority>WARNING</priority>
<description>The timeout configuration has produced the indicated number of timed out servers.
1.The timeout period can be configured by running Web Application Manager to update the context parameters and produce a new EAR file for deployment in the web tier application server.</description>
<manual_close>YES</manual_close>
</trigger>
</triggers>
</item>
<item>
<name>TcServerCrashes (Historical_Stats)</name>
<type>JMX</type>
<key>jmx["Administer {$POOLID} manager monitoring:id=TcServerCrashes",Historical_Stats]</key>
<delay>{$UPDATE}</delay>
<history>{$HISTORY}</history>
<trends>{$TREND}</trends>
<description>Number of tcservers that have crashed for any reason.</description>
<applications>
<application>
<name>Business Logic (Teamcenter)</name>
</application>
</applications>
<jmx_endpoint>service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi</jmx_endpoint>
</item>
<item>
<name>TcServerCrashes (Recent_Stats)</name>
<type>JMX</type>
<key>jmx["Administer {$POOLID} manager monitoring:id=TcServerCrashes",Recent_Stats]</key>
<delay>{$UPDATE}</delay>
<history>{$HISTORY}</history>
<trends>{$TREND}</trends>
<description>Number of tcservers that have crashed for any reason.</description>
<applications>
<application>
<name>Business Logic (Teamcenter)</name>
</application>
</applications>
<jmx_endpoint>service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi</jmx_endpoint>
<triggers>
<trigger>
<expression>{last(600s)}>=10</expression>
<name>Teamcenter Alert: Business Logic Server Crashes exceeded threshold</name>
<url>https://docs.sw.siemens.com/en-US/product/282219420/doc/PL20190708094221054.plm00102/html/pool_specific_configuration_tuning</url>
<priority>WARNING</priority>
<description>Teamcenter servers are experiencing internal failures.
1.Gather and analyze the syslogs for the crashed servers.
2.Gather more information on the use case that causes the tcserver to crash (see the data provided in this notification).
3.Look for core dumps if available
4.Re-run the use case with additonal logging turned on for the tcserver involved.</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>
<item>
<name>mem Heap Memory used</name>
<type>JMX</type>
<key>jmx["java.lang:type=Memory",HeapMemoryUsage.used]</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 Non-Heap Memory committed</name>
<type>JMX</type>
<key>jmx["java.lang:type=Memory",NonHeapMemoryUsage.committed]</key>
<delay>{$UPDATE}</delay>
<history>{$HISTORY}</history>
<trends>{$TREND}</trends>
<status>DISABLED</status>
<units>B</units>
<applications>
<application>
<name>Memory (Java)</name>