Just to preface myself, I'm a beginner user of Regex and have little experience in monitoring software.
I'm currently looking into NLS and I've managed to get everything up and running but I have an issue with querying in the dashboard.
Code: Select all
2015-12-08 10:18:26,971 INFO [ReturnStrategy.run:67 331 0ae35574b6d1441e91ed505db292664a] ReturnEnd: copy[R13222A0440] borrower[T282] corpId[sdd2fxcswd2313] sessionId[rDLnmMSVZHDxY3KqIcJ4aPmL] clientUuid[0ae35574b6d1441e91ed505db292664a] took[424]/took\[[0-9]{3}\]/
it would find "took[424]". Using the same Regex in the dashboard query panel, I am returned with 0 results although the same snippet is present in the log.
I have however noticed when inspecting the Last Elasticsearch Query that it is escaping my \ automatically, see below for the Last Elasticsearch Query.
Code: Select all
"query": "/took\\[[0-9]{3}\\]/" Any help would be great appreciated.