InsanityLogs requires a minimum screen width of 768px to display properly. Please use a larger device or rotate to landscape mode.
Recommended devices:
Follow these steps to download your request logs from Sanity
Go to manage.sanity.io and select your project
Navigate to the Usage tab
Scroll down or navigate to Request Logs
Request and download your logs
Extract the .ndjson file from the downloaded zip
Supports .ndjson or .jsonl files
Maximum: 2GB (browser memory limit)
Browser tabs are limited to 2-4GB of memory. For files larger than 2GB, preprocess with these commands:
Decompress .gz files:
gunzip filename.gzGet last 1 million lines:
tail -n 1000000 logs.ndjson > recent.ndjsonSplit into 500MB chunks:
split -b 500m logs.ndjson chunk_Sample every 10th line:
awk 'NR % 10 == 0' logs.ndjson > sampled.ndjsonCompare metrics before and after deployments