-
Notifications
You must be signed in to change notification settings - Fork 1
/
Config.uk
45 lines (36 loc) · 895 Bytes
/
Config.uk
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
menuconfig LIBFPING
bool "fping Unikraft library"
default n
if LIBFPING
config LIBFPING_MAIN_FUNCTION
bool "Provide main function"
default n
menuconfig FPING_UKSTORE_SUPPORT
bool "Register ukstore getters"
default n
select LIBUKSTORE
if FPING_UKSTORE_SUPPORT
config FPING_UKSTORE_SUPPORT_DEBUG
bool "Enable debug information on ukstore getters"
default n
endif
menuconfig FPING_PROMETHEUS_SUPPORT
bool "Enable Prometheus metrics server"
default n
select FPING_UKSTORE_SUPPORT
select LIBPROMETHEUS
if FPING_PROMETHEUS_SUPPORT
config FPING_PROMETHEUS_SUPPORT_LATEST
bool "Enable latest ping value metric"
default y
config FPING_PROMETHEUS_SUPPORT_MIN
bool "Enable minimum ping value metric"
default y
config FPING_PROMETHEUS_SUPPORT_MAX
bool "Enable maximum ping value metric"
default y
endif
config FPING_DEBUG
bool "Enable debug mode"
default n
endif