From 4d778138545426436d36828e5ba2049ce92f7aee Mon Sep 17 00:00:00 2001 From: Adam Gardner <26523841+agardnerIT@users.noreply.github.com> Date: Sat, 23 Sep 2023 13:40:23 +1000 Subject: [PATCH] docs: remove python references Signed-off-by: Adam Gardner <26523841+agardnerIT@users.noreply.github.com> --- docs/reference/span-events.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/reference/span-events.md b/docs/reference/span-events.md index bb6ccd1..9306c16 100644 --- a/docs/reference/span-events.md +++ b/docs/reference/span-events.md @@ -23,7 +23,7 @@ or For example, to push an event that should be denoted at 100 milliseconds _after_ the span start time, where the event name is `eventA`, the key is `feature_flag.key`, the value is `hexColor` and the event value type (implied) is `stringValue`: ``` -python ~/tracepusher/tracepusher.py \ +./tracepusher \ --endpoint http://localhost:4318 \ --service-name serviceA \ --span-name span1 \ @@ -34,7 +34,7 @@ python ~/tracepusher/tracepusher.py \ To send an event that should be attached at the beginning of the span, with a key of `userID` and a type set as an integer: ``` -python ~/tracepusher/tracepusher.py \ +./tracepusher \ --endpoint http://localhost:4318 \ --service-name serviceA \ --span-name span1 \