Export from CrowdStrike to DuckDB
CloudQuery is an open-source data integration platform that allows you to export data from any source to any destination.
The CloudQuery CrowdStrike plugin allows you to sync data from CrowdStrike to any destination, including DuckDB. It takes only minutes to get started.
CrowdStrike
This plugin is in preview.
Sync data from Crowdstrike APIs
DuckDB
This destination plugin lets you sync data from a CloudQuery source to a DuckDB database
Table of Contents
MacOS Setup
Step 1. Install CloudQuery
brew install cloudquery/tap/cloudquery
Step 2. Log in to CloudQuery CLI
cloudquery login
Step 3. Configure CrowdStrike source plugin
You can find more information about the configuration in the plugin documentation
# crowdstrike.yml
kind: source
spec:
name: "crowdstrike"
registry: "cloudquery"
path: "justmiles/crowdstrike"
version: "v2.0.0"
# use this to enable incremental syncing - unimplemented
# backend_options:
# table_name: "cq_state_crowdstrike"
# connection: "@@plugins.v5.6.3.connection"
destinations: ["sqlite"]
tables: ["*"]
spec:
# plugin spec section
Step 4. Configure DuckDB destination plugin
You can find more information about the configuration in the plugin documentation
kind: destination
spec:
name: duckdb
path: cloudquery/duckdb
registry: cloudquery
version: "v5.6.3"
write_mode: "overwrite-delete-stale"
spec:
connection_string: /path/to/example.db
# Optional parameters
# batch_size: 1000
# batch_size_bytes: 4194304 # 4 MiB
# debug: false
Step 5. Run Sync
cloudquery sync crowdstrike.yml duckdb.yml