Sha256: 4a8fad7f377f8ef07987da5c278e7a0a86dde9ceb379193f92c6a7481fe032ca
Contents?: true
Size: 473 Bytes
Versions: 2
Compression:
Stored size: 473 Bytes
Contents
syntax = "proto3"; package service.logging; import "google/protobuf/timestamp.proto"; message Log { message Context { google.protobuf.Timestamp timestamp = 1; string host_or_ip = 2; string service_name = 3; string user = 4; } enum Level { DEBUG = 0; INFO = 1; WARN = 2; ERROR = 3; FATAL = 4; } Context context = 1; Level level = 2; string message = 3; } message Batch { string type = 1; repeated Log batch = 2; }
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
fluent-plugin-protobuf-http-0.3.1 | test/data/protos/log.proto |
fluent-plugin-protobuf-http-0.3.0 | test/data/protos/log.proto |