We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 7399b3f + 713519f commit 797179cCopy full SHA for 797179c
docs/use-cases/observability/clickstack/example-datasets/sample-data.md
@@ -93,7 +93,7 @@ for filename in $(tar -tf sample.tar.gz); do
93
endpoint="http://localhost:4318/v1/${filename%.json}"
94
echo "loading ${filename%.json}"
95
tar -xOf sample.tar.gz "$filename" | while read -r line; do
96
- echo "$line" | curl -s -o /dev/null -X POST "$endpoint" \
+ printf '%s\n' "$line" | curl -s -o /dev/null -X POST "$endpoint" \
97
-H "Content-Type: application/json" \
98
-H "authorization: ${CLICKSTACK_API_KEY}" \
99
--data-binary @-
0 commit comments