May I ask another silly question, I am getting closer to what I need, if I had the following examples: /rest/Apple/1.0/ /rest/Banana/2/ /rest/structure/2.0/ How could I define a variable via regex to best tease out whats an apple, banana and or structure I tried what you provided below but its giving me the full log. I just need it to show: | rex "rest/***/***"(?<method>\w+) \/rest\/(?<ActionTaken>.*)"
AKA Action taken would be equal to apple, banana or structure Apple 1.0 or Banana 2 structure 2.0. (TLDR basically anything after rest/*/*/
... View more