1// Copyright 2015 The Chromium Authors. All rights reserved.
2// Use of this source code is governed by a BSD-style license that can be
3// found in the LICENSE file.
4syntax = "proto2";
5
6package ts_mon.proto;
7
8message Task {
9  enum TypeId { MESSAGE_TYPE_ID = 34049749; };
10  optional string proxy_environment = 5;
11  optional string acquisition_name = 10;
12  optional string service_name = 20;
13  optional string job_name = 30;
14  optional string data_center = 40;
15  optional string host_name = 50;
16  optional int32 task_num = 60;
17  optional string proxy_zone = 70;
18}
19