We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8b4b174 commit be78cf9Copy full SHA for be78cf9
src/bin/am/commands.rs
@@ -43,6 +43,7 @@ pub enum SubCommands {
43
System(system::Arguments),
44
45
/// Open up the existing Explorer
46
+ #[clap(alias = "explorer")]
47
Explore(explore::Arguments),
48
49
/// Create a new `am.toml` file interactively with sensible defaults
src/bin/am/commands/explore.rs
@@ -10,7 +10,7 @@ pub struct Arguments {
10
prometheus_endpoint: Option<Url>,
11
12
/// Which endpoint to open in the browser
13
- #[clap(long, env, default_value = "http://localhost:6789/explorer")]
+ #[clap(long, env, default_value = "https://explorer.autometrics.dev/")]
14
explorer_endpoint: Url,
15
}
16
0 commit comments