Kea 2.7.1
Methods are used by data producers.

Functions

void isc::stats::StatsMgr::addValue (const std::string &name, const double value)
 Records incremental floating point observation.
 
void isc::stats::StatsMgr::addValue (const std::string &name, const int64_t value)
 Records incremental integer observation.
 
void isc::stats::StatsMgr::addValue (const std::string &name, const isc::util::int128_t &value)
 Records an incremental big integer observation.
 
void isc::stats::StatsMgr::addValue (const std::string &name, const StatsDuration &value)
 Records incremental duration observation.
 
void isc::stats::StatsMgr::addValue (const std::string &name, const std::string &value)
 Records incremental string observation.
 
const StatsDurationisc::stats::StatsMgr::getMaxSampleAgeDefault () const
 Get default duration limit.
 
uint32_t isc::stats::StatsMgr::getMaxSampleCountDefault () const
 Get default count limit.
 
bool isc::stats::StatsMgr::setMaxSampleAge (const std::string &name, const StatsDuration &duration)
 Determines maximum age of samples.
 
void isc::stats::StatsMgr::setMaxSampleAgeAll (const StatsDuration &duration)
 Set duration limit for all collected statistics.
 
void isc::stats::StatsMgr::setMaxSampleAgeDefault (const StatsDuration &duration)
 Set default duration limit.
 
bool isc::stats::StatsMgr::setMaxSampleCount (const std::string &name, uint32_t max_samples)
 Determines how many samples of a given statistic should be kept.
 
void isc::stats::StatsMgr::setMaxSampleCountAll (uint32_t max_samples)
 Set count limit for all collected statistics.
 
void isc::stats::StatsMgr::setMaxSampleCountDefault (uint32_t max_samples)
 Set default count limit.
 
void isc::stats::StatsMgr::setValue (const std::string &name, const double value)
 Records absolute floating point observation.
 
void isc::stats::StatsMgr::setValue (const std::string &name, const int64_t value)
 Records absolute integer observation.
 
void isc::stats::StatsMgr::setValue (const std::string &name, const isc::util::int128_t &value)
 Records an absolute big integer observation.
 
void isc::stats::StatsMgr::setValue (const std::string &name, const StatsDuration &value)
 Records absolute duration observation.
 
void isc::stats::StatsMgr::setValue (const std::string &name, const std::string &value)
 Records absolute string observation.
 

Detailed Description

The following methods are used by data producers:

Function Documentation

◆ addValue() [1/5]

void isc::stats::StatsMgr::addValue ( const std::string & name,
const double value )

Records incremental floating point observation.

Parameters
namename of the observation
valuefloating point value observed
Exceptions
InvalidStatTypeif statistic is not fp

Definition at line 82 of file lib/stats/stats_mgr.cc.

References isc::stats::StatsMgr::addValueInternal().

+ Here is the call graph for this function:

◆ addValue() [2/5]

void isc::stats::StatsMgr::addValue ( const std::string & name,
const int64_t value )

Records incremental integer observation.

Parameters
namename of the observation
valueinteger value observed
Exceptions
InvalidStatTypeif statistic is not integer

Definition at line 70 of file lib/stats/stats_mgr.cc.

References isc::stats::StatsMgr::addValueInternal().

+ Here is the call graph for this function:

◆ addValue() [3/5]

void isc::stats::StatsMgr::addValue ( const std::string & name,
const isc::util::int128_t & value )

Records an incremental big integer observation.

Parameters
namename of the observation
valueinteger value observed
Exceptions
InvalidStatTypeif statistic is not integer

Definition at line 76 of file lib/stats/stats_mgr.cc.

References isc::stats::StatsMgr::addValueInternal().

+ Here is the call graph for this function:

◆ addValue() [4/5]

void isc::stats::StatsMgr::addValue ( const std::string & name,
const StatsDuration & value )

Records incremental duration observation.

Parameters
namename of the observation
valueduration value observed
Exceptions
InvalidStatTypeif statistic is not time duration

Definition at line 88 of file lib/stats/stats_mgr.cc.

References isc::stats::StatsMgr::addValueInternal().

+ Here is the call graph for this function:

◆ addValue() [5/5]

void isc::stats::StatsMgr::addValue ( const std::string & name,
const std::string & value )

Records incremental string observation.

Parameters
namename of the observation
valuestring value observed
Exceptions
InvalidStatTypeif statistic is not a string

Definition at line 94 of file lib/stats/stats_mgr.cc.

References isc::stats::StatsMgr::addValueInternal().

+ Here is the call graph for this function:

