Skip to content
This repository has been archived by the owner on Dec 6, 2024. It is now read-only.

Commit

Permalink
PR fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
tigrannajaryan committed Sep 3, 2019
1 parent 7fb755b commit e44be7f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions text/0000-opentelemetry-protocol.md
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ If the Client does not receive a response to a particular request after a config

- `Success` - telemetry data is successfully processed by the server. If the server receives an empty request (a request that does not carry any telemetry data) the server SHOULD respond with `Success`.

- `FailedNoneRetryable` - processing of telemetry data failed. The client MUST NOT retry sending the same telemetry data. The telemetry data MUST be dropped. This for example can happen when the request contains bad data and cannot be deserialized or otherwise processed by the server. The client SHOULD maintain a counter of such dropped data.
- `FailedNotRetryable` - processing of telemetry data failed. The client MUST NOT retry sending the same telemetry data. The telemetry data MUST be dropped. This for example can happen when the request contains bad data and cannot be deserialized or otherwise processed by the server. The client SHOULD maintain a counter of such dropped data.

- `FailedRetryable` - processing of telemetry data failed. The client SHOULD record the error and may retry exporting the same data. This can happen when the server is temporarily unable to process the data.

Expand Down Expand Up @@ -326,7 +326,7 @@ message ExportResponse {
// sending the same telemetry data. The telemetry data MUST be dropped.
// This for example can happen when the request contains bad data and
// cannot be deserialized or otherwise processed by the server.
FailedNoneRetryable = 1;
FailedNotRetryable = 1;
// Processing of telemetry data failed. The client SHOULD record the
// error and may retry exporting the same data after some time. This
Expand Down

0 comments on commit e44be7f

Please sign in to comment.