For AI agents: a documentation index is available at the root level at /llms.txt and /llms-full.txt. Append /llms.txt to any URL for a page-level index, or .md for the markdown version of any page.
      • AstroFully-managed data operations, powered by Apache Airflow.
      • Astro Private CloudRun Airflow-as-a-service in your environment.
      • Professional ServicesExpert Airflow services for your enterprise's success.
    • Tools
      • Cosmos
      • Orbiter
      • CLI
      • AI SDK
      • Agents
      • Blueprint
      • UpdatesThe State of Airflow 2026See the insights from over 5,800 data practitioners in the full report. Download Now ➔
  • Customers
  • Docs
    • Insights
      • Blog
      • Webinars
      • Resource Library
      • Events
    • Education
      • Academy
      • What is Airflow?
  • Pricing
Get Started Free
      • Deployment logs
      • Airflow alerts
      • Observe Airflow environments with Telescope
    • Book Office Hours

Product

  • Platform Overview
  • Astro
  • Astro Observe
  • Astro Private Cloud
  • Security & Trust
  • Pricing

Tools & Services

  • Cosmos
  • Docs
  • Professional Services
  • Product Updates

Use Cases

  • AI Ops
  • Data Observability
  • ETL/ELT
  • ML Ops
  • Operational Analytics
  • All Use Cases

Industries

  • Financial Services
  • Gaming
  • Retail
  • Manufacturing
  • Healthcare
  • All Industries

Resources

  • Academy
  • eBooks & Guides
  • Blog
  • Webinars
  • Events
  • The Data Flowcast Podcast
  • All Resources

Airflow

  • What is Airflow
  • Airflow on Astro
  • Airflow 3.0
  • Airflow Upgrades
  • Airflow Use Cases
  • Airflow 2.x End of Life

Company

  • Our Story
  • Customers
  • Newsroom
  • Careers
  • Contact

Support

  • Knowledge Base
  • Status
  • Contact Support
GitHubYouTubeLinkedInx
  • Legal
  • Privacy
  • Terms of Service
  • Consent Preferences

  • Do Not Sell or Share My Personal information
  • Limit the Use Of My Sensitive Personal Information

Apache Airflow®, Airflow, and the Airflow logo are trademarks of the Apache Software Foundation. Copyright © Astronomer 2026. All rights reserved.

LogoLogo
On this page
  • Prerequisites
  • Install the Telescope CLI
  • Observe deployed environments
  • Observe local environments running with the Astro CLI
  • Observe standalone Airflow environments
  • Telescope report data
  • Send Telescope reports to Astronomer support
  • Advanced configuration
Observability

Observe Airflow environments with Telescope

Edit this page
Built with

Telescope is a CLI developed by Astronomer for generating additional metrics from your Airflow environments. It connects directly to Airflow and generates snapshots of your usage and configurations at different times. This information can help Astronomer support diagnose and resolve issues in your environments.

Telescope assumes your current permissions whenever you run a command. If you have the correct permissions, Telescope can observe your Airflow environments for a specific period and then generate a report that you can share with Astronomer support.

Astronomer recommends that you observe your Deployments with Telescope at least once a month. When required to assist with troubleshooting, you can observe local projects running with the Astro CLI.

Prerequisites

To observe a local project with Telescope, you need:

  • docker exec permissions.
  • Access to docker.sock.
  • Python 3.8.

To observe Software Deployments on Kubernetes with Telescope, you need:

  • kubectl.
  • Permission to list nodes and exec into Pods.
  • Airflow 1.15+ or an equivalent version of Astro Runtime or Astronomer Certified.
  • An Airflow metadata db using Postgresql, Mysql, or Sqlite.

To observe a standalone Airflow environment with Telescope, you need:

  • An Airflow environment running on a machine with SSH enabled.
  • Airflow 1.15+ or an equivalent version of Astro Runtime or Astronomer Certified.

Install the Telescope CLI

Depending on where you want to run Telescope, install the CLI on a machine that has permissions for either Docker or your Software Kubernetes cluster.

Binary
pip

Go to the Releases page of the Telescope GitHub repository. Based on the operating system and CPU architecture of your machine, download one of the .zip files for the latest available version of Telescope and make it an executable.

For example, to install Telescope on a Linux machine with x86_64 CPU architecture, you would run:

1wget https://github.com/astronomer/telescope/releases/latest/download/telescope-linux-x86_64
2chmod +x telescope-linux-x86_64

Observe deployed environments

In your Kubernetes cluster, run the following command:

1telescope --kubernetes --organization-name <your-organization-name>

This command observes all scheduler containers in the cluster and outputs the results of the observation to a file named <observation-date>.<your-organization-name>.data.json.

By default, Telescope only observes Pods with the label component=scheduler. If your Deployments use an alternative label to denote scheduler Pods, use --label-selector in your command. For example, if your label for scheduler pods is role=scheduler, you would run.

1--kubernetes --organization-name <your-organization> --label-selector "role=scheduler"

Observe local environments running with the Astro CLI

Open your Astro project and run the following command:

1telescope --docker --organization-name <your-organization-name>

This command observes scheduler containers on Docker and outputs the results of the observation to a file named <observation-date>.<your-organization-name>.data.json.

Observe standalone Airflow environments

You can use Telescope to observe both Apache Airflow environments and standalone Astronomer Certified environments. This setup assumes you have two machines:

  • A remote machine running Airflow.
  • A local machine that you use to connect to your remote machine.
  1. On the remote machine running Airflow, create a file named ~/.ssh/config and then open it.

  2. Add the following configuration to the file:

    1Host <your-machine-hostname>
    2 User <your-username> # Specify the username for logging into the machine
    3 Port <your-connection-port> # Chose any available port on the machine
  3. Optional. Add additional configurations, such as an SSH key. See Using the SSH Config File.

  4. Optional. Repeat steps 1 through 3 for any additional remote machines that you want to observe with Telescope.

  5. On your local machine, create a file named hosts.yaml and open it.

  6. Add the following configuration to the file:

    1ssh:
    2 - host: <your-machine-hostname>
    3 - host: <your-machine-hostname-2> # Optional
  7. Run the following command to observe Airflow on the remote machine:

    1telescope -f hosts.yaml --organization-name <your-organization-name>

    This command observes the Airflow scheduler and outputs the results of the observation to a file named <observation-date>.<your-organization-name>.data.json.

Telescope report data

After Telescope observes an Airflow environment, it generates a file ending in data.json with information about the environment. The report can include the following details:

  • Airflow version
  • Provider packages and versions
  • Airflow configurations
  • The names of Airflow variables, connections, and settings
  • DAG and task-level configurations
  • Task run usage

Telescope never collects the DAG codes or the contents of Airflow configurations such as variables and connections. To hide DAG names, use the --dag-obfuscation flag in your Telescope command.

For all report details and functions, see the Telescope GitHub repository.

Send Telescope reports to Astronomer support

  1. In the Astronomer support portal, create a ticket named <Organization-name>: Telescope Results
  2. Attach the data.json file that Telescope generated to the ticket.

Advanced configuration

Telescope includes advanced settings for customizing your reports and observing Airflow environments running in containers with custom names. For more information about these settings, see Telescope README or run telescope --help.