how to search annotations or binaryAnnotations in kibana?
See original GitHub issuei send trace info to es5, and i want to search annotations or binaryAnnotations from kibana.
i have one span json like this:
{
"_index": "zipkin-2016-11-17",
"_type": "span",
"_id": "AVhw8k-GQpNFwf9ty7hN",
"_score": null,
"_source": {
"traceId": "0f56baad2910df69",
"timestamp_millis": 1479363860752,
"annotations": [
{
"endpoint": {
"ipv4": "10.8.0.2",
"port": 18088,
"serviceName": "first-example-dev"
},
"value": "cs",
"timestamp": 1479363860752000
},
{
"endpoint": {
"ipv4": "10.8.0.2",
"port": 18088,
"serviceName": "first-example-dev"
},
"value": "cr",
"timestamp": 1479363860903752
}
],
"parentId": "20c251aac430bf39",
"duration": 151752,
"binaryAnnotations": [
{
"endpoint": {
"ipv4": "10.8.0.2",
"port": 19091,
"serviceName": "thrift"
},
"value": true,
"key": "sa"
}
],
"name": "secondadd",
"collector_timestamp_millis": "2016-11-17T06:21:18.086+0000",
"id": "f83891ef110158ef",
"timestamp": 1479363860752000
},
"fields": {
"timestamp_millis": [
1479363860752
],
"collector_timestamp_millis": [
1479363678086
]
},
"sort": [
1479363678086
]
}
i want to search annotations
’s endpoint
’s serviceName
is first-example-dev
, and i direct search first-example-dev
from kibana, no result 😦, and i search annotations:first-example-dev
also nothing.
how can i search this content?
Issue Analytics
- State:
- Created 7 years ago
- Comments:11
Top Results From Across the Web
Track deployments with annotations | Kibana Guide [master]
For enhanced visibility into your deployments, we offer deployment annotations on all transaction charts. This feature enables you to easily determine if ...
Read more >Using Elasticsearch with Spring Boot - Reflectoring
How to index and search Data with Spring Boot and Elasticsearch. ... with annotations to define the mapping into an Elasticsearch document.
Read more >Deprecated List (Hibernate Search 5.11.11.Final)
org.hibernate.search.annotations.Key. Custom filter cache keys are a deprecated feature scheduled to be removed in Hibernate Search 6.
Read more >Create annotations in Kibana - reelyActive Developers
Adding annotations Step 2 of 2 · Select your Index pattern · Choose timestamp in the Time field · Enter your query string...
Read more >Spring Data Elasticsearch - Reference Documentation
Templates as a high-level abstraction for storing, searching, sorting documents ... The intermediate repository interface is annotated with ...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
well, it could only be better if you use elasticsearch 😃 ps whatever isn’t good should at least be noted for improvement in with a screen shot of what’s better (since good is subjective and not always guessable) https://github.com/openzipkin/zipkin-ui/issues
Anyway, in case it helps, here’s a complex query that the http implementation sends on the wire. It might help you figure out what to do (or not).
ex.
becomes this http request:
closing as it is antiquated especially now we have a different model