You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: articles/operator-nexus/howto-baremetal-run-read.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -102,7 +102,7 @@ In the response, an HTTP status code of 202 is returned as the operation is perf
102
102
## Checking command status and viewing output
103
103
104
104
105
-
Sample output looks something like below. It prints the top 5K characters of the result to the screen for convenience and provides a short-lived link to the storage blob containing the command execution result. You can use the link to download the zipped output file (tar.gz).
105
+
Sample output looks something like below. It prints the top 4K characters of the result to the screen for convenience and provides a short-lived link to the storage blob containing the command execution result. You can use the link to download the zipped output file (tar.gz).
Copy file name to clipboardExpand all lines: articles/operator-nexus/howto-cluster-metrics-configuration-management.md
+6-5Lines changed: 6 additions & 5 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -66,6 +66,8 @@ Specifying `--no-wait --debug` options in az cli command will result in the exec
66
66
| METRIC_TO_ENABLE_1 | Optional metric1 that have been chosen to be enabled in addition to the default metrics |
67
67
| METRIC_TO_ENABLE_2 | Optional metric2 that have been chosen to be enabled in addition to the default metrics |
68
68
69
+
Specifying `--no-wait --debug` options in az cli command will result in the execution of this command asynchronously. See [how to track asynchronous operations](howto-track-async-operations-cli.md) for more details.
70
+
69
71
## Retrieving a metrics configuration
70
72
71
73
After a metrics configuration is created, it can be retrieved using a `az rest` command:
@@ -81,9 +83,7 @@ This command will return a JSON representation of the metrics configuration.
81
83
82
84
## Updating a metrics configuration
83
85
84
-
Much like the creation of a metrics configuration, an update can be performed to change the configuration.
85
-
86
-
This command is used to patch properties of the provided metrics configuration of cluster, or update the tags assigned to the metrics configuration.
86
+
Much like the creation of a metrics configuration, an update can be performed to change the configuration or update the tags assigned to the metrics configuration.
87
87
88
88
```azurecli
89
89
az networkcloud cluster metricsconfiguration update \
@@ -96,7 +96,7 @@ az networkcloud cluster metricsconfiguration update \
96
96
97
97
The `collection-interval` can be updated independently of `enabled-metrics` list. Omit fields that aren't being changed.
98
98
99
-
Specifying `--debug` in az cli will result in the tracking operation status in the returned command output. This operation status can be queried to monitor the progress of the operation. See: [How-to track asynchronous operations](howto-track-async-operations-cli.md).
99
+
Specifying `--no-wait --debug`options in az cli command will result in the execution of this command asynchronously. See[how to track asynchronous operations](howto-track-async-operations-cli.md) for more details.
100
100
101
101
## Deleting a metrics configuration
102
102
@@ -108,5 +108,6 @@ az networkcloud cluster metricsconfiguration delete \
108
108
--resource-group "<RESOURCE_GROUP>"
109
109
```
110
110
111
-
Specifying `--debug` in az cli will result in the tracking operation status in the returned command output. This operation status can be queried to monitor the progress of the operation. See: [How-to track asynchronous operations](howto-track-async-operations-cli.md).
111
+
Specifying `--no-wait --debug` options in az cli command will result in the execution of this command asynchronously. See [how to track asynchronous operations](howto-track-async-operations-cli.md) for more details.
Copy file name to clipboardExpand all lines: articles/operator-nexus/howto-configure-cluster.md
+3-1Lines changed: 3 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -152,9 +152,11 @@ az networkcloud cluster deploy \
152
152
--name "$CLUSTER_NAME" \
153
153
--resource-group "$CLUSTER_RESOURCE_GROUP" \
154
154
--subscription "$SUBSCRIPTION_ID" \
155
-
--no-wait
155
+
--no-wait --debug
156
156
```
157
157
158
+
This command runs synchronously. If you wish to skip waiting for the command to complete, specify the `--no-wait --debug` options. In that case, follow the instructions on [how to track asynchronous operation](https://learn.microsoft.com/en-us/azure/operator-nexus/howto-track-async-operations-cli).
0 commit comments