How-to guides
Query multiple streams
The Bloo Query Language lets you query multiple streams separated by a comma.
Updated 2026-08-17
The Bloo Query Language lets you query multiple streams separated by a comma.
Syntax
The syntax for querying multiple streams is as follows:
stream = stream_name1,stream_name2, stream_name3
Here,
The keyword stream is a standard DQL keyword used to retrieve data
stream_name1, stream_name2, and stream_name3 are the names of the streams from which the data will be retrieved. These stream names are separated by commas. Let's now look at a practical example
stream = AUTHENTICATION, FIREWALL,THREAT
The above DQL query retrieves all fields for each event in the FIREWALL, AUTHENTICATION, and THREAT streams.
Querying multiple streams in DQL Block
Querying multiple streams in Search Block
Related
Was this page helpful?