This repository has been archived by the owner on Jun 7, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 151
/
configuration.py
66 lines (56 loc) · 2.42 KB
/
configuration.py
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
"""docstring for installed packages."""
import os
import logging
from prometheus_api_client.utils import parse_datetime, parse_timedelta
if os.getenv("FLT_DEBUG_MODE", "False") == "True":
LOGGING_LEVEL = logging.DEBUG # Enable Debug mode
else:
LOGGING_LEVEL = logging.INFO
# Log record format
logging.basicConfig(
format="%(asctime)s:%(levelname)s:%(name)s: %(message)s", level=LOGGING_LEVEL
)
# set up logging
_LOGGER = logging.getLogger(__name__)
class Configuration:
"""docstring for Configuration."""
# url for the prometheus host
prometheus_url = os.getenv("FLT_PROM_URL")
# any headers that need to be passed while connecting to the prometheus host
prom_connect_headers = None
# example oath token passed as a header
if os.getenv("FLT_PROM_ACCESS_TOKEN"):
prom_connect_headers = {
"Authorization": "bearer " + os.getenv("FLT_PROM_ACCESS_TOKEN")
}
# list of metrics that need to be scraped and predicted
# multiple metrics can be separated with a ";"
# if a metric configuration matches more than one timeseries,
# it will scrape all the timeseries that match the config.
metrics_list = str(
os.getenv(
"FLT_METRICS_LIST",
"up{app='openshift-web-console', instance='172.44.0.18:8443'}",
)
).split(";")
# this will create a rolling data window on which the model will be trained
# example: if set to 15d will train the model on past 15 days of data,
# every time new data is added, it will truncate the data that is out of this range.
rolling_training_window_size = parse_timedelta(
"now", os.getenv("FLT_ROLLING_TRAINING_WINDOW_SIZE", "3d")
)
# How often should the anomaly detector retrain the model (in minutes)
retraining_interval_minutes = int(
os.getenv("FLT_RETRAINING_INTERVAL_MINUTES", "120")
)
metric_chunk_size = parse_timedelta("now", str(retraining_interval_minutes) + "m")
_LOGGER.info(
"Metric data rolling training window size: %s", rolling_training_window_size
)
_LOGGER.info("Model retraining interval: %s minutes", retraining_interval_minutes)
# An option for Parallelism.
# An Integer specifying the number of metrics to be trained in parallel.
# Default: 1.
# Note: The upper limit to this will be decided by the number of CPU cores
# available to the container.
parallelism = int(os.getenv("FLT_PARALLELISM", "1"))