-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathesst.conf
More file actions
83 lines (68 loc) · 1.91 KB
/
esst.conf
File metadata and controls
83 lines (68 loc) · 1.91 KB
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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
##########################
# #
# Elasticsearch settings #
# #
##########################
# -------- <change me> --------
#
# URL of the Elasticsearch instance.
#
#
ES_HOST_URL=https://host:port
#
# Elasticsearch credentials to use.
#
ES_CREDENTIALS=user:password
#
# Measurement data retention policy: data is ingested into the same "write"
# index for "ROLL_AFTER" duration and afterwards still kept available for
# "DEL_AFTER" duration before being deleted.
#
ES_ILM_ROLL_AFTER=90d
ES_ILM_DEL_AFTER=180d
# -------- </change me> --------
#
# Names of the Elasticsource entities to create. Only change on naming
# conflicts.
#
ES_PIPELINE_NAME=speedtest
# Name of the alias to Elasticsearch indices to store measurement data. This
# is also used as name prefix for the rotating indices.
ES_ALIAS_NAME=speedtest
ES_TEMPLATE_NAME=speedtest
ES_ILM_POLICY_NAME=speedtest
##################
# #
# Local settings #
# #
##################
# -------- <change me> --------
#
# When should the measurements be performed (cron format).
#
CRON_TIMING="10,30,50 * * * *"
# -------- </change me> --------
#
# Path under which to self-install.
#
INSTALL_DIR=/opt/esst
#
# Name attributes of files holding measurement data. All these files are
# created in system's temporary directory.
#
# Suffix of the temporary file to log one speedtest measurement.
LOG_SUFFIX=.esst.json
# Spool of not-yet-ingested measurements. Used on successful measurement but
# failed upload (like ES not available).
LOG_SPOOL=spool.esst.ndjson
# File containing successful measurement data that failed to ingest.
LOG_FAILURES=failures.esst.ndjson
#
# Speedtest app ...
#
# runnable file name.
SPEEDTEST_BIN_NAME=speedtest-cli
# location name; if not here, it'll be search in $PATH.
SPEEDTEST_BIN_PATH=/opt/local/bin
# any extra params to pass it.
SPEEDTEST_ARGS="--secure"