feat(metrics): prefix 'piped_' to registered users gauge
Renamed the `registered_users` gauge to `piped_registered_users` to enhance naming clarity and avoid potential conflicts with similar metrics in broader monitoring ecosystems. This prefix addition aligns with a more descriptive and scoped naming convention, facilitating easier identification and filtering within Prometheus and related tools. This change is part of ongoing efforts to improve metric naming consistency across the system.
This commit is contained in:
parent
dd890f1708
commit
101cabb99b
1 changed files with 1 additions and 1 deletions
|
@ -6,7 +6,7 @@ import yaml
|
|||
|
||||
# Create a metric to track the number of registered users per domain
|
||||
registered_users_gauge = Gauge(
|
||||
"registered_users", "Number of registered users", ["domain"]
|
||||
"piped_registered_users", "Number of registered users", ["domain"]
|
||||
)
|
||||
|
||||
headers = {
|
||||
|
|
Loading…
Reference in a new issue