1 Star 0 Fork 10

彭某仁/plugin_linux_base

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
cpu.cpp 4.68 KB
一键复制 编辑 原始数据 按行查看 历史
xrkmonitor 提交于 2020-11-15 10:26 . up
/*** xrkmonitor license ***
Copyright (c) 2019 by rockdeng
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
http://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.
字符云监控(xrkmonitor) 开源版 (c) 2019 by rockdeng
当前版本:v1.0
使用授权协议: apache license 2.0
云版本主页:http://xrkmonitor.com
云版本为开源版提供永久免费告警通道支持,告警通道支持短信、邮件、
微信等多种方式,欢迎使用
内置监控插件 linux_base 功能:
使用监控系统 api 实现 linux 基础信息监控上报, 包括 cpu/内存/磁盘/网络
****/
#define __STDC_FORMAT_MACROS
#include <sstream>
#include <stdlib.h>
#include <inttypes.h>
#include <errno.h>
#include <unistd.h>
#include <string.h>
#include <stdio.h>
#include <sys/shm.h>
#include <mt_report.h>
#include "cpu.h"
const char * GetCmdResult(const char *cmd);
int GetCpuStatis(TCpuStatic *pcp)
{
TCpuInfo *plast = (TCpuInfo*)pcp->sInfo;
const char *pct = GetCmdResult("cat /proc/stat");
if(!pct)
return -2;
std::ostringstream ss;
ss << "echo \"" << pct << "\" |grep cpu|awk \'{print "CPU_AWK_FMT"}\'";
FILE *fp = popen(ss.str().c_str(), "r");
if(fp == NULL) {
MtReport_Log_Error("popen failed, msg:%s", strerror(errno));
return -2;
}
int i=0;
while( fscanf(fp, "%"PRIu64" %"PRIu64" %"PRIu64" %"PRIu64" %"PRIu64" %"PRIu64" %"PRIu64,
&plast[i].qwUser, &plast[i].qwNice, &plast[i].qwSys, &plast[i].qwIdle,
&plast[i].qwIowait, &plast[i].qwIrq, &plast[i].qwSoftIrq) == 7)
{
plast[i].qwTotal = plast[i].qwUser + plast[i].qwNice + plast[i].qwSys
+ plast[i].qwIdle + plast[i].qwIowait + plast[i].qwIrq + plast[i].qwSoftIrq;
i++;
if(i > MAX_CPU_SUPPORT) {
MtReport_Log_Warn("cpu monitor over limit");
break;
}
}
pclose(fp);
pcp->iCpuCount = i;
ss.str("");
ss << "echo \"" << pct << "\" |grep ctxt|awk \'{print $2}\'";
fp = popen(ss.str().c_str(), "r");
if(fp == NULL) {
MtReport_Log_Error("popen failed, msg:%s", strerror(errno));
return -3;
}
fscanf(fp, "%"PRIu64, &pcp->qwCtxt);
pclose(fp);
ss.str("");
ss << "echo \"" << pct << "\" |grep processes|awk \'{print $2}\'";
fp = popen(ss.str().c_str(), "r");
if(fp == NULL) {
MtReport_Log_Error("popen failed, msg:%s", strerror(errno));
return -4;
}
fscanf(fp, "%"PRIu32, &pcp->dwProcessCount);
pclose(fp);
return i;
}
static TCpuStatic s_cpuLastInfo;
int InitGetCpuUse()
{
if(s_cpuLastInfo.iCpuCount > 0)
return 0;
if(GetCpuStatis(&s_cpuLastInfo) < 0)
return -1;
if(s_cpuLastInfo.iCpuCount <= 0)
return -2;
return s_cpuLastInfo.iCpuCount;
}
int GetCpuUse(TcpuUse *pCpuUse)
{
TCpuStatic now;
if(GetCpuStatis(&now) < 0)
return -1;
if(now.iCpuCount != s_cpuLastInfo.iCpuCount)
return -2;
TCpuStatic *ppre = &s_cpuLastInfo;
TCpuStatic *pnowcp = &now;
pCpuUse->iCpuCount = pnowcp->iCpuCount;
// CPU 整合各场景的使用率
pCpuUse->iCpuUser = CPU_USER(ppre->sInfo[0], pnowcp->sInfo[0]);
pCpuUse->iCpuSys = CPU_SYS(ppre->sInfo[0], pnowcp->sInfo[0]);
pCpuUse->iCpuIdle = CPU_IDLE(ppre->sInfo[0], pnowcp->sInfo[0]);
pCpuUse->iCpuIoWa = CPU_IO(ppre->sInfo[0], pnowcp->sInfo[0]);
pCpuUse->iCpuIrq = CPU_IRQ(ppre->sInfo[0], pnowcp->sInfo[0]);
pCpuUse->iCpuSoftIrq = CPU_SOFTIRQ(ppre->sInfo[0], pnowcp->sInfo[0]);
if(pnowcp->qwCtxt > ppre->qwCtxt)
pCpuUse->dwCtxt = pnowcp->qwCtxt - ppre->qwCtxt;
if(pnowcp->dwProcessCount > ppre->dwProcessCount)
pCpuUse->dwProcessNew = pnowcp->dwProcessCount - ppre->dwProcessCount;
for(int i=0; i < pnowcp->iCpuCount; i++) {
if(ppre->sInfo[i].qwTotal == pnowcp->sInfo[i].qwTotal) {
pCpuUse->iCpuUse[i] = 0;
continue;
}
pCpuUse->iCpuUse[i] = CPU_USE(ppre->sInfo[i], pnowcp->sInfo[i]);
}
memcpy(ppre, pnowcp, sizeof(TCpuStatic));
return pCpuUse->iCpuCount;
}
void WriteCpuLoadAvg()
{
std::string str("cat /proc/loadavg | awk \'{print $1}\'");
FILE *fp = popen(str.c_str(), "r");
if(!fp) {
MtReport_Log_Error("popen failed, msg:%s", strerror(errno));
return;
}
float f = 0.0;
if(fscanf(fp, "%f", &f) == 1) {
MtReport_Attr_Set(XRK_CPU_LOAD_AVG, (int)(f*100));
MtReport_Log_Info("get cpu load avg:%.2f", f);
}
pclose(fp);
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
C++
1
https://gitee.com/bcake/plugin_linux_base.git
git@gitee.com:bcake/plugin_linux_base.git
bcake
plugin_linux_base
plugin_linux_base
master

搜索帮助