Skip to content

Features

Matus Banas edited this page Oct 14, 2024 · 2 revisions

Features

Build Tableau Bridge docker container images

  • Download and install the bridge rpm and selected database drivers in the image.
  • Follow best practices for building containers.

Run bridge containers in Docker

Reports

  • Display Jobs Report
  • Display Bridge Agent Status

Analyze bridge logs

  • Log viewer with ability to filter and sort logs
  • Analyze logs from local docker containers, local disk or from kubernetes containers (pods)

Run bridge containers in Kubernetes

  • After importing your kubeconfig file, you can spin up bridge agent containers in a Kubernetes cluster

Manage bridge containers in Docker or Kubernetes

  • View configuration settings of bridge containers or delete bridge containers
  • View current bridge agent activity (standard output logs)
  • Show snapshot metrics about resource utilization

Custom DNS Mappings (released on Sept 5, 2024)

BridgeCTL now supports adding custom domain mappings to the /etc/hosts file inside the bridge container so that the bridge agent can properly resolve a DNS entry to IP address. To use this feature, simply populate the dns_mappings dictionary by editing the yaml file found at bridgectl/config/bridge_settings.yml.

Example:

dns_mappings:
  mysql.example.lan: 10.1.1.18
  postgresql.example.lan: 10.1.1.80

This is the same as using the --add_hosts parameter of a docker run command. When the container is started, these values will be added to the /etc/hosts file within the container.