mirror of
https://github.com/apache/druid.git
synced 2025-02-07 02:28:19 +00:00
* move ProtoBufInputRowParser from processing module to protobuf extensions * Ported PR #3509 * add DynamicMessage * fix local test stuff that slipped in * add license header * removed redundant type name * removed commented code * fix code style * rename ProtoBuf -> Protobuf * pom.xml: shade protobuf classes, handle .desc resource file as binary file * clean up error messages * pick first message type from descriptor if not specified * fix protoMessageType null check. add test case * move protobuf-extension from contrib to core * document: add new configuration keys, and descriptions * update document. add examples * move protobuf-extension from contrib to core (2nd try) * touch * include protobuf extensions in the distribution * fix whitespace * include protobuf example in the distribution * example: create new pb obj everytime * document: use properly quoted json * fix whitespace * bump parent version to 0.10.1-SNAPSHOT * ignore Override check * touch
12 lines
216 B
Protocol Buffer
12 lines
216 B
Protocol Buffer
syntax = "proto3";
|
|
message Metrics {
|
|
string unit = 1;
|
|
string http_method = 2;
|
|
int32 value = 3;
|
|
string timestamp = 4;
|
|
string http_code = 5;
|
|
string page = 6;
|
|
string metricType = 7;
|
|
string server = 8;
|
|
}
|