Skip to content
This repository has been archived by the owner on Nov 5, 2021. It is now read-only.

Commit

Permalink
Config proto update
Browse files Browse the repository at this point in the history
  • Loading branch information
mfboulos committed Nov 24, 2019
1 parent be9e0ca commit 71efa3f
Showing 1 changed file with 10 additions and 1 deletion.
11 changes: 10 additions & 1 deletion probes/http/proto/config.proto
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,9 @@ syntax = "proto2";

package cloudprober.probes.http;

// Next tag: 15
import "github.com/google/cloudprober/metrics/payload/proto/config.proto";

// Next tag: 17
message ProbeConf {
enum ProtocolType {
HTTP = 0;
Expand Down Expand Up @@ -76,4 +78,11 @@ message ProbeConf {
// NOTE: This field is now deprecated and will be removed after the v0.10.3
// releases.
optional int32 requests_interval_msec = 99 [default = 25];

// Output metrics options, where output is the response body returned by the
// http probe process, over stdout for ONCE probes, and through ProbeReply
// for SERVER probes. Cloudprober expects variables to be in the following
// format in the output:
// var1 value1 (for example: total_errors 589)
optional metrics.payload.OutputMetricsOptions output_metrics_options = 16;
}

0 comments on commit 71efa3f

Please sign in to comment.