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

Collectors are extractors that are developed and managed by you (A customer of K).

...

Code Block
class Extractor(username: str = None, password: str = None, host: str = None, \
    server: str = None, databases: list = [], port: int = 5432, \
    output_path: str = './output', mask: bool = False, compress: bool = False, \
    meta_only: bool = False) -> None

username: username to sign into Postgres
password: password to sign into Postgres
host: Onboarded value for the Postgres server in K
server: Host address to the Postgres Service for a connection
databases: list of databases to extract, no spaces
port: postgres port
output_path: full or relative path to where the outputs should go
mask: To mask the META/DATABASE_LOG files or not
compress: To gzip output files or not
meta_only: To extract metadata only or not

...

Step 6: Check the Collector Outputs

...