Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

gRPC version service + fix falco version #872

Merged
merged 17 commits into from
Feb 7, 2020
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
docs(userspace/falco): document version protobuf
Signed-off-by: Leonardo Di Donato <leodidonato@gmail.com>
  • Loading branch information
leodido committed Feb 5, 2020
commit 0359cbedd436740e54efdc94b07dbefe5d6e4a0a
7 changes: 5 additions & 2 deletions userspace/falco/version.proto
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
syntax = "proto3";

package falco;
package falco.version;

option go_package = "github.com/falcosecurity/client-go/pkg/api/version";

Expand All @@ -10,11 +10,14 @@ service service {
rpc version(request) returns (response);
}

// The `request` message is an empty one.
message request
{
// empty message
}

// The `response` message contains the version of Falco.
// It provides the whole version as a string and also
// its parts as per semver 2.0 specification (https://semver.org).
message response
{
string version = 1;
Expand Down