-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathenvironment.properties
68 lines (50 loc) · 1.45 KB
/
environment.properties
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
#!/bin/bash
#
# define variables to be used in scripts
#
# default path to EM installation directory
EM_PATH=/opt/CA/Introscope
# user to connect to APM cluster, assuming public key is known
SSH_USER=wily
# hostnames or IP adresses of APM cluster
MOM_HOST=10.0.0.11
COLLECTOR1_HOST=10.0.0.1
COLLECTOR2_HOST=10.0.0.2
COLLECTOR3_HOST=10.0.0.3
COLLECTOR4_HOST=10.0.0.4
COLLECTOR5_HOST=10.0.0.5
COLLECTOR6_HOST=10.0.0.6
COLLECTOR7_HOST=10.0.0.7
COLLECTOR8_HOST=10.0.0.8
COLLECTOR9_HOST=10.0.0.9
COLLECTOR10_HOST=10.0.0.10
# individual paths to EM installation directory
MOM_PATH=$EM_PATH
COLLECTOR1_PATH=$EM_PATH
COLLECTOR2_PATH=$EM_PATH
COLLECTOR3_PATH=$EM_PATH
COLLECTOR4_PATH=$EM_PATH
COLLECTOR5_PATH=$EM_PATH
COLLECTOR6_PATH=$EM_PATH
COLLECTOR7_PATH=$EM_PATH
COLLECTOR8_PATH=$EM_PATH
COLLECTOR9_PATH=$EM_PATH
COLLECTOR10_PATH=$EM_PATH
# how many thread dumps to take
THREAD_DUMP_REPEAT=10
# pause between thread dumps in seconds
THREAD_DUMP_INTERVAL=3
# thread dump file name
THREAD_DUMP_FILE=$EM_PATH/logs/thread_dump_jstack.txt
# thread dump script
THREAD_DUMP_SCRIPT=thread_dump.sh
# thread dump action log file
THREAD_DUMP_ACTION_LOG=thread_dump_action.log
# path to jstack
THREAD_DUMP_JSTACK=$EM_PATH/jdk1.8.0_131/bin/jstack
# check perflog log file
CHECK_PERFLOG_LOG=check_perflog.log
# log files to collect
LOG_FILES=( "perflog.txt" "IntroscopeEnterpriseManager.log" "em.log" "$THREAD_DUMP_FILE" )
# log file target directory
LOG_TARGET_DIR=$EM_PATH/logs/cluster