1# Copyright(c) 2024 Sparse Technology, Mustafa Abdullah Kus
2# SPDX-License-Identifier: Apache-2.0
3
4menuconfig PROMETHEUS
5	bool "Prometheus Client Library (Pull Method)"
6	depends on NET_SOCKETS
7	depends on HTTP_SERVER
8	help
9	  Enable Prometheus client library
10
11if PROMETHEUS
12
13config PROMETHEUS_LABEL_MAX_COUNT
14	int "Max label count in metric"
15	range 1 8
16	default 1
17	help
18	  Specify how many labels can be attached to a metric.
19
20module = PROMETHEUS
21module-dep = NET_LOG
22module-str = Log level for PROMETHEUS
23module-help = Enable debug message of PROMETHEUS client library.
24source "subsys/net/Kconfig.template.log_config.net"
25
26endif # PROMETHEUS
27