Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
A
Actor Framework
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Metrics
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
cpp-libs
Actor Framework
Commits
31618916
Commit
31618916
authored
Jul 08, 2020
by
Dominik Charousset
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Make argument order consistent
parent
72ea2a86
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
3 deletions
+3
-3
libcaf_core/caf/telemetry/metric_registry.hpp
libcaf_core/caf/telemetry/metric_registry.hpp
+1
-1
manual/Metrics.rst
manual/Metrics.rst
+2
-2
No files found.
libcaf_core/caf/telemetry/metric_registry.hpp
View file @
31618916
...
...
@@ -462,7 +462,7 @@ public:
template
<
class
ValueType
=
int64_t
>
histogram
<
ValueType
>*
histogram_singleton
(
string_view
prefix
,
string_view
name
,
s
tring_view
helptext
,
span_t
<
ValueType
>
upper_bounds
,
s
pan_t
<
ValueType
>
upper_bounds
,
string_view
helptext
,
string_view
unit
=
"1"
,
bool
is_sum
=
false
)
{
span_t
<
string_view
>
lbls
;
auto
fptr
=
histogram_family
<
ValueType
>
(
prefix
,
name
,
lbls
,
upper_bounds
,
...
...
manual/Metrics.rst
View file @
31618916
...
...
@@ -325,9 +325,9 @@ same pattern as the member functions for counters and gauges.
template <class ValueType = int64_t>
auto* histogram_singleton(string_view prefix, string_view name,
string_view helptext,
span<const ValueType> default_upper_bounds,
string_view unit = "1", bool is_sum = false);
string_view helptext, string_view unit = "1",
bool is_sum = false);
Compared to the member functions for counters and guages, histograms require one
addition argument for the default bucket upper bounds.
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment