aboutsummaryrefslogtreecommitdiff
path: root/docs/monitoring.md
diff options
context:
space:
mode:
authorAndrew Ash <andrew@andrewash.com>2014-02-14 10:01:01 -0800
committerAaron Davidson <aaron@databricks.com>2014-02-14 10:01:01 -0800
commiteec4bd1a1731dc84a8de70a2a12251ee134f2296 (patch)
tree581ff37f7f850d16fff462829309347e8bcb2ad0 /docs/monitoring.md
parent2414ed310ef6424894c37e8c2e8c461cbf880c78 (diff)
downloadspark-eec4bd1a1731dc84a8de70a2a12251ee134f2296.tar.gz
spark-eec4bd1a1731dc84a8de70a2a12251ee134f2296.tar.bz2
spark-eec4bd1a1731dc84a8de70a2a12251ee134f2296.zip
Typo: Standlone -> Standalone
Author: Andrew Ash <andrew@andrewash.com> Closes #601 from ash211/typo and squashes the following commits: 9cd43ac [Andrew Ash] Change docs references to metrics.properties, not metrics.conf 3813ff1 [Andrew Ash] Typo: mulitcast -> multicast 873bd2f [Andrew Ash] Typo: Standlone -> Standalone
Diffstat (limited to 'docs/monitoring.md')
-rw-r--r--docs/monitoring.md6
1 files changed, 3 insertions, 3 deletions
diff --git a/docs/monitoring.md b/docs/monitoring.md
index 0d5eb7065e..e9b1d2b2f4 100644
--- a/docs/monitoring.md
+++ b/docs/monitoring.md
@@ -19,7 +19,7 @@ You can access this interface by simply opening `http://<driver-node>:4040` in a
If multiple SparkContexts are running on the same host, they will bind to succesive ports
beginning with 4040 (4041, 4042, etc).
-Spark's Standlone Mode cluster manager also has its own
+Spark's Standalone Mode cluster manager also has its own
[web UI](spark-standalone.html#monitoring-and-logging).
Note that in both of these UIs, the tables are sortable by clicking their headers,
@@ -31,7 +31,7 @@ Spark has a configurable metrics system based on the
[Coda Hale Metrics Library](http://metrics.codahale.com/).
This allows users to report Spark metrics to a variety of sinks including HTTP, JMX, and CSV
files. The metrics system is configured via a configuration file that Spark expects to be present
-at `$SPARK_HOME/conf/metrics.conf`. A custom file location can be specified via the
+at `$SPARK_HOME/conf/metrics.properties`. A custom file location can be specified via the
`spark.metrics.conf` [configuration property](configuration.html#spark-properties).
Spark's metrics are decoupled into different
_instances_ corresponding to Spark components. Within each instance, you can configure a
@@ -54,7 +54,7 @@ Each instance can report to zero or more _sinks_. Sinks are contained in the
* `GraphiteSink`: Sends metrics to a Graphite node.
The syntax of the metrics configuration file is defined in an example configuration file,
-`$SPARK_HOME/conf/metrics.conf.template`.
+`$SPARK_HOME/conf/metrics.properties.template`.
# Advanced Instrumentation