cloudflare/SortaSQL
Publicmirrored fromhttps://github.com/cloudflare/SortaSQL
entry.proto
21lines · modecode
15 years ago
| 1 | package cloudflare; |
| 2 | |
| 3 | message ZoneTimeBucket { |
| 4 | |
| 5 | message Counter { |
| 6 | required string key = 1; |
| 7 | required int64 value = 2; |
| 8 | } |
| 9 | |
| 10 | required string map_name = 1; |
| 11 | required string classification = 2; |
| 12 | required string doctype = 3; |
| 13 | required string pop = 4; |
| 14 | required string psource = 5; |
| 15 | required string result_id = 6; |
| 16 | required string db_key = 7; |
| 17 | required string db_path = 8; |
| 18 | optional string kv_map_file = 9; // If not null, use the kv_map within, not #10 |
| 19 | repeated Counter map_entry = 10; // Use a built in list of counters? |
| 20 | |
| 21 | } |