Skip to content

Commit a891e4c

Browse files
committed
improve
1 parent f05965b commit a891e4c

File tree

2 files changed

+0
-12
lines changed

2 files changed

+0
-12
lines changed

python-objectstore-client/src/objectstore_client/metrics.py

Lines changed: 0 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -66,21 +66,12 @@ def increment(
6666
value: Union[int, float] = 1,
6767
tags: Tags | None = None,
6868
) -> None:
69-
"""
70-
Increments a counter metric by a given value.
71-
"""
7269
pass
7370

7471
def gauge(self, name: str, value: Union[int, float], tags: Tags | None = None) -> None:
75-
"""
76-
Sets a gauge metric to the given value.
77-
"""
7872
pass
7973

8074
def timing(self, name: str, value: Union[int, float], tags: Tags | None = None) -> None:
81-
"""
82-
Records a timing metric.
83-
"""
8475
pass
8576

8677
def distribution(
@@ -90,9 +81,6 @@ def distribution(
9081
tags: Tags | None = None,
9182
unit: str | None = None,
9283
) -> None:
93-
"""
94-
Records a distribution metric.
95-
"""
9684
pass
9785

9886

0 commit comments

Comments
 (0)