1
0
Fork 0
mirror of https://git.rwth-aachen.de/acs/public/villas/node/ synced 2025-03-09 00:00:00 +01:00
VILLASnode/lib/hooks/stats.cpp

269 lines
5.5 KiB
C++
Raw Permalink Normal View History

2019-03-26 15:33:47 +01:00
/** Statistic hooks.
*
* @author Steffen Vogel <post@steffenvogel.de>
2022-03-15 09:28:57 -04:00
* @copyright 2014-2022, Institute for Automation of Complex Power Systems, EONERC
2022-07-04 18:20:03 +02:00
* @license Apache 2.0
2019-03-26 15:33:47 +01:00
*********************************************************************************/
#include <memory>
2019-03-26 15:33:47 +01:00
2020-03-04 13:07:20 +01:00
#include <villas/common.hpp>
2019-03-26 15:33:47 +01:00
#include <villas/hook.hpp>
#include <villas/node/exceptions.hpp>
2019-06-23 13:35:42 +02:00
#include <villas/stats.hpp>
#include <villas/node.hpp>
#include <villas/timing.hpp>
2019-03-26 15:33:47 +01:00
namespace villas {
namespace node {
class StatsHook;
class StatsWriteHook : public Hook {
protected:
StatsHook *parent;
public:
StatsWriteHook(StatsHook *pa, Path *p, Node *n, int fl, int prio, bool en = true) :
Hook(p, n, fl, prio, en),
parent(pa)
{
2021-07-13 11:22:40 +02:00
/* This hook has no config. We never call parse() for it */
state = State::PARSED;
}
virtual Hook::Reason process(struct Sample *smp);
};
class StatsReadHook : public Hook {
protected:
struct Sample *last;
StatsHook *parent;
public:
StatsReadHook(StatsHook *pa, Path *p, Node *n, int fl, int prio, bool en = true) :
Hook(p, n, fl, prio, en),
last(nullptr),
parent(pa)
{
2021-07-13 11:22:40 +02:00
/* This hook has no config. We never call parse() for it */
state = State::PARSED;
}
virtual void start()
{
2019-06-23 16:13:23 +02:00
assert(state == State::PREPARED);
last = nullptr;
2019-06-23 16:13:23 +02:00
state = State::STARTED;
}
virtual void stop()
{
2019-06-23 16:13:23 +02:00
assert(state == State::STARTED);
if (last)
sample_decref(last);
2019-06-23 16:13:23 +02:00
state = State::STOPPED;
}
virtual Hook::Reason process(struct Sample *smp);
};
2019-03-26 15:33:47 +01:00
class StatsHook : public Hook {
friend StatsReadHook;
friend StatsWriteHook;
2019-03-26 15:33:47 +01:00
protected:
std::shared_ptr<StatsReadHook> readHook;
std::shared_ptr<StatsWriteHook> writeHook;
2019-06-23 13:35:42 +02:00
enum Stats::Format format;
2019-03-26 15:33:47 +01:00
int verbose;
int warmup;
int buckets;
std::shared_ptr<Stats> stats;
2021-02-16 14:15:14 +01:00
FILE *output;
std::string uri;
2019-03-26 15:33:47 +01:00
public:
StatsHook(Path *p, Node *n, int fl, int prio, bool en = true) :
2019-03-26 15:33:47 +01:00
Hook(p, n, fl, prio, en),
2019-06-23 13:35:42 +02:00
format(Stats::Format::HUMAN),
2019-03-26 15:33:47 +01:00
verbose(0),
warmup(500),
buckets(20),
output(nullptr),
uri()
2019-03-26 15:33:47 +01:00
{
readHook = std::make_shared<StatsReadHook>(this, p, n, fl, prio, en);
writeHook = std::make_shared<StatsWriteHook>(this, p, n, fl, prio, en);
if (!readHook || !writeHook)
throw MemoryAllocationError();
/* Add child hooks */
if (node) {
node->in.hooks.push_back(readHook);
node->out.hooks.push_back(writeHook);
}
2019-03-26 15:33:47 +01:00
}
StatsHook & operator=(const StatsHook&) = delete;
StatsHook(const StatsHook&) = delete;
2019-03-26 15:33:47 +01:00
virtual void start()
{
2019-06-23 16:13:23 +02:00
assert(state == State::PREPARED);
2019-03-26 15:33:47 +01:00
if (!uri.empty()) {
2021-02-16 14:15:14 +01:00
output = fopen(uri.c_str(), "w+");
2019-03-26 15:33:47 +01:00
if (!output)
throw RuntimeError("Failed to open file '{}' for writing", uri);
}
2019-06-23 16:13:23 +02:00
state = State::STARTED;
2019-03-26 15:33:47 +01:00
}
virtual void stop()
{
2019-06-23 16:13:23 +02:00
assert(state == State::STARTED);
2019-03-26 15:33:47 +01:00
2021-02-16 14:15:14 +01:00
stats->print(uri.empty() ? stdout : output, format, verbose);
2019-03-26 15:33:47 +01:00
if (!uri.empty())
2021-02-16 14:15:14 +01:00
fclose(output);
2019-03-26 15:33:47 +01:00
2019-06-23 16:13:23 +02:00
state = State::STOPPED;
2019-03-26 15:33:47 +01:00
}
virtual void restart()
{
2019-06-23 16:13:23 +02:00
assert(state == State::STARTED);
2019-03-26 15:33:47 +01:00
stats->reset();
2019-03-26 15:33:47 +01:00
}
virtual Hook::Reason process(struct Sample *smp)
{
// Only call readHook if it hasnt been added to the node's hook list
if (!node)
return readHook->process(smp);
return Hook::Reason::OK;
}
2019-03-26 15:33:47 +01:00
virtual void periodic()
{
2019-06-23 16:13:23 +02:00
assert(state == State::STARTED);
2019-03-26 15:33:47 +01:00
2021-02-16 14:15:14 +01:00
stats->printPeriodic(uri.empty() ? stdout : output, format, node);
2019-03-26 15:33:47 +01:00
}
2021-02-16 14:15:14 +01:00
virtual void parse(json_t *json)
2019-03-26 15:33:47 +01:00
{
2019-06-23 13:35:42 +02:00
int ret;
2019-03-26 15:33:47 +01:00
json_error_t err;
2019-06-23 16:13:23 +02:00
assert(state != State::STARTED);
2019-03-26 15:33:47 +01:00
2021-02-16 14:15:14 +01:00
Hook::parse(json);
2020-08-28 19:49:36 +02:00
2019-03-26 15:33:47 +01:00
const char *f = nullptr;
const char *u = nullptr;
2021-02-16 14:15:14 +01:00
ret = json_unpack_ex(json, &err, 0, "{ s?: s, s?: b, s?: i, s?: i, s?: s }",
2019-03-26 15:33:47 +01:00
"format", &f,
"verbose", &verbose,
"warmup", &warmup,
"buckets", &buckets,
"output", &u
);
if (ret)
2021-02-16 14:15:14 +01:00
throw ConfigError(json, err, "node-config-hook-stats");
2019-03-26 15:33:47 +01:00
if (f) {
2019-06-23 13:35:42 +02:00
try {
format = Stats::lookupFormat(f);
2020-08-17 17:09:55 +02:00
} catch (const std::invalid_argument &e) {
2021-02-16 14:15:14 +01:00
throw ConfigError(json, "node-config-hook-stats", "Invalid statistic output format: {}", f);
2019-06-23 13:35:42 +02:00
}
2019-03-26 15:33:47 +01:00
}
if (u)
uri = u;
2019-03-26 15:33:47 +01:00
2019-06-23 16:13:23 +02:00
state = State::PARSED;
2019-03-26 15:33:47 +01:00
}
virtual void prepare()
{
assert(state == State::CHECKED);
stats = std::make_shared<villas::Stats>(buckets, warmup);
if (node)
node->setStats(stats);
state = State::PREPARED;
}
2019-03-26 15:33:47 +01:00
};
Hook::Reason StatsWriteHook::process(struct Sample *smp)
{
timespec now = time_now();
parent->stats->update(Stats::Metric::AGE, time_delta(&smp->ts.received, &now));
return Reason::OK;
}
Hook::Reason StatsReadHook::process(struct Sample *smp)
{
if (last) {
if (smp->flags & last->flags & (int) SampleFlags::HAS_TS_RECEIVED)
parent->stats->update(Stats::Metric::GAP_RECEIVED, time_delta(&last->ts.received, &smp->ts.received));
if (smp->flags & last->flags & (int) SampleFlags::HAS_TS_ORIGIN)
parent->stats->update(Stats::Metric::GAP_SAMPLE, time_delta(&last->ts.origin, &smp->ts.origin));
if ((smp->flags & (int) SampleFlags::HAS_TS_ORIGIN) && (smp->flags & (int) SampleFlags::HAS_TS_RECEIVED))
parent->stats->update(Stats::Metric::OWD, time_delta(&smp->ts.origin, &smp->ts.received));
if (smp->flags & last->flags & (int) SampleFlags::HAS_SEQUENCE) {
int dist = smp->sequence - (int32_t) last->sequence;
if (dist != 1)
parent->stats->update(Stats::Metric::SMPS_REORDERED, dist);
}
}
parent->stats->update(Stats::Metric::SIGNAL_COUNT, smp->length);
sample_incref(smp);
if (last)
sample_decref(last);
last = smp;
return Reason::OK;
}
2019-03-26 15:33:47 +01:00
/* Register hook */
static char n[] = "stats";
2021-04-28 13:15:01 +00:00
static char d[] = "Collect statistics for the current node";
static HookPlugin<StatsHook, n, d, (int) Hook::Flags::NODE_READ> p;
2019-03-26 15:33:47 +01:00
} /* namespace node */
} /* namespace villas */