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

     1  syntax = "proto2";
     2  
     3  package cloudprober.surfacer.file;
     4  
     5  option go_package = "github.com/google/cloudprober/surfacers/file/proto";
     6  
     7  message SurfacerConf {
     8    // Where to write the results. If left unset, file surfacer writes to the
     9    // standard output.
    10    optional string file_path = 1;
    11    optional string prefix = 2 [default = "cloudprober"];
    12  
    13    // Compress data before writing to the file.
    14    optional bool compression_enabled = 3 [default = false];
    15  }