CodeCommitsIssuesPull requestsActionsInsightsSecurity
master

Branches

Tags

  • No tags available.
0Branches0Tags
Go to file
Add file
Code

Clone

HTTPS
SSH

Download ZIP

entry.proto

21lines · modecode

1package cloudflare;
2
3message 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}