◆ getMaxSampleAgeDefault()

const StatsDuration & isc::stats::StatsMgr::getMaxSampleAgeDefault ( ) const

Get default duration limit.

Returns
default maximum age of samples to keep.

Definition at line 217 of file lib/stats/stats_mgr.cc.

◆ getMaxSampleCountDefault()

uint32_t isc::stats::StatsMgr::getMaxSampleCountDefault ( ) const

Get default count limit.

Returns
default maximum number of samples to keep. (0 means that count limit was disabled)

Definition at line 228 of file lib/stats/stats_mgr.cc.

◆ setMaxSampleAge()

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());

Parameters
namename of the observation
durationdetermines maximum age of samples
Returns
true if successful, false if there's no such statistic

Definition at line 139 of file lib/stats/stats_mgr.cc.

Referenced by isc::stats::StatsMgr::statisticSetMaxSampleAgeHandler().

◆ setMaxSampleAgeAll()

void isc::stats::StatsMgr::setMaxSampleAgeAll ( const StatsDuration & duration)

Set duration limit for all collected statistics.

Parameters
durationdetermines maximum age of samples

Definition at line 173 of file lib/stats/stats_mgr.cc.

◆ setMaxSampleAgeDefault()

void isc::stats::StatsMgr::setMaxSampleAgeDefault ( const StatsDuration & duration)

Set default duration limit.

Parameters
durationdefault maximum age of samples to keep

Definition at line 195 of file lib/stats/stats_mgr.cc.

◆ setMaxSampleCount()

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);

Parameters
namename of the observation
max_sampleshow many samples of a given statistic should be kept
Returns
true if successful, false if there's no such statistic

Definition at line 156 of file lib/stats/stats_mgr.cc.

Referenced by isc::stats::StatsMgr::statisticSetMaxSampleCountHandler().

◆ setMaxSampleCountAll()

void isc::stats::StatsMgr::setMaxSampleCountAll ( uint32_t max_samples)

Set count limit for all collected statistics.

Parameters
max_sampleshow many samples of a given statistic should be kept

Definition at line 184 of file lib/stats/stats_mgr.cc.

◆ setMaxSampleCountDefault()

void isc::stats::StatsMgr::setMaxSampleCountDefault ( uint32_t max_samples)

Set default count limit.

Parameters
max_samplesdefault maximum number of samples to keep (0 means to disable count limit and enable age limit)

Definition at line 206 of file lib/stats/stats_mgr.cc.

◆ setValue() [1/5]

void isc::stats::StatsMgr::setValue ( const std::string & name,
const double value )

Records absolute floating point observation.

Parameters
namename of the observation
valuefloating point value observed
Exceptions
InvalidStatTypeif statistic is not fp

Definition at line 52 of file lib/stats/stats_mgr.cc.

References isc::stats::StatsMgr::setValueInternal().

+ Here is the call graph for this function:

◆ setValue() [2/5]

void isc::stats::StatsMgr::setValue ( const std::string & name,
const int64_t value )

Records absolute integer observation.

Parameters
namename of the observation
valueinteger value observed
Exceptions
InvalidStatTypeif statistic is not integer

Definition at line 40 of file lib/stats/stats_mgr.cc.

References isc::stats::StatsMgr::setValueInternal().

+ Here is the call graph for this function:

◆ setValue() [3/5]

void isc::stats::StatsMgr::setValue ( const std::string & name,
const isc::util::int128_t & value )

Records an absolute big integer observation.

Parameters
namename of the observation
valueinteger value observed
Exceptions
InvalidStatTypeif statistic is not integer

Definition at line 46 of file lib/stats/stats_mgr.cc.

References isc::stats::StatsMgr::setValueInternal().

+ Here is the call graph for this function:

◆ setValue() [4/5]

void isc::stats::StatsMgr::setValue ( const std::string & name,
const StatsDuration & value )

Records absolute duration observation.

Parameters
namename of the observation
valueduration value observed
Exceptions
InvalidStatTypeif statistic is not time duration

Definition at line 58 of file lib/stats/stats_mgr.cc.

References isc::stats::StatsMgr::setValueInternal().

+ Here is the call graph for this function:

◆ setValue() [5/5]

void isc::stats::StatsMgr::setValue ( const std::string & name,
const std::string & value )

Records absolute string observation.

Parameters
namename of the observation
valuestring value observed
Exceptions
InvalidStatTypeif statistic is not a string

Definition at line 64 of file lib/stats/stats_mgr.cc.

References isc::stats::StatsMgr::setValueInternal().

+ Here is the call graph for this function: