Kea
1.9.9-git
|
The following methods are used by data producers: More...
Functions | |
void | isc::stats::StatsMgr::addValue (const std::string &name, const int64_t value) |
Records incremental integer observation. More... | |
void | isc::stats::StatsMgr::addValue (const std::string &name, const double value) |
Records incremental floating point observation. More... | |
void | isc::stats::StatsMgr::addValue (const std::string &name, const StatsDuration &value) |
Records incremental duration observation. More... | |
void | isc::stats::StatsMgr::addValue (const std::string &name, const std::string &value) |
Records incremental string observation. More... | |
const StatsDuration & | isc::stats::StatsMgr::getMaxSampleAgeDefault () const |
Get default duration limit. More... | |
uint32_t | isc::stats::StatsMgr::getMaxSampleCountDefault () const |
Get default count limit. More... | |
bool | isc::stats::StatsMgr::setMaxSampleAge (const std::string &name, const StatsDuration &duration) |
Determines maximum age of samples. More... | |
void | isc::stats::StatsMgr::setMaxSampleAgeAll (const StatsDuration &duration) |
Set duration limit for all collected statistics. More... | |
void | isc::stats::StatsMgr::setMaxSampleAgeDefault (const StatsDuration &duration) |
Set default duration limit. More... | |
bool | isc::stats::StatsMgr::setMaxSampleCount (const std::string &name, uint32_t max_samples) |
Determines how many samples of a given statistic should be kept. More... | |
void | isc::stats::StatsMgr::setMaxSampleCountAll (uint32_t max_samples) |
Set count limit for all collected statistics. More... | |
void | isc::stats::StatsMgr::setMaxSampleCountDefault (uint32_t max_samples) |
Set default count limit. More... | |
void | isc::stats::StatsMgr::setValue (const std::string &name, const int64_t value) |
Records absolute integer observation. More... | |
void | isc::stats::StatsMgr::setValue (const std::string &name, const double value) |
Records absolute floating point observation. More... | |
void | isc::stats::StatsMgr::setValue (const std::string &name, const StatsDuration &value) |
Records absolute duration observation. More... | |
void | isc::stats::StatsMgr::setValue (const std::string &name, const std::string &value) |
Records absolute string observation. More... | |
The following methods are used by data producers:
void isc::stats::StatsMgr::addValue | ( | const std::string & | name, |
const int64_t | value | ||
) |
Records incremental integer observation.
name | name of the observation |
value | integer value observed |
InvalidStatType | if statistic is not integer |
Definition at line 77 of file lib/stats/stats_mgr.cc.
References isc::stats::StatsMgr::addValueInternal().
Referenced by isc::ha::HAImpl::buffer4Receive(), isc::ha::HAImpl::buffer6Receive(), isc::dhcp::Dhcpv4Exchange::Dhcpv4Exchange(), isc::dhcp::Dhcpv4Srv::processDhcp4Query(), isc::dhcp::Dhcpv4Srv::processPacket(), isc::dhcp::Dhcpv4Srv::processStatsReceived(), isc::dhcp::Dhcpv4Srv::processStatsSent(), and isc::dhcp::ClientHandler::tryLock().
void isc::stats::StatsMgr::addValue | ( | const std::string & | name, |
const double | value | ||
) |
Records incremental floating point observation.
name | name of the observation |
value | floating point value observed |
InvalidStatType | if statistic is not fp |
Definition at line 87 of file lib/stats/stats_mgr.cc.
References isc::stats::StatsMgr::addValueInternal().
void isc::stats::StatsMgr::addValue | ( | const std::string & | name, |
const StatsDuration & | value | ||
) |
Records incremental duration observation.
name | name of the observation |
value | duration value observed |
InvalidStatType | if statistic is not time duration |
Definition at line 97 of file lib/stats/stats_mgr.cc.
References isc::stats::StatsMgr::addValueInternal().
void isc::stats::StatsMgr::addValue | ( | const std::string & | name, |
const std::string & | value | ||
) |
Records incremental string observation.
name | name of the observation |
value | string value observed |
InvalidStatType | if statistic is not a string |
Definition at line 107 of file lib/stats/stats_mgr.cc.
References isc::stats::StatsMgr::addValueInternal().
const StatsDuration & isc::stats::StatsMgr::getMaxSampleAgeDefault | ( | ) | const |
Get default duration limit.
Definition at line 270 of file lib/stats/stats_mgr.cc.
uint32_t isc::stats::StatsMgr::getMaxSampleCountDefault | ( | ) | const |
Get default count limit.
Definition at line 285 of file lib/stats/stats_mgr.cc.
bool isc::stats::StatsMgr::setMaxSampleAge | ( | const std::string & | name, |
const StatsDuration & | duration | ||
) |
Determines maximum age of samples.
Specifies that statistic name should be stored not as a single value, but rather as a set of values. duration determines the timespan. Samples older than duration will be discarded. This is time-constrained approach. For sample count constrained approach, see setMaxSampleCount() below. Example: To set a statistic to keep observations for the last 5 minutes, call: setMaxSampleAge("incoming-packets", StatsDuration::minutes(5)); to revert statistic to a single value, call: setMaxSampleAge("incoming-packets", StatsDuration:zero());
name | name of the observation |
duration | determines maximum age of samples |
Definition at line 168 of file lib/stats/stats_mgr.cc.
Referenced by isc::stats::StatsMgr::statisticSetMaxSampleAgeHandler().
void isc::stats::StatsMgr::setMaxSampleAgeAll | ( | const StatsDuration & | duration | ) |
Set duration limit for all collected statistics.
duration | determines maximum age of samples |
Definition at line 210 of file lib/stats/stats_mgr.cc.
Referenced by isc::dhcp::SrvConfig::updateStatistics().
void isc::stats::StatsMgr::setMaxSampleAgeDefault | ( | const StatsDuration & | duration | ) |
Set default duration limit.
duration | default maximum age of samples to keep |
Definition at line 240 of file lib/stats/stats_mgr.cc.
Referenced by isc::dhcp::SrvConfig::updateStatistics().
bool isc::stats::StatsMgr::setMaxSampleCount | ( | const std::string & | name, |
uint32_t | max_samples | ||
) |
Determines how many samples of a given statistic should be kept.
Specifies that statistic name should be stored not as single value, but rather as a set of values. In this form, at most max_samples will be kept. When adding max_samples + 1 sample, the oldest sample will be discarded. Example: To set a statistic to keep the last 100 observations, call: setMaxSampleCount("incoming-packets", 100);
name | name of the observation |
max_samples | how many samples of a given statistic should be kept |
Definition at line 189 of file lib/stats/stats_mgr.cc.
Referenced by isc::stats::StatsMgr::statisticSetMaxSampleCountHandler().
void isc::stats::StatsMgr::setMaxSampleCountAll | ( | uint32_t | max_samples | ) |
Set count limit for all collected statistics.
max_samples | how many samples of a given statistic should be kept |
Definition at line 225 of file lib/stats/stats_mgr.cc.
Referenced by isc::dhcp::SrvConfig::updateStatistics().
void isc::stats::StatsMgr::setMaxSampleCountDefault | ( | uint32_t | max_samples | ) |
Set default count limit.
max_samples | default maximum number of samples to keep (0 means to disable count limit and enable age limit) |
Definition at line 255 of file lib/stats/stats_mgr.cc.
Referenced by isc::dhcp::SrvConfig::updateStatistics().
void isc::stats::StatsMgr::setValue | ( | const std::string & | name, |
const int64_t | value | ||
) |
Records absolute integer observation.
name | name of the observation |
value | integer value observed |
InvalidStatType | if statistic is not integer |
Definition at line 37 of file lib/stats/stats_mgr.cc.
References isc::stats::StatsMgr::setValueInternal().
Referenced by isc::dhcp::Dhcpv6Srv::setPacketStatisticsDefaults(), isc::dhcp::Dhcpv4Srv::setPacketStatisticsDefaults(), isc::dhcp::CfgSubnets6::updateStatistics(), and isc::dhcp::CfgSubnets4::updateStatistics().
void isc::stats::StatsMgr::setValue | ( | const std::string & | name, |
const double | value | ||
) |
Records absolute floating point observation.
name | name of the observation |
value | floating point value observed |
InvalidStatType | if statistic is not fp |
Definition at line 47 of file lib/stats/stats_mgr.cc.
References isc::stats::StatsMgr::setValueInternal().
void isc::stats::StatsMgr::setValue | ( | const std::string & | name, |
const StatsDuration & | value | ||
) |
Records absolute duration observation.
name | name of the observation |
value | duration value observed |
InvalidStatType | if statistic is not time duration |
Definition at line 57 of file lib/stats/stats_mgr.cc.
References isc::stats::StatsMgr::setValueInternal().
void isc::stats::StatsMgr::setValue | ( | const std::string & | name, |
const std::string & | value | ||
) |
Records absolute string observation.
name | name of the observation |
value | string value observed |
InvalidStatType | if statistic is not a string |
Definition at line 67 of file lib/stats/stats_mgr.cc.
References isc::stats::StatsMgr::setValueInternal().