This is an automated email from the ASF dual-hosted git repository.
jshao pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/gravitino.git
The following commit(s) were added to refs/heads/main by this push:
new a5025ec592 [#9245] fix(metrics): Fix typo for Fileset metrics name in
doc (#9246)
a5025ec592 is described below
commit a5025ec592599d011cb060e2728e5cc3934e3375
Author: qbhan <[email protected]>
AuthorDate: Tue Nov 25 19:10:06 2025 +0800
[#9245] fix(metrics): Fix typo for Fileset metrics name in doc (#9246)
### What changes were proposed in this pull request?
Fix typo for Fileset metrics name in doc
### Why are the changes needed?
Fix: #9245
### Does this PR introduce _any_ user-facing change?
No
### How was this patch tested?
No
---
docs/metrics.md | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/docs/metrics.md b/docs/metrics.md
index d9ae09d27e..5833ed164c 100644
--- a/docs/metrics.md
+++ b/docs/metrics.md
@@ -58,6 +58,6 @@ All the catalog metrics start with the `gravitino-catalog`
prefix in Prometheus
For example, you can get Prometheus metrics for a fileset catalog named
`test_catalog` under a metalake named `test_metalake` in the Gravitino server
as follows:
```text
-gravitino-catalog_filesystem-cache_hits{provider="fileset",metalake="test_metalake",catalog="test_catalog",}
0.0
-gravitino-catalog_filesystem-cache_misses{provider="fileset",metalake="test_metalake",catalog="test_catalog",}
0.0
+gravitino_catalog_filesystem_cache_hits{provider="fileset",metalake="test_metalake",catalog="test_catalog",}
0.0
+gravitino_catalog_filesystem_cache_misses{provider="fileset",metalake="test_metalake",catalog="test_catalog",}
0.0
```