File: control

package info (click to toggle)
prometheus-cpp-lite 1.0%2Bgit20251202.48d09c4%2Bds-1
  • links: PTS
  • area: main
  • in suites: sid
  • size: 304 kB
  • sloc: cpp: 1,639; ansic: 123; makefile: 2
file content (35 lines) | stat: -rw-r--r-- 1,309 bytes parent folder | download
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
Source: prometheus-cpp-lite
Section: libdevel
Priority: optional
Maintainer: Christoph Martin <chrism@debian.org>
Rules-Requires-Root: no
Build-Depends:
 debhelper-compat (= 13),
 cmake,
Standards-Version: 4.7.2
Homepage: https://github.com/biaks/prometheus-cpp-lite/
#Vcs-Browser: https://salsa.debian.org/debian/prometheus-cpp-lite
#Vcs-Git: https://salsa.debian.org/debian/prometheus-cpp-lite.git

Package: prometheus-cpp-lite
Architecture: all
Depends:
 ${misc:Depends},
Description: C++ Header-only Prometheus client library
 C++ header-only prometheus client library for quickly and easily
 adding metric (and profiling) functionality to C++ projects.
 .
 Advantages:
  - Written in pure C++,
  - Header-only,
  - Cross-platform,
  - Compiles with C ++ 11, C ++ 14, C ++ 17 standards,
  - Has no third-party dependencies,
  - Several APIs for use in your projects,
  - Saving metrics to a file (and then works with node_exporter) or sending
    via http (uses built-in header-only http-client-lite library),
  - Possibility to use different types for storing metrics data (default is
    uint32_t, but you can use double or uint64_t types if you want),
  - Five types of metrics are supported: counter, gauge, summary, histogram
    and benchmark,
  - Has detailed examples of use (see examples folder)