Connectors
Add and manage data source connectors
Connectors define the data sources that Bigeye agents connect to. Each connector type has specific configuration requirements (credentials, hostnames, etc.) that the Agent CLI walks you through interactively.
Adding Connectors
# Interactive — prompts for connector type
./bigeye-agent add-connector
# Specify connector type directly
./bigeye-agent add-connector -c snowflake
./bigeye-agent add-connector -c tableau
# Add multiple connector types at once
./bigeye-agent add-connector -c snowflake -c bigquery
# Import from an existing properties file
./bigeye-agent add-connector -c snowflake --from-existing /path/to/snowflake.properties
# Skip connection validation
./bigeye-agent add-connector -c snowflake --skip-validation| Option | Description |
|---|---|
--connector, -c | Connector type (e.g., snowflake, databricks). Can be specified multiple times. If omitted, you'll be prompted. |
--from-existing, -fe | Path to an existing properties file to import configuration from. Only works with a single connector type. |
--skip-validation, -sv | Skip validation of connector configuration during setup. |
Editing Connectors
# Interactive — prompts for connector type and connection
./bigeye-agent edit-connector
# Specify connector type
./bigeye-agent edit-connector -c snowflakeThe edit-connector command removes the existing connection configuration and walks you through setup again. After editing, agent configuration files are regenerated and the agent is restarted.
Modifying Connectors via YAML
You can also edit connector configuration directly in bigeye_agent.yml. After editing, run:
./bigeye-agent syncThis regenerates the agent configuration files from the updated YAML.
Supported Connector Types
The table below lists all supported connectors and the CLI name to use with the -c flag.
| Connector | CLI flag |
|---|---|
| AtScale | -c atscale |
| Azure Data Factory | -c datafactory |
| BigQuery | -c bigquery |
| Custom Data Mappings | -c customdatamappings |
| Databricks | -c databricks |
| DB2 | -c db2 |
| dbt | -c dbt |
| Fivetran | -c fivetran |
| Informatica PowerCenter | -c powercenter |
| Looker | -c looker |
| Looker v2 | -c looker_v2 |
| Matillion | -c matillion |
| Oracle | -c oracle |
| PostgreSQL | -c postgresql |
| Power BI | -c powerbi |
| Qlik Replicate | -c qlikreplicate |
| Qlik Sense | -c qliksense |
| Redshift | -c redshift |
| SAP CalcViews | -c sap_calcviews |
| SAP HANA | -c saphana |
| Snowflake | -c snowflake |
| SnapLogic | -c snaplogic |
| SQL Server | -c sqlserver |
| SSIS | -c ssis |
| SSRS | -c ssrs |
| Synapse | -c synapse |
| Tableau | -c tableau |
| Teradata | -c teradata |
Updated about 6 hours ago
