In AppEngine logs viewer can I filter by labels that do not match a pattern

google-app-engine

Solution

The syntax should have been

path:/(?!static).*

However, this does not work either.

In the meantime, assuming you have no other urls starting with `s`, you could do

path:/[^s].*

ps: next time you find a crash or a bug, could you please file an issue at http://code.google.com/p/googleappengine/issues/list.

EDIT:

In the general case the regex would be

path:/([^s]|s[^t]|st[^a]|sta[^t]|stat[^i]|stati[^c]).* 

Problem

AppEngine logs viewer has the ability to filter by labels. For example if I want to find all logs where the url starts with /static, I can put the filter with Labels option selected as ``` path:/static.* ``` However, what should I put such that the filter shows logs that do NOT match this pattern? Attempting examples here crashed the log viewer.

Original source

Related problems