Export from Bitbucket to Splunk
CloudQuery is an open-source data integration platform that allows you to export data from any source to any destination.
The CloudQuery Bitbucket plugin allows you to sync data from Bitbucket to any destination, including Splunk. It takes only minutes to get started.
Bitbucket
The CloudQuery Bitbucket plugin pulls data from Bitbucket and loads it into any supported CloudQuery destination
cloudquery
v2.3.4
Source
Splunk
This plugin is in preview.
The Splunk destination plugin syncs data from any CloudQuery source plugin(s) to Splunk
cloudquery
v1.1.2
Destination
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 Bitbucket source plugin
You can find more information about the configuration in the plugin documentation
kind: source
# Common source-plugin configuration
spec:
name: bitbucket
path: cloudquery/bitbucket
version: "v2.3.4"
tables: ["*"]
destinations: ["v1.1.2"]
# bitbucket-specific configuration
spec:
username: "${BITBUCKET_USERNAME}" # required
password: "${BITBUCKET_PASSWORD}" # required
Step 4. Configure Splunk destination plugin
You can find more information about the configuration in the plugin documentation
kind: destination
spec:
name: splunk
path: cloudquery/splunk
registry: cloudquery
version: "v1.1.2"
write_mode: "append"
spec:
# Splunk Cloud configuration parameters
host: "${SPLUNK_HOST}"
port: 8088
hec_token: "${SPLUNK_HEC_TOKEN}"
# Optional parameters
# protocol: https
# rest_port: 8089
# session_key: "${SPLUNK_SESSION_KEY}
# index: main
# event_source: cloudquery
# event_sourcetype: _json
# concurrency: 16
# batch_size: 1000
# batch_size_bytes: 5242880
Step 5. Run Sync
cloudquery sync bitbucket.yml splunk.yml