Replies: 2 comments 7 replies
-
@rubenvp8510, would you know what's going on? |
Beta Was this translation helpful? Give feedback.
7 replies
-
Could it be related to the mappings that have an ignore_above of 256? https://github.com/jaegertracing/jaeger/blob/main/plugin/storage/es/mappings/jaeger-span.json#L84 |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hi everyone.
I have a question around searching for Tags/Logs in the Jaeger UI. I have the feeling searching with wildcards/regex does not work if the Log or Tag content is longer than a certain threshold. I wasn't able to find any documentation around this (also not in github issues), so I wanted to confirm here.
For example, we have Spans with a Log entry named
log1
, value is hello, and maximum length of all Logs of those is 80 chars. Then we have a Log entry namedlog2
, one of the values is world, and the maximum length of all entries is 2kb.Now searching with
log1=.*ell.*
in the UI returns results, but searching withlog2=.*orl.*
not.How can I make the log2 field also searchable?
EDIT: We are using ES on AWS as storage backend.
PS:
Beta Was this translation helpful? Give feedback.
All reactions