github.com/google/cloudprober@v0.11.3/surfacers/pubsub/proto/config.proto (about)

     1  syntax = "proto2";
     2  
     3  package cloudprober.surfacer.pubsub;
     4  
     5  option go_package = "github.com/google/cloudprober/surfacers/pubsub/proto";
     6  
     7  message SurfacerConf {
     8    // GCP project name for pubsub. If not specified and running on GCP,
     9    // project is used.
    10    optional string project = 1;
    11  
    12    // Pubsub topic name.
    13    // Default is cloudprober-{hostname}
    14    optional string topic_name = 2;
    15  
    16    // Compress data before writing to pubsub.
    17    optional bool compression_enabled = 4 [default = false];
    18  }