i am trying to extract http status from below event row text using search , but could not able to get status, event content - .. [2020-11-26T11:27:56.025047450Z] "PUT /sendmail HTTP/1.1" 400 203 252 "-" ... search : | rex field=_raw "(?<prevFields>.*)\"PUT /sendmail HTTP/\d+\.\d+\" (?<statusFieldStart>.*)" | table prevFields statusFieldStart if i remove \" , that is highlighted one , then i am getting statusFieldStart with content " 400 203 252 "-" ,that having double quote at start , want to remove it so i can extract status field complete. anything am i missing here
... View more