2019-02-25 14:48:22 +01:00
|
|
|
/* Icinga 2 | (c) 2012 Icinga GmbH | GPLv2+ */
|
2013-07-12 12:07:32 +02:00
|
|
|
|
2014-05-25 16:23:35 +02:00
|
|
|
#include "livestatus/stdaggregator.hpp"
|
2013-07-12 12:07:32 +02:00
|
|
|
#include <math.h>
|
|
|
|
|
2013-11-11 11:57:25 +01:00
|
|
|
using namespace icinga;
|
2013-07-12 12:07:32 +02:00
|
|
|
|
2018-01-04 08:54:18 +01:00
|
|
|
StdAggregator::StdAggregator(String attr)
|
|
|
|
: m_StdAttr(std::move(attr))
|
2014-07-21 13:33:51 +02:00
|
|
|
{ }
|
2013-07-12 12:07:32 +02:00
|
|
|
|
2017-08-14 15:30:06 +02:00
|
|
|
StdAggregatorState *StdAggregator::EnsureState(AggregatorState **state)
|
|
|
|
{
|
|
|
|
if (!*state)
|
|
|
|
*state = new StdAggregatorState();
|
|
|
|
|
|
|
|
return static_cast<StdAggregatorState *>(*state);
|
|
|
|
}
|
|
|
|
|
|
|
|
void StdAggregator::Apply(const Table::Ptr& table, const Value& row, AggregatorState **state)
|
2013-07-12 12:07:32 +02:00
|
|
|
{
|
|
|
|
Column column = table->GetColumn(m_StdAttr);
|
|
|
|
|
|
|
|
Value value = column.ExtractValue(row);
|
|
|
|
|
2017-08-14 15:30:06 +02:00
|
|
|
StdAggregatorState *pstate = EnsureState(state);
|
|
|
|
|
|
|
|
pstate->StdSum += value;
|
|
|
|
pstate->StdQSum += pow(value, 2);
|
|
|
|
pstate->StdCount++;
|
2013-07-12 12:07:32 +02:00
|
|
|
}
|
|
|
|
|
2017-08-14 15:30:06 +02:00
|
|
|
double StdAggregator::GetResultAndFreeState(AggregatorState *state) const
|
2013-07-12 12:07:32 +02:00
|
|
|
{
|
2017-08-14 15:30:06 +02:00
|
|
|
StdAggregatorState *pstate = EnsureState(&state);
|
|
|
|
double result = sqrt((pstate->StdQSum - (1 / pstate->StdCount) * pow(pstate->StdSum, 2)) / (pstate->StdCount - 1));
|
|
|
|
delete pstate;
|
|
|
|
|
|
|
|
return result;
|
2013-07-12 12:07:32 +02:00
|
|
|
}
|