Slide 5
Slide 5 text
Log streaming: Google BigQuery https://docs.fastly.com/guides/streaming-logs/log-streaming-google-bigquery
We sometimes run queries with status_code, response_time, host, path, timestamp to detect
errors, slow endpoints.
Query example
SELECT
*
FROM
`project.fastly.default`
WHERE
host = "example.com"
AND response_time >= 10000
AND timestamp > "2019-03-30 02:00:00"
LIMIT
1000