Instant Logs
Instant Logs allows Cloudflare customers to access a live stream of the traffic for their domain from the Cloudflare dashboard or from a command-line interface (CLI). Seeing data in real time allows you to investigate an attack, troubleshoot, debug or test out changes made to your network. Instant Logs is lightweight, simple to use and does not require any additional setup.
Free | Pro | Business | Enterprise | |
---|---|---|---|---|
Availability | No | No | Yes | Yes |
-
Log in to the Cloudflare dashboard ↗ and select the zone you want to use with Instant Logs.
-
Go to Analytics > Instant Logs.
-
Select Start streaming.
-
(optional) Select Add filter to narrow down the events to be shown.
Fields supported in our HTTP requests dataset can be used when you add filters. Some fields with additional subscriptions required are not supported in the dashboard, you will need to use CLI instead.
Once a filter is selected and the stream has started, only log lines that match the filter criteria will appear. Filters are not applied retroactively to logs already showing in the dashboard.
Create a session by sending a POST
request to the Instant Logs job endpoint with the following parameters:
-
Fields - List any field available in the HTTP requests dataset.
-
Sample - The sample parameter is the sample rate of the records set by the client:
"sample": 1
is 100% of records"sample": 10
is 10% and so on.
- Filters - Use filters to drill down into specific events. Filters consist of three parts: key, operator and value.
All supported operators can be found in the Filters page.
Below we have three examples of filters:
Example request using cURL:
Response:
The response will include a new field called destination_conf. The value of this field is your unique WebSocket address that will receive messages from Cloudflare’s global network.
Using a CLI utility like Websocat ↗, you can connect to the WebSocket and start immediately receiving logs.
Response:
Once connected to the websocket, you will receive messages of line-delimited JSON.
Now that you have a connection to Cloudflare’s websocket and are receiving logs from Cloudflare’s global network, you can start slicing and dicing the logs. A handy tool for this is Angle Grinder ↗. Angle Grinder lets you apply filtering, transformations and aggregations on stdin with first class JSON support. For example, to get the number of visitors from each country you can sum the number of events by the ClientCountry
field.
Response:
ClientCountry | _sum |
---|---|
pt | 4 |
fr | 3 |
us | 3 |
om | 2 |
ar | 1 |
au | 1 |
For the moment, HTTP requests
is the only dataset supported. In the future, we will expand to other datasets.
You can download the table of logs that appears in the dashboard, in JSON format via the Export button.
Instant Logs has three limits set in place:
- Only one active Instant Logs session per zone.
- Maximum session time is 60 minutes.
- If you stop listening to a socket for more than five minutes.
If either of these limits are reached, the logs stream will automatically stop.
If you have any feature requests or notice any bugs, share your feedback directly with us by joining the Cloudflare Developers community on Discord ↗.