X-Git-Url: https://gerrit.onap.org/r/gitweb?a=blobdiff_plain;f=vnfs%2FVESreporting_vLB5.0%2Fvpp_measurement_reporter.c;h=66368431b414e6b43d101a8b93b2aeb2b19590e8;hb=HEAD;hp=78050498f5e3949d89500120568d8a56d85cc0ce;hpb=3d9c60866a1ca4f083b4acce5276eef498d7250b;p=demo.git diff --git a/vnfs/VESreporting_vLB5.0/vpp_measurement_reporter.c b/vnfs/VESreporting_vLB5.0/vpp_measurement_reporter.c index 78050498..66368431 100644 --- a/vnfs/VESreporting_vLB5.0/vpp_measurement_reporter.c +++ b/vnfs/VESreporting_vLB5.0/vpp_measurement_reporter.c @@ -122,6 +122,10 @@ int main(int argc, char** argv) char* vnic = argv[3]; char* fqdn2 = NULL; int port2 = 0; + char* caFile = "/opt/config/onap-ca.crt"; + char* userName = "sample1"; + char* passWord = "sample1"; + if(argc == 6) { @@ -129,6 +133,8 @@ int main(int argc, char** argv) port2 = atoi(argv[4]); vnic = argv[5]; } + else + vnic = argv[3]; MEASUREMENT_VNIC_PERFORMANCE * vnic_performance = NULL; @@ -155,15 +161,15 @@ int main(int argc, char** argv) NULL, /* optional path */ NULL, /* optional topic */ 100, /* Ring Buffer size */ - 0, /* HTTPS? */ + 1, /* HTTPS? */ NULL, /* cert file */ NULL, /* key file */ - NULL, /* ca info */ + caFile, /* ca info */ NULL, /* ca file */ 0, /* verify peer */ 0, /* verify host */ - "sample1", /* Username */ - "sample1", /* Password */ + userName, /* Username */ + passWord, /* Password */ "sample1", /* Username2 */ "sample1", /* Password2 */ NULL, /* Source ip */ @@ -233,7 +239,7 @@ int main(int argc, char** argv) } vpp_m = evel_new_measurement(READ_INTERVAL,"vLoadBalancer","TrafficStats_1.2.3.4"); - vnic_performance = (MEASUREMENT_VNIC_PERFORMANCE *)evel_measurement_new_vnic_performance("eth0", "true"); + vnic_performance = (MEASUREMENT_VNIC_PERFORMANCE *)evel_measurement_new_vnic_performance(vnic, "true"); evel_meas_vnic_performance_add(vpp_m, vnic_performance); if(vpp_m != NULL) {