-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathKconfig
32 lines (26 loc) · 779 Bytes
/
Kconfig
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
menu "OpenMetrics Exporter"
config METRICS_HOSTNAME
string "Hostname"
default "esp-airsensor"
help
Device's hostname for networking. Maximum length 32 bytes.
config METRICS_WIFI_SSID
string "Wi-Fi SSID"
help
SSID of target AP. Maximum length 32 bytes.
config METRICS_WIFI_PSK
string "Wi-Fi Password"
help
PSK of target AP. Maximum length 64 bytes.
config METRICS_HTTP_PATH
string "HTTP Endpoint Path"
default "/"
help
Put exporter on that page.
config METRICS_MAX_ITEMS
int "Maximum number of items"
default 32
range 1 65535
help
Buffer size of metric list in terms of item.
endmenu