Skip to content

Commit

Permalink
protofile
Browse files Browse the repository at this point in the history
  • Loading branch information
mskKandula committed Jan 11, 2024
1 parent 61696c7 commit 014484f
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions GrpcPython/OutlierDetection/outliers.proto
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
syntax = "proto3";
import "google/protobuf/timestamp.proto";
package pb;

option go_package = "github.com/mskKandula/python-go/grpc/pb";

message Metric {
google.protobuf.Timestamp time = 1;
string name = 2;
double value = 3;
}

message OutliersRequest {
repeated Metric metrics = 1;
}

message OutliersResponse {
repeated int32 indices = 1;
}

service Outliers {
rpc Detect(OutliersRequest) returns (OutliersResponse) {}
}

0 comments on commit 014484f

Please sign in to comment.