Skip to content

Instantly share code, notes, and snippets.

@poldeuce-sys
Created October 26, 2017 12:51
Show Gist options
  • Save poldeuce-sys/3d7c881bc08d3f2a109c55c39fc3f8e1 to your computer and use it in GitHub Desktop.
Save poldeuce-sys/3d7c881bc08d3f2a109c55c39fc3f8e1 to your computer and use it in GitHub Desktop.
With both zipkin traces and logs in ElasticSearch, you can query both places by span id or similar. For example:
GET /zipkin:span-2017-10-25,logstash-2017.10.25/_search
{
"query": {
"multi_match": {
"query": "1baed6f769e2648a",
"fields": ["id", "spanid"]
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment