Note
The Raindrop importer reads from a Raindrop query key. Imports land in a local workspace under .rollout/imports/<run> before they are sent, so you can review everything first.
Preview
See what an import would pull without writing anything:
rollout import raindrop preview \ --raindrop-query-key rdq_... \ --since 2026-05-01 \ --limit 10Dry run & send
Transform the source into a local import workspace without sending (--dry-run), then run for real, choosing which record types to include:
# transform only, nothing sentrollout import raindrop run \ --raindrop-query-key rdq_... \ --since 2026-05-01 \ --dry-run# run and send to Rolloutrollout import raindrop run \ --raindrop-query-key rdq_... \ --since 2026-05-01 \ --include users,conversations,traces,events,signalsInspect & validate
Inspect a local import workspace and validate a transformed events file before sending:
rollout import report .rollout/imports/<run>rollout import validate .rollout/imports/<run>/transformed/events.jsonlResume & send
Resume a partially-sent import from its checkpoint, or send a transformed JSONL file manually:
rollout import resume .rollout/imports/<run>rollout import send .rollout/imports/<run>/transformed/events.jsonl --provider raindrop