Skip to content

Commit 34bade9

Browse files
authored
Fix grafana describe examples (#457)
* fix grafana describe examples * update docs
1 parent 89b3ed0 commit 34bade9

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

docs/stackit_observability_grafana_describe.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,13 +16,13 @@ stackit observability grafana describe INSTANCE_ID [flags]
1616

1717
```
1818
Get details of the Grafana configuration of an Observability instance with ID "xxx"
19-
$ stackit observability credentials describe xxx
19+
$ stackit observability grafana describe xxx
2020
2121
Get details of the Grafana configuration of an Observability instance with ID "xxx" and show the initial admin password
22-
$ stackit observability credentials describe xxx --show-password
22+
$ stackit observability grafana describe xxx --show-password
2323
2424
Get details of the Grafana configuration of an Observability instance with ID "xxx" in JSON format
25-
$ stackit observability credentials describe xxx --output-format json
25+
$ stackit observability grafana describe xxx --output-format json
2626
```
2727

2828
### Options

internal/cmd/observability/grafana/describe/describe.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -44,13 +44,13 @@ func NewCmd(p *print.Printer) *cobra.Command {
4444
Example: examples.Build(
4545
examples.NewExample(
4646
`Get details of the Grafana configuration of an Observability instance with ID "xxx"`,
47-
"$ stackit observability credentials describe xxx"),
47+
"$ stackit observability grafana describe xxx"),
4848
examples.NewExample(
4949
`Get details of the Grafana configuration of an Observability instance with ID "xxx" and show the initial admin password`,
50-
"$ stackit observability credentials describe xxx --show-password"),
50+
"$ stackit observability grafana describe xxx --show-password"),
5151
examples.NewExample(
5252
`Get details of the Grafana configuration of an Observability instance with ID "xxx" in JSON format`,
53-
"$ stackit observability credentials describe xxx --output-format json"),
53+
"$ stackit observability grafana describe xxx --output-format json"),
5454
),
5555
RunE: func(cmd *cobra.Command, args []string) error {
5656
ctx := context.Background()

0 commit comments

Comments
 (0)