mirror of
https://github.com/rsyslog/rsyslog.git
synced 2025-12-18 07:30:42 +01:00
Conflicts: ChangeLog configure.ac doc/manual.html plugins/imfile/imfile.c plugins/imklog/imklog.c plugins/immark/immark.c plugins/imptcp/imptcp.c plugins/imrelp/imrelp.c plugins/imtcp/imtcp.c plugins/imtemplate/imtemplate.c plugins/imudp/imudp.c plugins/imuxsock/imuxsock.c plugins/mmsnmptrapd/mmsnmptrapd.c plugins/omtemplate/omtemplate.c runtime/glbl.c runtime/parser.c tools/omfile.c tools/syslogd.c
271 lines
7.0 KiB
C
271 lines
7.0 KiB
C
/* impstats.c
|
|
* A module to periodically output statistics gathered by rsyslog.
|
|
*
|
|
* Copyright 2010-2012 Adiscon GmbH.
|
|
*
|
|
* This file is part of rsyslog.
|
|
*
|
|
* 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
|
|
* -or-
|
|
* see COPYING.ASL20 in the source distribution
|
|
*
|
|
* 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.
|
|
*/
|
|
#include "config.h"
|
|
#include "rsyslog.h"
|
|
#include <stdlib.h>
|
|
#include <stdio.h>
|
|
#include <assert.h>
|
|
#include <signal.h>
|
|
#include <string.h>
|
|
#include <pthread.h>
|
|
#include "dirty.h"
|
|
#include "cfsysline.h"
|
|
#include "module-template.h"
|
|
#include "errmsg.h"
|
|
#include "msg.h"
|
|
#include "srUtils.h"
|
|
#include "unicode-helper.h"
|
|
#include "glbl.h"
|
|
#include "statsobj.h"
|
|
#include "prop.h"
|
|
|
|
MODULE_TYPE_INPUT
|
|
MODULE_TYPE_NOKEEP
|
|
MODULE_CNFNAME("impstats")
|
|
|
|
/* defines */
|
|
#define DEFAULT_STATS_PERIOD (5 * 60)
|
|
#define DEFAULT_FACILITY 5 /* syslog */
|
|
#define DEFAULT_SEVERITY 6 /* info */
|
|
|
|
/* Module static data */
|
|
DEF_IMOD_STATIC_DATA
|
|
DEFobjCurrIf(glbl)
|
|
DEFobjCurrIf(prop)
|
|
DEFobjCurrIf(statsobj)
|
|
DEFobjCurrIf(errmsg)
|
|
|
|
typedef struct configSettings_s {
|
|
int iStatsInterval;
|
|
int iFacility;
|
|
int iSeverity;
|
|
} configSettings_t;
|
|
|
|
struct modConfData_s {
|
|
rsconf_t *pConf; /* our overall config object */
|
|
int iStatsInterval;
|
|
int iFacility;
|
|
int iSeverity;
|
|
};
|
|
static modConfData_t *loadModConf = NULL;/* modConf ptr to use for the current load process */
|
|
static modConfData_t *runModConf = NULL;/* modConf ptr to use for the current load process */
|
|
|
|
|
|
static configSettings_t cs;
|
|
|
|
static prop_t *pInputName = NULL;
|
|
static prop_t *pLocalHostIP = NULL;
|
|
|
|
BEGINisCompatibleWithFeature
|
|
CODESTARTisCompatibleWithFeature
|
|
if(eFeat == sFEATURENonCancelInputTermination)
|
|
iRet = RS_RET_OK;
|
|
ENDisCompatibleWithFeature
|
|
|
|
static inline void
|
|
initConfigSettings(void)
|
|
{
|
|
cs.iStatsInterval = DEFAULT_STATS_PERIOD;
|
|
cs.iFacility = DEFAULT_FACILITY;
|
|
cs.iSeverity = DEFAULT_SEVERITY;
|
|
}
|
|
|
|
|
|
/* actually submit a message to the rsyslog core
|
|
*/
|
|
static inline rsRetVal
|
|
doSubmitMsg(uchar *line)
|
|
{
|
|
msg_t *pMsg;
|
|
DEFiRet;
|
|
|
|
CHKiRet(msgConstruct(&pMsg));
|
|
MsgSetInputName(pMsg, pInputName);
|
|
MsgSetRawMsgWOSize(pMsg, (char*)line);
|
|
MsgSetHOSTNAME(pMsg, glbl.GetLocalHostName(), ustrlen(glbl.GetLocalHostName()));
|
|
MsgSetRcvFrom(pMsg, glbl.GetLocalHostNameProp());
|
|
MsgSetRcvFromIP(pMsg, pLocalHostIP);
|
|
MsgSetMSGoffs(pMsg, 0);
|
|
MsgSetTAG(pMsg, UCHAR_CONSTANT("rsyslogd-pstats:"), sizeof("rsyslogd-pstats:") - 1);
|
|
pMsg->iFacility = runModConf->iFacility;
|
|
pMsg->iSeverity = runModConf->iSeverity;
|
|
pMsg->msgFlags = 0;
|
|
|
|
submitMsg(pMsg);
|
|
|
|
finalize_it:
|
|
RETiRet;
|
|
|
|
}
|
|
|
|
|
|
/* callback for statsobj
|
|
* Note: usrptr exists only to satisfy requirements of statsobj callback interface!
|
|
*/
|
|
static rsRetVal
|
|
doStatsLine(void __attribute__((unused)) *usrptr, cstr_t *cstr)
|
|
{
|
|
DEFiRet;
|
|
doSubmitMsg(rsCStrGetSzStrNoNULL(cstr));
|
|
RETiRet;
|
|
}
|
|
|
|
|
|
/* the function to generate the actual statistics messages
|
|
* rgerhards, 2010-09-09
|
|
*/
|
|
static inline void
|
|
generateStatsMsgs(void)
|
|
{
|
|
statsobj.GetAllStatsLines(doStatsLine, NULL);
|
|
}
|
|
|
|
|
|
BEGINbeginCnfLoad
|
|
CODESTARTbeginCnfLoad
|
|
loadModConf = pModConf;
|
|
pModConf->pConf = pConf;
|
|
/* init legacy config vars */
|
|
initConfigSettings();
|
|
ENDbeginCnfLoad
|
|
|
|
|
|
BEGINendCnfLoad
|
|
CODESTARTendCnfLoad
|
|
/* persist module-specific settings from legacy config system */
|
|
loadModConf->iStatsInterval = cs.iStatsInterval;
|
|
loadModConf->iFacility = cs.iFacility;
|
|
loadModConf->iSeverity = cs.iSeverity;
|
|
ENDendCnfLoad
|
|
|
|
|
|
BEGINcheckCnf
|
|
CODESTARTcheckCnf
|
|
if(pModConf->iStatsInterval == 0) {
|
|
errmsg.LogError(0, NO_ERRCODE, "impstats: stats interval zero not permitted, using "
|
|
"defaul of %d seconds", DEFAULT_STATS_PERIOD);
|
|
pModConf->iStatsInterval = DEFAULT_STATS_PERIOD;
|
|
}
|
|
ENDcheckCnf
|
|
|
|
|
|
BEGINactivateCnf
|
|
rsRetVal localRet;
|
|
CODESTARTactivateCnf
|
|
runModConf = pModConf;
|
|
DBGPRINTF("impstats: stats interval %d seconds\n", runModConf->iStatsInterval);
|
|
localRet = statsobj.EnableStats();
|
|
if(localRet != RS_RET_OK) {
|
|
errmsg.LogError(0, localRet, "impstats: error enabling statistics gathering");
|
|
ABORT_FINALIZE(RS_RET_NO_RUN);
|
|
}
|
|
finalize_it:
|
|
ENDactivateCnf
|
|
|
|
|
|
BEGINfreeCnf
|
|
CODESTARTfreeCnf
|
|
ENDfreeCnf
|
|
|
|
|
|
BEGINrunInput
|
|
CODESTARTrunInput
|
|
/* this is an endless loop - it is terminated when the thread is
|
|
* signalled to do so. This, however, is handled by the framework,
|
|
* right into the sleep below.
|
|
*/
|
|
while(1) {
|
|
srSleep(runModConf->iStatsInterval, 0); /* seconds, micro seconds */
|
|
|
|
if(glbl.GetGlobalInputTermState() == 1)
|
|
break; /* terminate input! */
|
|
|
|
generateStatsMsgs();
|
|
}
|
|
ENDrunInput
|
|
|
|
|
|
BEGINwillRun
|
|
CODESTARTwillRun
|
|
ENDwillRun
|
|
|
|
|
|
BEGINafterRun
|
|
CODESTARTafterRun
|
|
ENDafterRun
|
|
|
|
|
|
BEGINmodExit
|
|
CODESTARTmodExit
|
|
prop.Destruct(&pInputName);
|
|
prop.Destruct(&pLocalHostIP);
|
|
/* release objects we used */
|
|
objRelease(glbl, CORE_COMPONENT);
|
|
objRelease(prop, CORE_COMPONENT);
|
|
objRelease(errmsg, CORE_COMPONENT);
|
|
objRelease(statsobj, CORE_COMPONENT);
|
|
ENDmodExit
|
|
|
|
|
|
|
|
BEGINqueryEtryPt
|
|
CODESTARTqueryEtryPt
|
|
CODEqueryEtryPt_STD_IMOD_QUERIES
|
|
CODEqueryEtryPt_STD_CONF2_QUERIES
|
|
CODEqueryEtryPt_IsCompatibleWithFeature_IF_OMOD_QUERIES
|
|
ENDqueryEtryPt
|
|
|
|
static rsRetVal resetConfigVariables(uchar __attribute__((unused)) *pp, void __attribute__((unused)) *pVal)
|
|
{
|
|
initConfigSettings();
|
|
return RS_RET_OK;
|
|
}
|
|
|
|
|
|
BEGINmodInit()
|
|
CODESTARTmodInit
|
|
*ipIFVersProvided = CURR_MOD_IF_VERSION; /* we only support the current interface specification */
|
|
CODEmodInit_QueryRegCFSLineHdlr
|
|
DBGPRINTF("impstats version %s loading\n", VERSION);
|
|
initConfigSettings();
|
|
CHKiRet(objUse(glbl, CORE_COMPONENT));
|
|
CHKiRet(objUse(prop, CORE_COMPONENT));
|
|
CHKiRet(objUse(errmsg, CORE_COMPONENT));
|
|
CHKiRet(objUse(statsobj, CORE_COMPONENT));
|
|
/* the pstatsinverval is an alias to support a previous screwed-up syntax... */
|
|
CHKiRet(omsdRegCFSLineHdlr((uchar *)"pstatsinterval", 0, eCmdHdlrInt, NULL, &cs.iStatsInterval, STD_LOADABLE_MODULE_ID));
|
|
CHKiRet(omsdRegCFSLineHdlr((uchar *)"pstatinterval", 0, eCmdHdlrInt, NULL, &cs.iStatsInterval, STD_LOADABLE_MODULE_ID));
|
|
CHKiRet(omsdRegCFSLineHdlr((uchar *)"pstatfacility", 0, eCmdHdlrInt, NULL, &cs.iFacility, STD_LOADABLE_MODULE_ID));
|
|
CHKiRet(omsdRegCFSLineHdlr((uchar *)"pstatseverity", 0, eCmdHdlrInt, NULL, &cs.iSeverity, STD_LOADABLE_MODULE_ID));
|
|
CHKiRet(omsdRegCFSLineHdlr((uchar *)"resetconfigvariables", 1, eCmdHdlrCustomHandler, resetConfigVariables, NULL, STD_LOADABLE_MODULE_ID));
|
|
|
|
CHKiRet(prop.Construct(&pInputName));
|
|
CHKiRet(prop.SetString(pInputName, UCHAR_CONSTANT("impstats"), sizeof("impstats") - 1));
|
|
CHKiRet(prop.ConstructFinalize(pInputName));
|
|
|
|
CHKiRet(prop.Construct(&pLocalHostIP));
|
|
CHKiRet(prop.SetString(pLocalHostIP, UCHAR_CONSTANT("127.0.0.1"), sizeof("127.0.0.1") - 1));
|
|
CHKiRet(prop.ConstructFinalize(pLocalHostIP));
|
|
ENDmodInit
|
|
/* vi:set ai:
|
|
*/
|