Try these tweaks to improve the regexp:
- Put anchors in your expression:
/^web10009.*$/ - If you can’t use block anchors, use lazy quantifiers:
/.*?web10009.*/ - Negate the regexp instead of the result inside filter:
@filter(regexp(tagvalue_name,/^((?!web10009).)*$/)) {}
Let me know if these changes make any difference.