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
|
// SPDX-License-Identifier: LGPL-2.1-only
#include <libcgroup.h>
#include <stdlib.h>
#include <unistd.h>
#include <string.h>
#include <stdio.h>
#include <sys/types.h>
int read_stats(char *path, char *controller)
{
struct cgroup_stat stat;
void *handle;
int ret;
ret = cgroup_read_stats_begin(controller, path, &handle, &stat);
if (ret != 0) {
fprintf(stderr, "stats read failed\n");
return -1;
}
printf("Stats for %s:\n", path);
printf("%s: %s", stat.name, stat.value);
while ((ret = cgroup_read_stats_next(&handle, &stat)) !=
ECGEOF) {
printf("%s: %s", stat.name, stat.value);
}
cgroup_read_stats_end(&handle);
printf("\n");
return 0;
}
int main(int argc, char *argv[])
{
struct cgroup_file_info info;
char cgroup_path[FILENAME_MAX];
char *controller;
int root_len;
void *handle;
int lvl;
int ret;
if (argc < 2) {
fprintf(stderr, "Usage %s: <controller name>\n",
argv[0]);
exit(EXIT_FAILURE);
}
controller = argv[1];
ret = cgroup_init();
if (ret != 0) {
fprintf(stderr, "init failed\n");
exit(EXIT_FAILURE);
}
ret = cgroup_walk_tree_begin(controller, "/", 0, &handle, &info, &lvl);
if (ret != 0) {
fprintf(stderr, "Walk failed\n");
exit(EXIT_FAILURE);
}
root_len = strlen(info.full_path) - 1;
strncpy(cgroup_path, info.path, FILENAME_MAX - 1);
ret = read_stats(cgroup_path, controller);
if (ret < 0)
exit(EXIT_FAILURE);
while ((ret = cgroup_walk_tree_next(0, &handle, &info, lvl)) !=
ECGEOF) {
if (info.type != CGROUP_FILE_TYPE_DIR)
continue;
strncpy(cgroup_path, info.full_path + root_len, FILENAME_MAX - 1);
strcat(cgroup_path, "/");
ret = read_stats(cgroup_path, controller);
if (ret < 0)
exit(EXIT_FAILURE);
}
cgroup_walk_tree_end(&handle);
return EXIT_SUCCESS;
}
|