Skip to main content
Pipeline CLI is a Chronosphere-supplied app that lets you manage Chronosphere Telemetry Pipeline from the command line.

Get started

To install Pipeline CLI, Install Pipeline CLI. After you install Pipeline CLI, you’ll need to authenticate with Chronosphere.

View command list

To view a full list of available commands and flags, run:
calyptia help
You can also prepend calyptia help to a specific command to view more information about that command.
Pipeline CLI supports different commands for Telemetry Pipeline v2 and Telemetry Pipeline v3. Depending on whether the active project is a v2 project or a v3 project, running calyptia help displays commands relevant to that version.

View current version

To view the version of Pipeline CLI that you currently have installed, run the following command:
calyptia version

Command autocompletion

This feature is compatible only with v2 projects.
You can add support for shell command autocompletion with Pipeline CLI for Bash, Zsh, Fish, and PowerShell by using the calyptia completion command. This section provides detailed steps for Bash and Zsh on macOS. For Linux-specific details and instructions for Fish and PowerShell, see the output of calyptia completion --help.
  1. Update or install bash-completion:
    brew install bash-completion
    
  2. In a shell initialization script, such as ~/.bashrc, add the following:
    source "$(brew --prefix bash-completion)/etc/bash_completion"
    eval "$(calyptia completion bash)"
    
  3. Restart the shell.
You can now press Tab on the command line to automatically complete Pipeline CLI commands.