2 * collectd - src/zone.c
3 * Copyright (C) 2011 Mathijs Mohlmann
5 * This program is free software; you can redistribute it and/or modify it
6 * under the terms of the GNU General Public License as published by the
7 * Free Software Foundation; only version 2 of the License is applicable.
9 * This program is distributed in the hope that it will be useful, but
10 * WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 * General Public License for more details.
14 * You should have received a copy of the GNU General Public License along
15 * with this program; if not, write to the Free Software Foundation, Inc.,
16 * 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
20 * Dagobert Michelsen (forward-porting)
27 /* avoid procfs.h error "Cannot use procfs in the large file compilation
29 #if !defined(_LP64) && _FILE_OFFSET_BITS == 64
30 #undef _FILE_OFFSET_BITS
31 #undef _LARGEFILE64_SOURCE
42 #include "utils_avltree.h"
44 #define MAX_PROCFS_PATH 40
45 #define FRC2PCT(pp) (((float)(pp)) / 0x8000 * 100)
47 typedef struct zone_stats {
52 static int zone_compare(const void *a, const void *b) {
53 if (*(const zoneid_t *)a == *(const zoneid_t *)b)
55 if (*(const zoneid_t *)a < *(const zoneid_t *)b)
60 static int zone_read_procfile(char const *pidstr, char const *name, void *buf,
64 char procfile[MAX_PROCFS_PATH];
65 (void)snprintf(procfile, sizeof(procfile), "/proc/%s/%s", pidstr, name);
66 if ((fd = open(procfile, O_RDONLY)) == -1) {
70 if (sread(fd, buf, bufsize) != 0) {
71 ERROR("zone plugin: Reading \"%s\" failed: %s", procfile, STRERRNO);
80 static int zone_submit_value(char *zone, gauge_t value) {
81 value_list_t vl = VALUE_LIST_INIT;
84 values[0].gauge = value;
87 vl.values_len = 1; /*STATIC_ARRAY_SIZE (values);*/
88 sstrncpy(vl.plugin, "zone", sizeof(vl.plugin));
89 sstrncpy(vl.type, "percent", sizeof(vl.type));
90 sstrncpy(vl.type_instance, zone, sizeof(vl.type_instance));
92 return plugin_dispatch_values(&vl);
95 static zone_stats_t *zone_find_stats(c_avl_tree_t *tree, zoneid_t zoneid) {
96 zone_stats_t *ret = NULL;
99 if (c_avl_get(tree, (void **)&zoneid, (void **)&ret)) {
100 if (!(ret = malloc(sizeof(*ret)))) {
101 WARNING("zone plugin: no memory");
104 if (!(key = malloc(sizeof(*key)))) {
105 WARNING("zone plugin: no memory");
110 if (c_avl_insert(tree, key, ret)) {
111 WARNING("zone plugin: error inserting into tree");
118 static void zone_submit_values(c_avl_tree_t *tree) {
119 char zonename[ZONENAME_MAX];
120 zoneid_t *zoneid = NULL;
121 zone_stats_t *stats = NULL;
123 while (c_avl_pick(tree, (void **)&zoneid, (void **)&stats) == 0) {
124 if (getzonenamebyid(*zoneid, zonename, sizeof(zonename)) == -1) {
125 WARNING("zone plugin: error retrieving zonename");
127 zone_submit_value(zonename, (gauge_t)FRC2PCT(stats->pctcpu));
135 static c_avl_tree_t *zone_scandir(DIR *procdir) {
142 if (!(tree = c_avl_create(zone_compare))) {
143 WARNING("zone plugin: Failed to create tree");
148 while ((direntp = readdir(procdir))) {
149 char const *pidstr = direntp->d_name;
150 if (pidstr[0] == '.') /* skip "." and ".." */
154 if (pid == 0 || pid == 2 || pid == 3)
155 continue; /* skip sched, pageout and fsflush */
157 if (zone_read_procfile(pidstr, "psinfo", &psinfo, sizeof(psinfo_t)) != 0)
160 stats = zone_find_stats(tree, psinfo.pr_zoneid);
162 stats->pctcpu += psinfo.pr_pctcpu;
163 stats->pctmem += psinfo.pr_pctmem;
169 static int zone_read(void) {
173 if ((procdir = opendir("/proc")) == NULL) {
174 ERROR("zone plugin: cannot open /proc directory\n");
178 tree = zone_scandir(procdir);
183 zone_submit_values(tree); /* this also frees tree */
187 void module_register(void) {
188 plugin_register_read("zone", zone_read);
189 } /* void module_register */