Logs endpoints
Retrieve a list of logs
Api Keys endpoints
User endpoints
Export endpoints
Logs endpoints
Usage endpoints
Search endpoints
Logs endpoints
Retrieve a list of logs
GET
/
logs
curl --request GET \
--url https://api.eu.bronto.io/logs \
--header 'X-BRONTO-API-KEY: <api-key>'
{
"logs": [
{
"logset": "demo",
"log": "firewall",
"log_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"is_system_generated": false,
"tags": {
"region": "eu",
"environment": "production"
},
"drop_events": 0,
"level": "trace"
}
]
}
Authorizations
Response
200
application/json
A list of log entries
The name of the log set
Example:
"demo"
The name of the log
Example:
"firewall"
The unique identifier of the log
Whether the log is generated by the system
Example:
false
A map of key value pairs associated with this log
The value of the tag
Example:
{
"region": "eu",
"environment": "production"
}
This is the percentage of new incoming data for this log that will be rejected (where 0.0 is no data rejection and 1.0 is all data rejection). Rejected data is not recoverable and will not be indexed or monitored.
Required range:
0 <= x <= 1
This is the log level at which incoming events will be accepted. For example if info is set then debug and trace events will be rejected. Events with no level will be allowed irrespective of the level set. Rejected data is not recoverable and will not be indexed or monitored.
Available options:
trace
, debug
, info
, warning
, error
, severe
, critical
, fatal
, notice
, alert
, emergency
curl --request GET \
--url https://api.eu.bronto.io/logs \
--header 'X-BRONTO-API-KEY: <api-key>'
{
"logs": [
{
"logset": "demo",
"log": "firewall",
"log_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"is_system_generated": false,
"tags": {
"region": "eu",
"environment": "production"
},
"drop_events": 0,
"level": "trace"
}
]
}