hey,
i have a problem with my logfiles i want to create a grok pattern which can chek if this log-entry have after sev
field a string starrt whit com than parse it in package. i try this pattern but not lukcy:
log-entry:
[9/17/18 4:48:10:436 CEST] 00000072 webapp E com .ibm.ws.webcontainer.webapp.WebApp logServletError SRVE0293E: [Servlet Error]-[PluginServlet]: java.io.IOException: Plugin resource not found!
my pattern:
%{DATESTAMP:time} %{NOTSPACE} %{NOTSPACE:thread} %{WORD:log-source} [ ]* %{NOTSPACE:sev}\s+(?<package>[a-z]{3}(?=.*c))\s ?%{GREEDYDATA:msg}
please help me.
Thank you