diff options
author | Gokul Singaraju <goksing@gmail.com> | 2017-09-22 12:10:18 -0400 |
---|---|---|
committer | Gokul Singaraju <goksing@gmail.com> | 2017-09-22 12:10:54 -0400 |
commit | 4e4a33ceb4d6b7f5613e9aefd394ad41cb97e81e (patch) | |
tree | 6346a12fb2c5bbc8537d06f1d1a575195f398e05 /vnfs/VES5.0/evel/evel-library/code/evel_library/evel.h | |
parent | f61e1d721b1fc75656186b2f8277c8c7b3341676 (diff) |
Naming custom additional fields and filesys fields
Issue-Id: VNFRQTS-108
Change-Id: I751751bf1bc937ba5f7657370333a8a59b142eaf
Signed-Off-by: Gokul Singaraju <goksing@gmail.com>
Diffstat (limited to 'vnfs/VES5.0/evel/evel-library/code/evel_library/evel.h')
-rw-r--r-- | vnfs/VES5.0/evel/evel-library/code/evel_library/evel.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/vnfs/VES5.0/evel/evel-library/code/evel_library/evel.h b/vnfs/VES5.0/evel/evel-library/code/evel_library/evel.h index 6aceec30..0ae1713e 100644 --- a/vnfs/VES5.0/evel/evel-library/code/evel_library/evel.h +++ b/vnfs/VES5.0/evel/evel-library/code/evel_library/evel.h @@ -738,10 +738,10 @@ MEASUREMENT_DISK_USE * evel_measurement_new_disk_use_add(EVENT_MEASUREMENT * mea typedef struct measurement_fsys_use { char * filesystem_name; double block_configured; - int block_iops; + double block_iops; double block_used; double ephemeral_configured; - int ephemeral_iops; + double ephemeral_iops; double ephemeral_used; } MEASUREMENT_FSYS_USE; @@ -1955,10 +1955,10 @@ void evel_measurement_fsys_use_add(EVENT_MEASUREMENT * measurement, char * filesystem_name, double block_configured, double block_used, - int block_iops, + double block_iops, double ephemeral_configured, double ephemeral_used, - int ephemeral_iops); + double ephemeral_iops); /**************************************************************************//** * Add a Feature usage value name/value pair to the Measurement. |