Skip to content

Commit

Permalink
sampler - fix missing doxygen documentation
Browse files Browse the repository at this point in the history
  • Loading branch information
SiskaPavel committed Oct 9, 2024
1 parent abbf892 commit f73f3ac
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions modules/sampler/src/sampler.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,8 @@ namespace Sampler {
* @brief Structure to hold sampling statistics.
*/
struct SamplerStats {
uint64_t sampledRecords = 0;
uint64_t totalRecords = 0;
uint64_t sampledRecords = 0; ///< Number of sampled records.
uint64_t totalRecords = 0; ///< Total number of records.
};

/**
Expand Down Expand Up @@ -45,6 +45,7 @@ class Sampler {

/**
* @brief Returns the current sampling statistics.
* @return The current sampling statistics.
*/
SamplerStats getStats() const noexcept;

Expand Down

0 comments on commit f73f3ac

Please sign in to comment.