summaryrefslogtreecommitdiff
path: root/uptime.c
blob: ce6093fa7dfa9b46eba5cfb6596e9b5c568d2891 (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
#include <stdio.h>
#include <string.h>
#include "common.h"

int uptime(int argc, char **argv) {
	FILE *f;
	float uptime;
	if(argc > 1) {
		if(!strcmp(argv[1], "config")) {
			puts("graph_title Uptime\n"
				"graph_args --base 1000 -l 0 \n"
				"graph_vlabel uptime in days\n"
				"uptime.label uptime\n"
				"uptime.draw AREA");
			return 0;
		}
		if(!strcmp(argv[1], "autoconf"))
			return writeyes();
	}
	if(!(f=fopen("/proc/uptime", "r"))) {
		fputs("cannot open /proc/uptime\n", stderr);
		return 1;
	}
	if(1 != fscanf(f, "%f", &uptime)) {
		fputs("cannot read from /proc/uptime\n", stderr);
		fclose(f);
		return 1;
	}
	fclose(f);
	printf("uptime.value %.2f\n", uptime/86400);
	return 0;
}