-
Notifications
You must be signed in to change notification settings - Fork 1
/
config
59 lines (45 loc) · 1.73 KB
/
config
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
## common
# data location
DATA_DIR="$BASE_DIR/data"
# fixed dir
FIXED_DIR="$BASE_DIR/fixed"
# PCM directory
PCM_DIR="$BASE_DIR/pcm"
# aggregations of comparison results
AGGREGATE_DIR="$BASE_DIR/aggregates"
# comparisons results
COMPARISON_DIR="$BASE_DIR/comparisons"
# ideal behavior models
IDEAL_MODELS_DIR="$BASE_DIR/ideal-behavior-models"
# database directory
DB_DIR="$BASE_DIR/db"
# analysis results
RESULT_DIR="$BASE_DIR/results"
# Kieker analysis results
ANALYSIS_DIR="$BASE_DIR/analysis"
LOGGER=192.168.48.213
# Kieker distribution archive extract directory
KIEKER_DIR="/home/reiner/Projects/iObserve/experiments/tools/kieker-1.14-SNAPSHOT"
# iobserve analysis
ANALYSIS="$BASE_DIR/../tools/analysis-0.0.3-SNAPSHOT/bin/analysis"
## analysis
# visualization
UBM_VISUALIZATION=$BASE_DIR/../../iobserve-ui-user-behavior/code/docker-compose.yml
## evaluation
# user behavior comparison tool
EVALUATE_BEHAVIOR=$BASE_DIR/../tools/evaluate-user-behaviors-0.0.3-SNAPSHOT/bin/evaluate-user-behaviors
## reconstructor
RECONSTRUCTOR=$BASE_DIR/../tools/reconstructor-0.0.3-SNAPSHOT/bin/reconstructor
# Kieker trace analysis
TRACE_ANALYSIS="$KIEKER_DIR/bin/trace-analysis.sh"
# dot to pict converter
DOT_PIC="$KIEKER_DIR/bin/dotPic-fileConverter.sh"
# Workload runner
WORKLOAD_RUNNER="$BASE_DIR/../tools/selenium-experiment-workloads-1.0/bin/selenium-experiment-workloads"
# collector
COLLECTOR="$BASE_DIR/../tools/collector-0.0.3-SNAPSHOT/bin/collector"
# Phantom JS installation
WEB_DRIVER="$BASE_DIR/../tools/chromedriver"
SERVICE_BEHAVIOR_ANALYSIS="$BASE_DIR/../tools/service-behavior-analysis-0.0.3-SNAPSHOT/bin/service-behavior-analysis"
COMPARE_BEHAVIOR_MODELS="$BASE_DIR/../tools/compare-behavior-models-0.0.3-SNAPSHOT/bin/compare-behavior-models"
# end