More packet metrics (#1982)
* found path negotation sends that weren't accounted for * Fix histogram so it will actually compile * Found more places for packet metrics
This commit is contained in:
parent
4ca3f27293
commit
06b487119d
12 changed files with 41 additions and 6 deletions
|
@ -38,6 +38,7 @@ namespace prometheus {
|
|||
|
||||
Gauge() : Metric (static_type) {} ///< \brief Create a gauge that starts at 0.
|
||||
Gauge(const Value value_) : Metric(static_type), value{ value_ } {} ///< \brief Create a gauge that starts at the given amount.
|
||||
Gauge(const Gauge<Value_> &rhs) : Metric(rhs.static_type), value{rhs.value.load()} {}
|
||||
|
||||
// original API
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue