diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-05-04 11:36:04 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-05-04 11:36:04 +0000 |
commit | 040eee1aa49b49df4698d83a05af57c220127fd1 (patch) | |
tree | f635435954e6ccde5eee9893889e24f30ca68346 /src/lib/stats/context.h | |
parent | Initial commit. (diff) | |
download | isc-kea-upstream.tar.xz isc-kea-upstream.zip |
Adding upstream version 2.2.0.upstream/2.2.0upstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'src/lib/stats/context.h')
-rw-r--r-- | src/lib/stats/context.h | 90 |
1 files changed, 90 insertions, 0 deletions
diff --git a/src/lib/stats/context.h b/src/lib/stats/context.h new file mode 100644 index 0000000..117872f --- /dev/null +++ b/src/lib/stats/context.h @@ -0,0 +1,90 @@ +// Copyright (C) 2015-2020 Internet Systems Consortium, Inc. ("ISC") +// +// This Source Code Form is subject to the terms of the Mozilla Public +// License, v. 2.0. If a copy of the MPL was not distributed with this +// file, You can obtain one at http://mozilla.org/MPL/2.0/. + +#ifndef CONTEXT_H +#define CONTEXT_H + +#include <stats/observation.h> +#include <boost/shared_ptr.hpp> +#include <mutex> +#include <string> + +namespace isc { +namespace stats { + +/// @brief Exception indicating that a given statistic is duplicated. +class DuplicateStat : public Exception { +public: + DuplicateStat(const char* file, size_t line, const char* what) : + isc::Exception(file, line, what) {} +}; + +/// @brief Statistics context +/// +/// Statistics context is essentially a container used to group statistics +/// related to a given context together. Two examples of such contexts are +/// all statistics related to a given subnet or all statistics related to a +/// given network interface. +struct StatContext { +public: + + /// @brief Attempts to get an observation + /// + /// @param name name of the statistic + /// @return appropriate Observation object (or NULL) + ObservationPtr get(const std::string& name) const; + + /// @brief Adds a new observation + /// + /// @param obs observation to be added + /// @throw DuplicateStat if an observation with the same name exists already + void add(const ObservationPtr& obs); + + /// @brief Attempts to delete an observation + /// + /// @param name name of the observation to be deleted + /// @return true if successful, false if no such statistic was found + bool del(const std::string& name); + + /// @brief Returns the number of observations + /// + /// @return the number of observations + size_t size(); + + /// @brief Removes all observations + void clear(); + + /// @brief Resets all observations + void resetAll(); + + /// @brief Sets max sample count for all observations + /// + /// @param max_samples value to be set for all observations + void setMaxSampleCountAll(uint32_t max_samples); + + /// @brief Sets duration for all observations + /// + /// @param duration value to be set for all observations + void setMaxSampleAgeAll(const StatsDuration& duration); + + /// @brief Returns a map with all observations + /// + /// @return map with all observations + isc::data::ConstElementPtr getAll() const; + +private: + + /// @brief Statistics container + std::map<std::string, ObservationPtr> stats_; +}; + +/// @brief Pointer to the statistics context +typedef boost::shared_ptr<StatContext> StatContextPtr; + +}; +}; + +#endif // CONTEXT_H |