Repository URL to install this package:
|
Version:
0.0.5-1 ▾
|
#!/bin/bash
###################################
#
# WARNING! Values below should be OBLIGATORILY modified
#
###################################
## Account token value
export ACCOUNT_TOKEN=
## Analyze Group ID
export ANALYZE_GROUP_ID=
## Comma-separated list of JVM ID(s)
export JVM_IDS=
## Comma-separated directories with the GC log files, one per each JVM
## Warning! The directories must be provided in the same order as JVM_IDS
export LOGS_DIRS=
###################################
# Uncomment next line if you want to explicitly define Java home dir
#export JAVA_HOME=/path/to/java/home
export JAVA_PROC_ARGS="-Xmx128m -Xms128m"
# Connector working data directory
export DATA_DIR=/var/lib/gcpc
# GCPC Application logs location
export GCP_APP_LOG_DIR=/var/log/gcpc
# GCPlot API Host
export GCP_HOST=gs.gcplot.com
# Whether to use HTTPS for connections
export USE_HTTPS=true
# GC Log Files extension suffix (before .N number for rotating logs),
# often set with "-Xloggc" JVM flag
export EXTENSION=.log
export RELOAD_CONFIG_MS=30000
export SYNC_FILES_MS=5000
export TTL=86400000