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