Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 2 additions & 4 deletions config.yaml.template
Original file line number Diff line number Diff line change
Expand Up @@ -14,10 +14,8 @@ cerberus:
check_applicaton_routes: False # When enabled will look for application unavailability using the routes specified in the cerberus config and fails the run

performance_monitoring:
deploy_dashboards: $DEPLOY_DASHBOARDS # Install a mutable grafana and load the performance dashboards. Enable this only when running on OpenShift
repo: "https://github.com/cloud-bulldozer/performance-dashboards.git"
prometheus_url: # The prometheus url/route is automatically obtained in case of OpenShift, please set it when the distribution is Kubernetes.
prometheus_bearer_token: # The bearer token is automatically obtained in case of OpenShift, please set it when the distribution is Kubernetes. This is needed to authenticate with prometheus.
prometheus_url: $PROMETHEUS_URL # The prometheus url/route is automatically obtained in case of OpenShift, please set it when the distribution is Kubernetes.
prometheus_bearer_token: $PROMETHEUS_TOKEN # The bearer token is automatically obtained in case of OpenShift, please set it when the distribution is Kubernetes. This is needed to authenticate with prometheus.
uuid: $UUID # uuid for the run is generated by default if not set
enable_alerts: $ENABLE_ALERTS # Runs the queries specified in the alert profile and displays the info or exits 1 when severity=error
enable_metrics: $CAPTURE_METRICS
Expand Down
3 changes: 2 additions & 1 deletion env.sh
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,8 @@ export SIGNAL_ADDRESS=${SIGNAL_ADDRESS:=0.0.0.0}
export PORT=${PORT:=8081}
export SIGNAL_STATE=${SIGNAL_STATE:=RUN}
export UUID=${UUID:=""}
export DEPLOY_DASHBOARDS=${DEPLOY_DASHBOARDS:=False}
export PROMETHEUS_URL=${PROMETHEUS_URL:=""}
export PROMETHEUS_TOKEN=${PROMETHEUS_TOKEN:=""}
export CAPTURE_METRICS=${CAPTURE_METRICS:=False}
export ENABLE_ALERTS=${ENABLE_ALERTS:=False}
export ALERTS_PATH=${ALERTS_PATH:=config/alerts.yaml}
Expand Down