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
f7d03ca3
Commit
f7d03ca3
authored
Nov 21, 2020
by
Dominik Charousset
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix metric names in the manual
parent
8528ff22
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
8 additions
and
8 deletions
+8
-8
manual/Metrics.rst
manual/Metrics.rst
+8
-8
No files found.
manual/Metrics.rst
View file @
f7d03ca3
...
@@ -435,17 +435,17 @@ Base Metrics
...
@@ -435,17 +435,17 @@ Base Metrics
The actor system collects this set of metrics always by default.
The actor system collects this set of metrics always by default.
caf.running-actors
caf.
system.
running-actors
- Tracks the current number of running actors in the system.
- Tracks the current number of running actors in the system.
- **Type**: ``int_gauge``
- **Type**: ``int_gauge``
- **Label dimensions**: none.
- **Label dimensions**: none.
caf.processed-messages
caf.
system.
processed-messages
- Counts the total number of processed messages.
- Counts the total number of processed messages.
- **Type**: ``int_counter``
- **Type**: ``int_counter``
- **Label dimensions**: none.
- **Label dimensions**: none.
caf.rejected-messages
caf.
system.
rejected-messages
- Counts the number of messages that where rejected because the target mailbox
- Counts the number of messages that where rejected because the target mailbox
was closed or did not exist.
was closed or did not exist.
- **Type**: ``int_counter``
- **Type**: ``int_counter``
...
@@ -499,29 +499,29 @@ The configuration above would select all actors with names that start with
...
@@ -499,29 +499,29 @@ The configuration above would select all actors with names that start with
For all actors that are selected by the user-defined filters, CAF collects this
For all actors that are selected by the user-defined filters, CAF collects this
set of metrics:
set of metrics:
caf.processing-time
caf.
actor.
processing-time
- Samples how long the actor needs to process messages.
- Samples how long the actor needs to process messages.
- **Type**: ``dbl_histogram``
- **Type**: ``dbl_histogram``
- **Unit**: ``seconds``
- **Unit**: ``seconds``
- **Label dimensions**: name.
- **Label dimensions**: name.
caf.mailbox-time
caf.
actor.
mailbox-time
- Samples how long messages wait in the mailbox before being processed.
- Samples how long messages wait in the mailbox before being processed.
- **Type**: ``dbl_histogram``
- **Type**: ``dbl_histogram``
- **Unit**: ``seconds``
- **Unit**: ``seconds``
- **Label dimensions**: name.
- **Label dimensions**: name.
caf.mailbox-size
caf.
actor.
mailbox-size
- Counts how many messages are currently waiting in the mailbox.
- Counts how many messages are currently waiting in the mailbox.
- **Type**: ``int_gauge``
- **Type**: ``int_gauge``
- **Label dimensions**: name.
- **Label dimensions**: name.
caf.stream.processed-elements
caf.
actor.
stream.processed-elements
- Counts the total number of processed stream elements from upstream.
- Counts the total number of processed stream elements from upstream.
- **Type**: ``int_counter``
- **Type**: ``int_counter``
- **Label dimensions**: name, type.
- **Label dimensions**: name, type.
caf.stream.input-buffer-size
caf.
actor.
stream.input-buffer-size
- Tracks how many stream elements from upstream are currently buffered.
- Tracks how many stream elements from upstream are currently buffered.
- **Type**: ``int_gauge``
- **Type**: ``int_gauge``
- **Label dimensions**: name, type.
- **Label dimensions**: name, type.
...
...
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