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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
|
/*
* Copyright 2018 Google LLC
*
* 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
*
* https://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.
*/
#define _POSIX_C_SOURCE 200809L
#include <ctype.h>
#include <stdlib.h>
#include <string.h>
#include "collector.h"
#include "util.h"
// size of input buffer for paths and lines
#define BUF_SIZE 256
// prefix to add to /proc/meminfo lines; must fit in BUF_SIZE
#define METRIC_PREFIX "node_memory_"
#define METRIC_PREFIX_LEN (sizeof METRIC_PREFIX - 1)
// suffix to add for " kB" metrics
#define BYTES_SUFFIX "_bytes"
#define BYTES_SUFFIX_LEN (sizeof BYTES_SUFFIX - 1)
static void meminfo_collect(scrape_req *req, void *ctx);
const struct collector meminfo_collector = {
.name = "meminfo",
.collect = meminfo_collect,
};
static void meminfo_collect(scrape_req *req, void *ctx) {
(void) ctx;
// buffers
char buf[BUF_SIZE] = METRIC_PREFIX;
FILE *f;
// convert /proc/meminfo to metrics format
f = fopen("/proc/meminfo", "r");
if (!f)
return;
while (fgets_line(buf + METRIC_PREFIX_LEN, sizeof buf - METRIC_PREFIX_LEN, f)) {
char *p = buf + METRIC_PREFIX_LEN;
while (*p != '\0' && *p != ':') {
if (!isalnum((unsigned char)*p))
*p = '_';
p++;
}
if (*p != ':')
continue;
char *metric_end = p;
while (metric_end > buf + METRIC_PREFIX_LEN && metric_end[-1] == '_')
--metric_end;
*metric_end = '\0';
do p++; while (*p == ' ');
double value = strtod(p, &p);
if (*p != '\0' && *p != ' ')
continue;
if (*p == ' ') {
do p++; while (*p == ' ');
if (p[0] == 'k' && p[1] == 'B') {
if ((metric_end - buf) + BYTES_SUFFIX_LEN >= sizeof buf)
continue;
strcpy(metric_end, BYTES_SUFFIX);
value *= 1024.0;
}
}
scrape_write(req, buf, 0, value);
}
fclose(f);
}
|