mirror of https://github.com/sipwise/sems.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
138 lines
3.9 KiB
138 lines
3.9 KiB
/*
|
|
* Copyright (C) 2009 IPTEGO GmbH
|
|
*
|
|
* This file is part of SEMS, a free SIP media server.
|
|
*
|
|
* SEMS is free software; you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License as published by
|
|
* the Free Software Foundation; either version 2 of the License, or
|
|
* (at your option) any later version. This program is released under
|
|
* the GPL with the additional exemption that compiling, linking,
|
|
* and/or using OpenSSL is allowed.
|
|
*
|
|
* For a license to use the SEMS software under conditions
|
|
* other than those described here, or to purchase support for this
|
|
* software, please contact iptel.org by e-mail at the following addresses:
|
|
* info@iptel.org
|
|
*
|
|
* SEMS is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with this program; if not, write to the Free Software
|
|
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
|
*/
|
|
|
|
#ifndef _MONITORING_H_
|
|
#define _MONITORING_H_
|
|
|
|
#include <map>
|
|
#include <memory>
|
|
|
|
#include "AmThread.h"
|
|
#include "AmApi.h"
|
|
#include "AmArg.h"
|
|
|
|
#include <time.h>
|
|
|
|
#define NUM_LOG_BUCKETS 16
|
|
|
|
struct LogInfo {
|
|
time_t finished; // for garbage collection
|
|
LogInfo()
|
|
: finished(0) { }
|
|
AmArg info;
|
|
};
|
|
|
|
// empty sample lists are not erased!
|
|
struct SampleInfo {
|
|
time_t finished; // for garbage collection
|
|
struct time_cnt {
|
|
struct timeval time;
|
|
unsigned int counter;
|
|
|
|
time_cnt(struct timeval t, unsigned int c) : time(t), counter(c) {}
|
|
};
|
|
SampleInfo() : finished(0) { }
|
|
std::map<string, list<time_cnt> > sample;
|
|
};
|
|
|
|
struct LogBucket {
|
|
AmMutex log_lock;
|
|
std::map<string, LogInfo> log;
|
|
std::map<string, SampleInfo> samples;
|
|
};
|
|
class MonitorGarbageCollector;
|
|
|
|
class Monitor
|
|
: public AmDynInvokeFactory,
|
|
public AmDynInvoke
|
|
{
|
|
static Monitor* _instance;
|
|
std::unique_ptr<MonitorGarbageCollector> gc_thread;
|
|
|
|
LogBucket logs[NUM_LOG_BUCKETS];
|
|
|
|
LogBucket& getLogBucket(const string& call_id);
|
|
|
|
static unsigned int retain_samples_s;
|
|
void truncate_samples(list<SampleInfo::time_cnt>& v, struct timeval now);
|
|
|
|
void clearFinished();
|
|
|
|
void log(const AmArg& args, AmArg& ret);
|
|
void logAdd(const AmArg& args, AmArg& ret);
|
|
void inc(const AmArg& args, AmArg& ret);
|
|
void dec(const AmArg& args, AmArg& ret);
|
|
void addCount(const AmArg& args, AmArg& ret);
|
|
void addSample(const AmArg& args, AmArg& ret);
|
|
|
|
void markFinished(const AmArg& args, AmArg& ret);
|
|
void setExpiration(const AmArg& args, AmArg& ret);
|
|
void clear(const AmArg& args, AmArg& ret);
|
|
void clearFinished(const AmArg& args, AmArg& ret);
|
|
void erase(const AmArg& args, AmArg& ret);
|
|
void get(const AmArg& args, AmArg& ret);
|
|
void getSingle(const AmArg& args, AmArg& ret);
|
|
void getAttribute(const AmArg& args, AmArg& ret);
|
|
void getAttributeActive(const AmArg& args, AmArg& ret);
|
|
void getAttributeFinished(const AmArg& args, AmArg& ret);
|
|
void getCount(const AmArg& args, AmArg& ret);
|
|
void getAllCounts(const AmArg& args, AmArg& ret);
|
|
void listAll(const AmArg& args, AmArg& ret);
|
|
void listByFilter(const AmArg& args, AmArg& ret, bool erase);
|
|
void listByRegex(const AmArg& args, AmArg& ret);
|
|
void listFinished(const AmArg& args, AmArg& ret);
|
|
void listActive(const AmArg& args, AmArg& ret);
|
|
|
|
void add(const AmArg& args, AmArg& ret, int a);
|
|
|
|
public:
|
|
|
|
Monitor(const string& name);
|
|
~Monitor();
|
|
// DI factory
|
|
AmDynInvoke* getInstance() { return instance(); }
|
|
// DI API
|
|
static Monitor* instance();
|
|
void invoke(const string& method,
|
|
const AmArg& args, AmArg& ret);
|
|
int onLoad();
|
|
static unsigned int gcInterval;
|
|
|
|
friend class MonitorGarbageCollector;
|
|
};
|
|
|
|
class MonitorGarbageCollector
|
|
: public AmThread,
|
|
public AmEventQueueInterface
|
|
{
|
|
public:
|
|
void run();
|
|
void on_stop();
|
|
void postEvent(AmEvent* e);
|
|
};
|
|
#endif
|