Command-Line Help for am
This document contains the help content for the am
command-line program.
am
Autometrics Companion CLI app
Usage: am [OPTIONS] <COMMAND>
Subcommands:
start
β Start scraping the specified endpoint(s), while also providing a web interface to inspect the autometrics datasystem
β Manage am related system settings. Such as cleaning up downloaded Prometheus, Pushgateway installsexplore
β Open up the existing Explorerproxy
β Use am as a proxy to another prometheus instanceinit
β Create a newam.toml
file interactively with sensible defaultsdiscord
β Open the Fiberplane discord to receive help, send suggestions or discuss various things related to Autometrics and theam
CLIupdate
β Run the updaterlist
β List the functions in a projectinstrument
β Instrument a project entirely
Options:
-v
,--verbose
β Enable verbose logging. By enabling this you are also able to use RUST_LOG environment variable to change the log levels of other modules--config-file <CONFIG_FILE>
β Use the following file to define defaults for am
am start
Start scraping the specified endpoint(s), while also providing a web interface to inspect the autometrics data
Usage: am start [OPTIONS] [METRICS_ENDPOINTS]...
Arguments:
<METRICS_ENDPOINTS>
β The endpoint(s) that Prometheus will scrape.
Options:
-
--prometheus-version <PROMETHEUS_VERSION>
β The Prometheus version to use. It will be downloaded if am has not downloaded it alreadyDefault value:
v2.47.2
-
--scrape-interval <SCRAPE_INTERVAL>
β The default scrape interval for all Prometheus jobs -
-l
,--listen-address <LISTEN_ADDRESS>
β The listen address for the web server of amDefault value:
127.0.0.1:6789
-
-p
,--pushgateway-enabled <PUSHGATEWAY_ENABLED>
β Enable pushgatewayPossible values:
true
,false
-
--pushgateway-version <PUSHGATEWAY_VERSION>
β The pushgateway version to useDefault value:
v1.6.2
-
--static-assets-url <STATIC_ASSETS_URL>
Default value:
https://explorer.autometrics.dev
-
-d
,--ephemeral
β Whenever to clean up files created by Prometheus/Pushgateway after successful execution -
--no-rules
β Whenever to NOT load the autometrics rules file into Prometheus -
--scrape-self
β Whenever to instruct Prometheus to scrape thisam
server as wellDefault value:
false
am system
Manage am related system settings. Such as cleaning up downloaded Prometheus, Pushgateway installs
Usage: am system <COMMAND>
Subcommands:
prune
β Delete all locally downloaded binaries
am system prune
Delete all locally downloaded binaries
Usage: am system prune [OPTIONS]
Options:
-
-f
,--force
β Force the cleanup without asking for confirmationDefault value:
false
am explore
Open up the existing Explorer
Usage: am explore [OPTIONS]
Options:
-
--prometheus-endpoint <PROMETHEUS_ENDPOINT>
β The Prometheus endpoint that will be passed to Explorer -
--explorer-endpoint <EXPLORER_ENDPOINT>
β Which endpoint to open in the browserDefault value:
https://explorer.autometrics.dev/
am proxy
Use am as a proxy to another prometheus instance
Usage: am proxy [OPTIONS]
Options:
-
-l
,--listen-address <LISTEN_ADDRESS>
β The listen address for the web server of amDefault value:
127.0.0.1:6789
-
--prometheus-url <PROMETHEUS_URL>
β The upstream Prometheus URL -
--static-assets-url <STATIC_ASSETS_URL>
Default value:
https://explorer.autometrics.dev
am init
Create a new am.toml
file interactively with sensible defaults
Usage: am init [OPTIONS]
Options:
-
--output <OUTPUT>
β Where the file should be outputted to. Defaults to current directoryDefault value:
./am.toml
-
--force
β Whenever to forcefully override an existingam.toml
file, if it already exists
am discord
Open the Fiberplane discord to receive help, send suggestions or discuss various things related to Autometrics and the am
CLI
Usage: am discord
am update
Run the updater
Usage: am update [OPTIONS]
Options:
-f
,--force
β Whenever to ignore Homebrew checks and forcefully update
am list
List the functions in a project
Usage: am list <COMMAND>
Subcommands:
single
β List functions in a single project, giving the language implementationall
β List functions in all projects under the given directory, detecting languages on a best-effort basis
am list single
List functions in a single project, giving the language implementation
Usage: am list single [OPTIONS] --language <LANGUAGE> <ROOT>
Arguments:
<ROOT>
β Root of the project to start the search on:
- For Rust projects it must be where the Cargo.toml lie,
- For Go projects it must be the root of the repository,
- For Python projects it must be the root of the library,
- For Typescript projects it must be where the package.json lie.
Options:
-l
,--language <LANGUAGE>
β Language to detect autometrics functions for. Valid values are:
- 'rust' or 'rs' for Rust,
- 'go' for Golang,
- 'typescript', 'ts', 'javascript', or 'js' for Typescript/Javascript,
- 'python' or 'py' for Python.
-
-a
,--all-functions
β List all functions instead of only the autometricized ones (defaults to false)Default value:
false
-
-p
,--pretty
β Pretty print the resulting JSON (defaults to false)Default value:
false
am list all
List functions in all projects under the given directory, detecting languages on a best-effort basis
Usage: am list all [OPTIONS] <ROOT>
Arguments:
<ROOT>
β Main directory to start the subprojects search on. am currently detects Rust (Cargo.toml), Typescript (package.json), and Golang (go.mod) projects
Options:
-
-p
,--pretty
β Pretty print the resulting JSON (defaults to false)Default value:
false
am instrument
Instrument a project entirely.
IMPORTANT: This will add code in your files! If you want to easily undo the effects of this command, stage your work in progress (using git add
or similar) So that a command like git restore .
can undo all unstaged changes, leaving your work in progress alone.
Usage: am instrument <COMMAND>
Subcommands:
single
β Instrument functions in a single project, giving the language implementationall
β Instrument functions in all projects under the given directory, detecting languages on a best-effort basis
am instrument single
Instrument functions in a single project, giving the language implementation
IMPORTANT: This will add code in your files! If you want to easily undo the effects of this command, stage your work in progress (using git add
or similar) So that a command like git restore .
can undo all unstaged changes, leaving your work in progress alone.
Usage: am instrument single [OPTIONS] --language <LANGUAGE> <ROOT>
Arguments:
<ROOT>
β Root of the project to start the search on:
- For Rust projects it must be where the Cargo.toml lie,
- For Go projects it must be the root of the repository,
- For Python projects it must be the root of the library,
- For Typescript projects it must be where the package.json lie.
Options:
-l
,--language <LANGUAGE>
β Language to detect autometrics functions for. Valid values are:
- 'rust' or 'rs' for Rust,
- 'go' for Golang,
- 'typescript', 'ts', 'javascript', or 'js' for Typescript/Javascript,
- 'python' or 'py' for Python.
-e
,--exclude <PATTERNS>
β A list of patterns to exclude from instrumentation. The patterns follow .gitignore rules, so--exclude "/vendor/"
will exclude all the vendor subdirectory only at the root, and adding a pattern that starts with!
will unignore a file or directory
am instrument all
Instrument functions in all projects under the given directory, detecting languages on a best-effort basis.
IMPORTANT: This will add code in your files! If you want to easily undo the effects of this command, stage your work in progress (using git add
or similar) So that a command like git restore .
can undo all unstaged changes, leaving your work in progress alone.
Usage: am instrument all [OPTIONS] <ROOT>
Arguments:
<ROOT>
β Main directory to start the subprojects search on. am currently detects Rust (Cargo.toml), Typescript (package.json), and Golang (go.mod) projects
Options:
-e
,--exclude <PATTERNS>
β A list of patterns to exclude from instrumentation. The patterns follow .gitignore rules, so--exclude "/vendor/"
will exclude all the vendor subdirectory only at the root, and adding a pattern that starts with!
will unignore a file or directory
This document was generated automatically by
clap-markdown
(opens in a new tab).