From 7e4ac92d50407ad26a3725cf13823173b85e132a Mon Sep 17 00:00:00 2001 From: Barend Garvelink <159024183+barend-xebia@users.noreply.github.com> Date: Fri, 25 Oct 2024 14:43:39 +0200 Subject: [PATCH] tweak markdown formatting --- README.md | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index 1153e8b..4cc3933 100644 --- a/README.md +++ b/README.md @@ -13,12 +13,12 @@ This allows reporting tracing and metrics from any Spark or PySpark job to [Open The recommended way to use Spot relies on [OpenTelemetry Autoconfigure][ot-auto] to obtain the OpenTelemetry configuration. You pass the `spot-complete-*.jar` to spark-submit to make Spot available to your job, and configure `spark.extraListeners` to enable it. -```bash -SCALA_VERSION=2.12 # This will be 2.12 or 2.13, whichever matches your Spark deployment. -spark-submit \ - --jar com.xebia.data.spot.spot-complete_${SCALA_VERSION}-x.y.z.jar \ - --conf spark.extraListeners=com.xebia.data.spot.TelemetrySparkListener \ - com.example.MySparkJob +```diff + SCALA_VERSION=2.12 # This will be 2.12 or 2.13, whichever matches your Spark deployment. + spark-submit \ ++ --jar com.xebia.data.spot.spot-complete_${SCALA_VERSION}-x.y.z.jar \ ++ --conf spark.extraListeners=com.xebia.data.spot.TelemetrySparkListener \ + com.example.MySparkJob ``` ### Context Propagation