Execute a query
The REST API for searching data uses queries based on a subset of SQL, with the syntax as per https://docs.brontobytes.io/core-features/log-search/query-syntax/.
There are two types of search:
- event search: allows you to specify a filter and view the matching events returned in the response. The response will be paginated if more than 50 matching events are returned.
- statistical search: allows you to analyse events using a range of aggregate functions, such as count(), which return a number.
Authorizations
Query Parameters
The ids of the logs to search.
One of either the from
or the from_tags
parameters must be specified.
The tags to search. Each tag should be in the form <key>:<value>
, e.g., environment:production
.
One of either the from
or the from_tags
parameters must be specified.
If both are specified then from_tags
takes precedence, and the from
value is ignored.
If the key or the value contain a :
or =
character, then these can be escaped by wrapping the entire key or value in double-quotes "
.
The relative time range for which to query data. Time range supported is from milliseconds to years. For an exact range, use from_ts
and to_ts
instead.
The starting time (unix time in milliseconds) for which to query data. Must be used together with to_ts
. This parameter is not to be used when using time_range
.
The ending time (unix time in milliseconds) for which to query data. Must be used together with from_ts
. This parameter is incompatible with time_range
.
The where parameter is used to filter the results of your query. See https://docs.bronto.io/core-features/log-search/query-syntax for more details The filter can combine multiple terms using AND, OR, NOT.
The select parameter selects values of one or more specified keys and can be considered to be equivalent to returning columns from a table. It can select keys either by name, e.g. query params with select=ip_address or with an aggregate function (count, max, min, avg, sum) on the values of the specified key, e.g. query params with select=count(ip_address). Multiple selects can be used and they would separated by & in the query param, e.g. &select=count(ip_address)&select=count(hostname). The following internal columns are always available: @time, @origin & @raw
The groups parameter specifies a key to use to arrange the results returned by an aggregate function, (such as count, max, min, avg, sum) into groups of values. The aggregate function returns a single value for each group. Multiple groups can be specified in the request if separated by &, e.g. query params with &groups=customer_id or &groups=customer_id&groups=hostname.
The maximum number of events that an event search should return. In a query with a group by, it limits the number of groups returned. It does not affect a statistical search using aggregate functions.
1 <= x <= 6666
The number of buckets to break the time series results up into.
The starting sequence for which to query data. This is more granular than a timestamp but also requires a from_ts
param.
Flag to indicate order in which results should be returned.