We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ce193a4 commit 26964c4Copy full SHA for 26964c4
README.md
@@ -53,7 +53,7 @@ Gauges can go up and down.
53
from prometheus_client import Gauge
54
g = Gauge('my_inprogress_requests', 'Description of gauge')
55
g.inc() # Increment by 1
56
-g.dev(10) # Decrement by given value
+g.dec(10) # Decrement by given value
57
g.set(4.2) # Set to a given value
58
```
59
0 commit comments