Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Scroll ignore
scroll-viewporttrue
scroll-pdftrue
scroll-officetrue
scroll-chmtrue
scroll-docbooktrue
scroll-eclipsehelptrue
scroll-htmltrue
scroll-epubtrue

Open in new tab

About Collectors

Insert excerpt
Collector Method
Collector Method
nameabout

...

FIELD

FIELD TYPE

DESCRIPTION

EXAMPLE

url

string

DBT cloud url

https://cloud.getdbt.com

Or if private

https://cloud.example.privatelink.getdbt.com

account_id

string

DBT cloud account Id

“xxxxx.australia-east.azure”

environment_ids

list<string>

List of environment Ids to extract

12345,234234

token

string

Generated token from the DBT console

 

output_path

string

Absolute path to the output location where files are to be written

“/tmp/output”

timeout

integer

By default we allow 20 seconds for the API to respond, for slower connections it may take longer, so adjust accordingly.

20

mapping

JSON

Mapping between DBT project ids and their corresponding database host value in K.

The keys are DBT project ids where as the host is corresponding onboarded host in K

Code Block
{
    "60125": "af33141.australia-east.azure",
    "76e1e02270ddad585ed8ebf607230deeb779b3e5": "af33141.australia-east.azure"
}

dry_run

boolean

If you enable dry run, the extractor will simply produce the mapping.json file only which helps you map all your projects to a corresponding database host.

false

compress

boolean

To gzip the output or not

true

...