// protocol buffers documentation: https://developers.google.com/protocol-buffers/docs/proto3 syntax = "proto3"; package distributed_cybersecurity; import "google/protobuf/empty.proto"; import "monitoring.proto"; service DistributedCyberSecurityService { // rpc that triggers the attack detection loop rpc DetectAttack (google.protobuf.Empty) returns (google.protobuf.Empty) {} // receiving KPIs from monitored devices (packed processors) rpc ReportKpi(monitoring.KpiList) returns (google.protobuf.Empty) {} }