go.chromium.org/luci@v0.0.0-20240309015107-7cdc2e660f33/common/tsmon/examples/beep/dummy_project/dummy_project.proto (about)

     1  // Copyright 2019 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.
     4  
     5  // DummyProject is the Target schema used by tsmon to represent a dummy project.
     6  syntax = "proto3";
     7  
     8  option go_package = "go.chromium.org/luci/common/tsmon/examples/beep/dummy_project";
     9  
    10  message DummyProject {
    11    // The project id that uniquely identifies the dummy project owning the data.
    12    string project = 10;
    13  
    14    // The location (e.g., GCE zone, Metro, Lab, etc), where the project is
    15    // located.
    16    string location = 20;
    17  
    18    // Whether a given project is staging or not.
    19    bool is_staging = 40;
    20  }