Skip to content
Snippets Groups Projects
Commit 478d1a8e authored by Lluis Gifre Renom's avatar Lluis Gifre Renom
Browse files

Pre-merge code cleanup

parent 7a505ea2
No related branches found
No related tags found
2 merge requests!294Release TeraFlowSDN 4.0,!276Resolve "(CTTC) New Monitoring Module Testing and Debugging"
......@@ -19,19 +19,19 @@ import "context.proto";
import "kpi_manager.proto";
service KpiValueAPIService {
rpc StoreKpiValues (KpiValueList ) returns (context.Empty ) {}
rpc SelectKpiValues (KpiValueFilter ) returns (KpiValueList ) {}
rpc StoreKpiValues (KpiValueList ) returns (context.Empty ) {}
rpc SelectKpiValues (KpiValueFilter ) returns (KpiValueList ) {}
rpc GetKpiAlarms (kpi_manager.KpiId) returns (stream KpiAlarms) {}
}
message KpiValue {
kpi_manager.KpiId kpi_id = 1;
context.Timestamp timestamp = 2;
KpiValueType kpi_value_type = 3;
kpi_manager.KpiId kpi_id = 1;
context.Timestamp timestamp = 2;
KpiValueType kpi_value_type = 3;
}
message KpiValueList {
repeated KpiValue kpi_value_list = 1;
repeated KpiValue kpi_value_list = 1;
}
message KpiValueType {
......@@ -47,9 +47,9 @@ message KpiValueType {
}
message KpiValueFilter {
repeated kpi_manager.KpiId kpi_id = 1;
repeated context.Timestamp start_timestamp = 2;
repeated context.Timestamp end_timestamp = 3;
repeated kpi_manager.KpiId kpi_id = 1;
repeated context.Timestamp start_timestamp = 2;
repeated context.Timestamp end_timestamp = 3;
}
message KpiAlarms {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment