Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions docs/installation/how-to-use-volcano-vgpu.md
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ kubectl create -f https://raw.githubusercontent.com/Project-HAMi/volcano-vgpu-de
Check the node status, it is ok if `volcano.sh/vgpu-number` is included in the allocatable resources.

```shell
kubectl get node {node name} -oyaml
kubectl get node <node-name> -oyaml
```

```yaml
Expand Down Expand Up @@ -129,5 +129,5 @@ If you do not request GPUs when using the device plugin with NVIDIA images, all
volcano-scheduler-metrics records all GPU usage and limits. Visit the following address to get the metrics.

```shell
curl {volcano scheduler cluster ip}:8080/metrics
curl <scheduler-ip>:8080/metrics
```
4 changes: 2 additions & 2 deletions docs/userguide/monitoring/device-allocation.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,10 @@ title: Cluster device allocation endpoint
sidebar_label: Cluster device allocation
---

You can get the overview of cluster device allocation and limit by visiting `{scheduler node ip}:31993/metrics`, or add it to a prometheus endpoint, as the command below:
You can get the overview of cluster device allocation and limit by visiting `<scheduler-ip>:31993/metrics`, or add it to a prometheus endpoint, as the command below:

```bash
curl {scheduler node ip}:31993/metrics
curl <scheduler-ip>:31993/metrics
```

It contains the following metrics:
Expand Down
4 changes: 2 additions & 2 deletions docs/userguide/monitoring/real-time-device-usage.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,10 @@ title: Real-time device usage endpoint
sidebar_label: Real-time device usage
---

You can get the real-time device memory and core utilization by visiting `{GPU node ip}:31992/metrics`, or add it to a prometheus endpoint, as the command below:
You can get the real-time device memory and core utilization by visiting `<GPU-node-ip>:31992/metrics`, or add it to a prometheus endpoint, as the command below:

```bash
curl {GPU node ip}:31992/metrics
curl <GPU-node-ip>:31992/metrics
```

It contains the following metrics:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ kubectl create -f https://raw.githubusercontent.com/Project-HAMi/volcano-vgpu-de
Check the node status, it is ok if `volcano.sh/vgpu-number` is included in the allocatable resources.

```shell
kubectl get node {node name} -oyaml
kubectl get node <node-name> -oyaml
```

```yaml
Expand Down Expand Up @@ -129,5 +129,5 @@ If you do not request GPUs when using the device plugin with NVIDIA images, all
volcano-scheduler-metrics records all GPU usage and limits. Visit the following address to get the metrics.

```shell
curl {volcano scheduler cluster ip}:8080/metrics
curl <scheduler-ip>:8080/metrics
```
2 changes: 1 addition & 1 deletion docs/userguide/volcano-vgpu/nvidia-gpu/monitor.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ title: Monitor volcano-vgpu
volcano-scheduler-metrics records all GPU usage and limits. Visit the following address to get the metrics.

```shell
curl {volcano scheduler cluster ip}:8080/metrics
curl <scheduler-ip>:8080/metrics
```

It contains the following metrics:
Expand Down
Loading