Skip to content

Commit

Permalink
Fix Zipkin Importer
Browse files Browse the repository at this point in the history
  • Loading branch information
Gabriel-Darbord committed Dec 11, 2023
1 parent 70f1508 commit 7e536db
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ OTelZipkinExtractor >> extract [
url := String streamContents: [ :stream |
stream << endpoint << '/api/v2/traces?'.
self parameters associationsDo: [ :param |
stream << $& << param key << $= << param value ] ].
stream << $& << param key << $= << param value asString ] ].
data := ZnClient new get: url.
self output: data.
^ (NeoJSONReader on: data readStream) parseList
Expand Down

0 comments on commit 7e536db

Please sign in to comment.