-
Notifications
You must be signed in to change notification settings - Fork 54
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
test(metrics): PVC name included in volume metrics
ref: 5297 Signed-off-by: Chin-Ya Huang <chin-ya.huang@suse.com>
- Loading branch information
Showing
1 changed file
with
42 additions
and
0 deletions.
There are no files selected for viewing
42 changes: 42 additions & 0 deletions
42
...tent/manual/release-specific/v1.6.0/test-pvc-name-included-in-volume-metrics.md
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,42 @@ | ||
--- | ||
title: Test PVC Name included in the volume metrics | ||
--- | ||
|
||
## Related issue | ||
https://github.com/longhorn/longhorn/issues/5297 | ||
|
||
## Test step | ||
|
||
**Given** created 2 volumes (volume-1, volume-2) | ||
|
||
**When** PVC created for volume (volume-1) | ||
And attached volumes (volume-1, volume-2) | ||
|
||
**Then** metrics with `longhorn_volume_` prefix should include `pvc="volume-1"` | ||
```bash | ||
curl -sSL http://10.0.2.212:32744/metrics | grep longhorn_volume | grep ip-10-0-2-151 | grep volume-1 | ||
longhorn_volume_actual_size_bytes{node="ip-10-0-2-151",pvc="volume-1",volume="volume-1"} 0 | ||
longhorn_volume_capacity_bytes{node="ip-10-0-2-151",pvc="volume-1",volume="volume-1"} 1.073741824e+09 | ||
longhorn_volume_read_iops{node="ip-10-0-2-151",pvc="volume-1",volume="volume-1"} 0 | ||
longhorn_volume_read_latency{node="ip-10-0-2-151",pvc="volume-1",volume="volume-1"} 0 | ||
longhorn_volume_read_throughput{node="ip-10-0-2-151",pvc="volume-1",volume="volume-1"} 0 | ||
longhorn_volume_robustness{node="ip-10-0-2-151",pvc="volume-1",volume="volume-1"} 1 | ||
longhorn_volume_state{node="ip-10-0-2-151",pvc="volume-1",volume="volume-1"} 2 | ||
longhorn_volume_write_iops{node="ip-10-0-2-151",pvc="volume-1",volume="volume-1"} 0 | ||
longhorn_volume_write_latency{node="ip-10-0-2-151",pvc="volume-1",volume="volume-1"} 0 | ||
longhorn_volume_write_throughput{node="ip-10-0-2-151",pvc="volume-1",volume="volume-1"} 0 | ||
``` | ||
And metrics with `longhorn_volume_` prefix should include `pvc=""` for (volume-2) | ||
```bash | ||
> curl -sSL http://10.0.2.212:32744/metrics | grep longhorn_volume | grep ip-10-0-2-151 | grep volume-2 | ||
longhorn_volume_actual_size_bytes{node="ip-10-0-2-151",pvc="",volume="volume-2"} 0 | ||
longhorn_volume_capacity_bytes{node="ip-10-0-2-151",pvc="",volume="volume-2"} 1.073741824e+09 | ||
longhorn_volume_read_iops{node="ip-10-0-2-151",pvc="",volume="volume-2"} 0 | ||
longhorn_volume_read_latency{node="ip-10-0-2-151",pvc="",volume="volume-2"} 0 | ||
longhorn_volume_read_throughput{node="ip-10-0-2-151",pvc="",volume="volume-2"} 0 | ||
longhorn_volume_robustness{node="ip-10-0-2-151",pvc="",volume="volume-2"} 1 | ||
longhorn_volume_state{node="ip-10-0-2-151",pvc="",volume="volume-2"} 2 | ||
longhorn_volume_write_iops{node="ip-10-0-2-151",pvc="",volume="volume-2"} 0 | ||
longhorn_volume_write_latency{node="ip-10-0-2-151",pvc="",volume="volume-2"} 0 | ||
longhorn_volume_write_throughput{node="ip-10-0-2-151",pvc="",volume="volume-2"} 0 | ||
``` |