Skip to content

Commit

Permalink
Merge pull request #7 from mnellemann/develop
Browse files Browse the repository at this point in the history
Include latency stats and bump version.
  • Loading branch information
mnellemann authored Jun 10, 2024
2 parents 11772cd + 542b885 commit 4fab60e
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
projectId = svci
projectGroup = biz.nellemann.svci
projectVersion = 0.2.1
projectVersion = 0.2.2
2 changes: 2 additions & 0 deletions src/main/java/biz/nellemann/svci/VolumeController.java
Original file line number Diff line number Diff line change
Expand Up @@ -623,6 +623,8 @@ List<Measurement> getVDiskStats(String stats) {
fieldsMap.put("wo", stat.wo);
fieldsMap.put("rb", stat.rb);
fieldsMap.put("wb", stat.wb);
fieldsMap.put("rl", stat.rl);
fieldsMap.put("wl", stat.wl);
log.trace("getVDiskStats() - tags: {}, fields: {}", tagsMap, fieldsMap);
measurementList.add(new Measurement(timestamp, tagsMap, fieldsMap));

Expand Down

0 comments on commit 4fab60e

Please sign in to comment.