github.com/google/cloudprober@v0.11.3/surfacers/datadog/proto/config.proto (about) 1 syntax = "proto2"; 2 3 package cloudprober.surfacer.datadog; 4 5 option go_package = "github.com/google/cloudprober/surfacers/datadog/proto"; 6 7 // Surfacer config for datadog surfacer. 8 message SurfacerConf { 9 // Prefix to add to all metrics. 10 optional string prefix = 1 [default = "cloudprober"]; 11 12 // Datadog API key. If not set, DD_API_KEY env variable is used. 13 optional string api_key = 2; 14 15 // Datadog APP key. If not set, DD_APP_KEY env variable is used. 16 optional string app_key = 3; 17 18 // Datadog server, default: "api.datadoghq.com" 19 optional string server = 4; 20 }