blob: fc47523d55c12f9c7c230a968d18c7d7a84bdb2a (
plain)
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
|
/*
Copyright 2019-2020 DigitalOcean Inc.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
/**
* @file promhttp.h
* @brief Provides a HTTP endpoint for metric exposition
* References:
* * MHD_FLAG: https://www.gnu.org/software/libmicrohttpd/manual/libmicrohttpd.html#microhttpd_002dconst
* * MHD_AcceptPolicyCallback:
* https://www.gnu.org/software/libmicrohttpd/manual/libmicrohttpd.html#index-_002aMHD_005fAcceptPolicyCallback
*/
#include <string.h>
#include "microhttpd.h"
#include "prom_collector_registry.h"
/**
* @brief Sets the active registry for metric scraping.
*
* @param active_registery The target prom_collector_registry_t*. If null is passed, the default registry is used.
* The registry MUST be initialized.
*/
void promhttp_set_active_collector_registry(prom_collector_registry_t *active_registry);
/**
* @brief Starts a daemon in the background and returns a pointer to an HMD_Daemon.
*
* References:
* * https://www.gnu.org/software/libmicrohttpd/manual/libmicrohttpd.html#microhttpd_002dinit
*
* @return struct MHD_Daemon*
*/
struct MHD_Daemon *promhttp_start_daemon(unsigned int flags, unsigned short port, MHD_AcceptPolicyCallback apc,
void *apc_cls);
|