Api Keys endpoints
User endpoints
Export endpoints
Logs endpoints
Usage endpoints
Search endpoints
Retrieve forward configs
Retrieves the list of all forward configs set up for the account
curl --request GET \
--url https://api.eu.bronto.io/forward-configs \
--header 'X-BRONTO-API-KEY: <api-key>'
{
"forward-configs": [
{
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"name": "Archive data to S3",
"description": "Sending data to S3 for long term store",
"filter": "level='ERROR' or level='WARN'",
"compression": "ZSTD",
"all_logs": true,
"log_ids": [
"<string>"
],
"max_payload_size_bytes": 10000000,
"max_payload_size_events": 1000,
"max_buffer_time_ms": 300000,
"destination": {
"destination_type": "S3",
"bucket": "my-archive-bucket",
"prefix": "bronto/archives/",
"storage_class": "STANDARD"
},
"created_at": 1710948395538
}
]
}
Authorizations
Response
unique identifier for the config
The name of the config
1 - 255
"Archive data to S3"
The compression to use to reduce the payload size
ZSTD
, GZIP
, NONE
True to forward all logs, logs created in future will be automatically forwarded
The destination type. Only S3 currently supported
S3
"S3"
The bucket name
255
"my-archive-bucket"
The key prefix for S3 objects
255
"bronto/archives/"
The S3 storage class to use for the objects
STANDARD
, STANDARD_IA
, GLACIER_IR
"STANDARD"
The timestamp when the config was created
1710948395538
Extra contextual information to add to the forward config.
1000
"Sending data to S3 for long term store"
Optional filter to forward only some events and discard others
255
"level='ERROR' or level='WARN'"
The list of log ids to forward. Required if all_logs is set to false, ignored if all_logs is set to true
The max size of the payload in bytes, before compression. Payload of smaller size can be delivered by the system
1000000 <= x <= 1000000000
10000000
The max number of log events in a payload. Payloads with less events can be delivered by the system
1000 <= x <= 1000000000
1000
The maximum time waited by the system while buffering events to build a payload.
60000 <= x <= 86400000
300000
curl --request GET \
--url https://api.eu.bronto.io/forward-configs \
--header 'X-BRONTO-API-KEY: <api-key>'
{
"forward-configs": [
{
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"name": "Archive data to S3",
"description": "Sending data to S3 for long term store",
"filter": "level='ERROR' or level='WARN'",
"compression": "ZSTD",
"all_logs": true,
"log_ids": [
"<string>"
],
"max_payload_size_bytes": 10000000,
"max_payload_size_events": 1000,
"max_buffer_time_ms": 300000,
"destination": {
"destination_type": "S3",
"bucket": "my-archive-bucket",
"prefix": "bronto/archives/",
"storage_class": "STANDARD"
},
"created_at": 1710948395538
}
]
}