diff options
author | Gokul Singaraju <goksing@gmail.com> | 2017-10-12 23:53:52 -0400 |
---|---|---|
committer | Gokul Singaraju <goksing@gmail.com> | 2017-10-12 23:54:00 -0400 |
commit | 0d3bbd92ce12ff1f2735a924e007641730dec2ff (patch) | |
tree | f66f7013845879b174d72fa10cd2d72b2c0565eb /veslibrary | |
parent | a32d00252c79f0e54b5d0b4dc090916b4d011f55 (diff) |
Fix readme and additional measurements
Issue-Id: VNFSDK-112
Change-Id: If53b8f8d5850f8e4a317ef79bedf73ea666d43c1
Signed-off-by: Gokul Singaraju <goksing@gmail.com>
Diffstat (limited to 'veslibrary')
4 files changed, 2 insertions, 6 deletions
diff --git a/veslibrary/ves_clibrary/VESreporting_vFW/README.md b/veslibrary/ves_clibrary/VESreporting_vFW/README.md index ff6ba25..598b207 100644 --- a/veslibrary/ves_clibrary/VESreporting_vFW/README.md +++ b/veslibrary/ves_clibrary/VESreporting_vFW/README.md @@ -1,8 +1,6 @@ PROJECT DESCRIPTION -“The content of this directory is currently under development and, at this stage, is not intended for demonstration and/or testing.” - --- This project contains the source code and scripts for the periodic generation of network measurement reports. The folder contains: diff --git a/veslibrary/ves_clibrary/VESreporting_vLB/README.md b/veslibrary/ves_clibrary/VESreporting_vLB/README.md index ff6ba25..598b207 100644 --- a/veslibrary/ves_clibrary/VESreporting_vLB/README.md +++ b/veslibrary/ves_clibrary/VESreporting_vLB/README.md @@ -1,8 +1,6 @@ PROJECT DESCRIPTION -“The content of this directory is currently under development and, at this stage, is not intended for demonstration and/or testing.” - --- This project contains the source code and scripts for the periodic generation of network measurement reports. The folder contains: diff --git a/veslibrary/ves_clibrary/evel/evel-library/code/evel_library/evel_reporting_measurement.c b/veslibrary/ves_clibrary/evel/evel-library/code/evel_library/evel_reporting_measurement.c index 36c34da..38a1731 100644 --- a/veslibrary/ves_clibrary/evel/evel-library/code/evel_library/evel_reporting_measurement.c +++ b/veslibrary/ves_clibrary/evel/evel-library/code/evel_library/evel_reporting_measurement.c @@ -329,7 +329,7 @@ void evel_json_encode_report(EVEL_JSON_BUFFER * jbuf, { evel_json_open_object(jbuf); evel_enc_kv_string(jbuf, "name", measurement_group->name); - evel_json_open_named_list(jbuf, "measurements"); + evel_json_open_named_list(jbuf, "arrayOfFields"); /*********************************************************************/ /* Measurements list. */ diff --git a/veslibrary/ves_clibrary/evel/evel-library/code/evel_library/evel_scaling_measurement.c b/veslibrary/ves_clibrary/evel/evel-library/code/evel_library/evel_scaling_measurement.c index b3e73c9..7920d81 100644 --- a/veslibrary/ves_clibrary/evel/evel-library/code/evel_library/evel_scaling_measurement.c +++ b/veslibrary/ves_clibrary/evel/evel-library/code/evel_library/evel_scaling_measurement.c @@ -3518,7 +3518,7 @@ void evel_json_encode_measurement(EVEL_JSON_BUFFER * jbuf, { evel_json_open_object(jbuf); evel_enc_kv_string(jbuf, "name", measurement_group->name); - evel_json_open_opt_named_list(jbuf, "measurements"); + evel_json_open_opt_named_list(jbuf, "arrayOfFields"); /*********************************************************************/ /* Measurements list. */ |