mirror of https://github.com/Icinga/icinga2.git
parent
881116b89e
commit
65ed89c48d
|
@ -22,7 +22,7 @@
|
||||||
using namespace icinga;
|
using namespace icinga;
|
||||||
|
|
||||||
MinAggregator::MinAggregator(const String& attr)
|
MinAggregator::MinAggregator(const String& attr)
|
||||||
: m_Min(0), m_MinAttr(attr)
|
: m_Min(DBL_MAX), m_MinAttr(attr)
|
||||||
{ }
|
{ }
|
||||||
|
|
||||||
void MinAggregator::Apply(const Table::Ptr& table, const Value& row)
|
void MinAggregator::Apply(const Table::Ptr& table, const Value& row)
|
||||||
|
@ -37,5 +37,8 @@ void MinAggregator::Apply(const Table::Ptr& table, const Value& row)
|
||||||
|
|
||||||
double MinAggregator::GetResult(void) const
|
double MinAggregator::GetResult(void) const
|
||||||
{
|
{
|
||||||
|
if (m_Min == DBL_MAX)
|
||||||
|
return 0;
|
||||||
|
else
|
||||||
return m_Min;
|
return m_Min;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue