How to find integer

For example, I have url /hello/{id}
How can I find all matches?
query “/hello/\d+” not working
query “/hello/[0-9]+” - from [the manual](https://go2docs.graylog.org/5-0/making_sense_of_your_log_data/writing_search_queries.html?tocpath=Making%20Sense%20of%20Your%20Log%20Data%7CHow%20to%20Search%20Your%20Log%20Data%7C_____1) also not working

Can you provide a bit more context? What is an example of the log message you would like to be returned in your search result?

An important caveat on using regex queries is that it doesn’t appear to work on “analyzed” fields, such as the message field. If you have some example of sample log messages I can try to do some testing though.

This topic was automatically closed 14 days after the last reply. New replies are no longer allowed.