We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
https://cloud.google.com/pubsub/docs/subscription-message-filter#boolean_operators_for_the_filter_expression
Today we have:
filter = { "type" : "dev.chainguard.bar" } // Only trigger on bar-type events filter_prefix = { "source": "baz/" } // ...coming from baz
which translates down to
filter = "attributes.ce-type=\"dev.chainguard.bar\" AND hasPrefix(attributes.ce-source, \"baz/\")"
This means it's not possible to easily subscribe to 2+ event types, or 2+ prefixes, etc., even though this is possible from PubSub's side.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
https://cloud.google.com/pubsub/docs/subscription-message-filter#boolean_operators_for_the_filter_expression
Today we have:
which translates down to
This means it's not possible to easily subscribe to 2+ event types, or 2+ prefixes, etc., even though this is possible from PubSub's side.
The text was updated successfully, but these errors were encountered: