Newer
Older
// protocol buffers documentation: https://developers.google.com/protocol-buffers/docs/proto3
syntax = "proto3";
Carlos Natalino Da Silva
committed
package centralized_attack_detector;
Carlos Natalino Da Silva
committed
service CentralizedAttackDetectorService {
Lluis Gifre Renom
committed
rpc NotifyServiceUpdate (context.Service ) returns (context.Empty) {}
Lluis Gifre Renom
committed
rpc DetectAttack (context.Empty ) returns (context.Empty) {}
// rpc called by the distributed component to report KPIs
rpc ReportSummarizedKpi (monitoring.KpiList) returns (context.Empty) {}
Lluis Gifre Renom
committed
rpc ReportKpi (monitoring.KpiList) returns (context.Empty) {}