Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
synapse
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Monitor
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Maunium
synapse
Commits
ab825aa3
Commit
ab825aa3
authored
6 years ago
by
Erik Johnston
Browse files
Options
Downloads
Patches
Plain Diff
Add GaugeMetric
parent
233699c4
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
synapse/metrics/__init__.py
+8
-1
8 additions, 1 deletion
synapse/metrics/__init__.py
synapse/metrics/metric.py
+30
-0
30 additions, 0 deletions
synapse/metrics/metric.py
with
38 additions
and
1 deletion
synapse/metrics/__init__.py
+
8
−
1
View file @
ab825aa3
...
...
@@ -23,7 +23,7 @@ from twisted.internet import reactor
from
.metric
import
(
CounterMetric
,
CallbackMetric
,
DistributionMetric
,
CacheMetric
,
MemoryUsageMetric
,
MemoryUsageMetric
,
GaugeMetric
,
)
from
.process_collector
import
register_process_collector
...
...
@@ -65,6 +65,13 @@ class Metrics(object):
"""
return
self
.
_register
(
CounterMetric
,
*
args
,
**
kwargs
)
def
register_gauge
(
self
,
*
args
,
**
kwargs
):
"""
Returns:
GaugeMetric
"""
return
self
.
_register
(
GaugeMetric
,
*
args
,
**
kwargs
)
def
register_callback
(
self
,
*
args
,
**
kwargs
):
"""
Returns:
...
...
This diff is collapsed.
Click to expand it.
synapse/metrics/metric.py
+
30
−
0
View file @
ab825aa3
...
...
@@ -145,6 +145,36 @@ class CounterMetric(BaseMetric):
)
class
GaugeMetric
(
BaseMetric
):
"""
A metric that can go up or down
"""
def
__init__
(
self
,
*
args
,
**
kwargs
):
super
(
GaugeMetric
,
self
).
__init__
(
*
args
,
**
kwargs
)
# dict[list[str]]: value for each set of label values. the keys are the
# label values, in the same order as the labels in self.labels.
#
# (if the metric is a scalar, the (single) key is the empty list).
self
.
guages
=
{}
def
set
(
self
,
v
,
*
values
):
if
len
(
values
)
!=
self
.
dimension
():
raise
ValueError
(
"
Expected as many values to inc() as labels (%d)
"
%
(
self
.
dimension
())
)
# TODO: should assert that the tag values are all strings
self
.
guages
[
values
]
=
v
def
render
(
self
):
return
flatten
(
self
.
_render_for_labels
(
k
,
self
.
guages
[
k
])
for
k
in
sorted
(
self
.
guages
.
keys
())
)
class
CallbackMetric
(
BaseMetric
):
"""
A metric that returns the numeric value returned by a callback whenever
it is rendered. Typically this is used to implement gauges that yield the
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment