icinga2/lib/base/statsfunction.hpp

18 lines
327 B
C++
Raw Permalink Normal View History

/* Icinga 2 | (c) 2012 Icinga GmbH | GPLv2+ */
#ifndef STATSFUNCTION_H
#define STATSFUNCTION_H
2014-05-25 10:23:35 -04:00
#include "base/i2-base.hpp"
2017-11-30 04:46:44 -05:00
#include "base/function.hpp"
namespace icinga
{
#define REGISTER_STATSFUNCTION(name, callback) \
REGISTER_FUNCTION(StatsFunctions, name, callback, "status:perfdata")
}
#endif /* STATSFUNCTION_H */