This is an automated email from the ASF dual-hosted git repository.
zhouky pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/incubator-celeborn.git
The following commit(s) were added to refs/heads/main by this push:
new b2b7c4d35 [CELEBORN-991][DOC] Remove incorrect `spark.metrics.conf`
b2b7c4d35 is described below
commit b2b7c4d3592b8131f590fce22b9ba7d911587980
Author: sychen <[email protected]>
AuthorDate: Wed Sep 20 09:03:27 2023 +0800
[CELEBORN-991][DOC] Remove incorrect `spark.metrics.conf`
### What changes were proposed in this pull request?
1. Replace `spark.metrics.conf` with `celeborn.metrics.conf`.
2. Fix broken links.
https://celeborn.apache.org/docs/latest/monitoring/#metrics
### Why are the changes needed?
### Does this PR introduce _any_ user-facing change?
### How was this patch tested?
Closes #1925 from cxzl25/CELEBORN-991.
Authored-by: sychen <[email protected]>
Signed-off-by: zky.zhoukeyong <[email protected]>
---
docs/monitoring.md | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/docs/monitoring.md b/docs/monitoring.md
index ea96720e9..8180e8a66 100644
--- a/docs/monitoring.md
+++ b/docs/monitoring.md
@@ -30,7 +30,7 @@ files and prometheus servlet. The metrics are generated by
sources embedded in t
They provide instrumentation for specific activities and Celeborn components.
The metrics system is configured via a configuration file that Celeborn
expects to be present
at `$CELEBORN_HOME/conf/metrics.properties`. A custom file location can be
specified via the
-`spark.metrics.conf` [configuration
property](https://celeborn.apache.org/configuration/#metrics).
+`celeborn.metrics.conf` [configuration
property](https://celeborn.apache.org/docs/latest/configuration/#metrics).
Instead of using the configuration file, a set of configuration parameters
with prefix
`celeborn.metrics.conf.` can be used.
@@ -69,7 +69,7 @@ Default values of the Celeborn metrics configuration are as
follows:
```
Additional sources can be configured using the metrics configuration file or
the configuration
-parameter
`spark.metrics.conf.[component_name].source.jvm.class=[source_name]`. At
present the
+parameter
`celeborn.metrics.conf.[component_name].source.jvm.class=[source_name]`. At
present the
no source is the available optional source. For example the following
configuration parameter
activates the Example source:
`"celeborn.metrics.conf.*.source.jvm.class"="org.apache.celeborn.common.metrics.source.ExampleSource"`