一. 命令行获取
通过调用shell命令获取系统信息,如cpu个数,cpu/内存磁盘使用情况,网络信息等。
获取IP地址:ifconfig ens33 | awk '/inet addr/{ print $2; }' | cut -d : -f 2 CPU一分钟平均使用率: cat /proc/loadavg | cut -d ' ' -f 1 CPU当前使用率:IDLE=$(top -b -n 1|grep Cpu|awk '{print $8; }' ) (100-IDLE)% CPU当前用户使用率:top -b -n 1|grep Cpu|awk '{print $2; }' 总内存:cat /proc/meminfo | awk '/MemTotal/{print $2}' 空闲内存:cat /proc/meminfo | awk '/MemFree/{print $2}' 磁盘占用率:df -h | grep '/dev/root' | awk '{print $5}' 当前时间:date +%Y%m%d-%H:%M:%S 系统运行时间:uptime | awk '{ print $3; }' | cut -d ',' -f1
#include <stdio.h> #include <stdlib.h> #include <unistd.h> #include <string.h> #define CMD_BUF_SIZE 256 typedef float (*func_trans)(char *buf, int buf_size); static float trans_cpu_avg_rate(char *buf, int buf_size); static float trans_cpu_now_rate(char *buf, int buf_size); static float trans_mem_rate(char *buf, int buf_size); static int exec_cmd(char *buf, int buf_size, char *cmd) { if(NULL == cmd || NULL == buf || buf_size <= 0){ return -1; } FILE *f = NULL; int len = 0; f= popen(cmd, "r"); if(NULL == f){ return -1; } // memset(buf, ' ', buf_size); if(NULL == fgets(buf, buf_size, f)){ pclose(f); return -1; } pclose(f); len = strlen(buf); if(len > 0 && (buf[len-1] == ' ')){ buf[len-1] = '