Update reference docs. (#3231)

This commit is contained in:
Martin Taillefer 2019-02-11 21:16:26 -08:00 committed by GitHub
parent e9112e7a65
commit 0a3755b48e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 1174 additions and 1 deletions

File diff suppressed because it is too large Load Diff

View File

@ -50,6 +50,51 @@ Default value is localhost:24224</p>
logs. Default behaviour is a string representation including
unit.</p>
</td>
</tr>
<tr id="Params-instance_buffer_size">
<td><code>instanceBufferSize</code></td>
<td><code>int64</code></td>
<td>
<p>Controls the size of the queue of log entries awaiting processing by the
data push goroutine. This impacts the overall size of the backlog of
log entries that the handler will accept. If the handler falls behind and
the number of outstanding instances exceeds this limit, the handler will
begin to drop log entries.
Defaults to 1024.</p>
</td>
</tr>
<tr id="Params-max_batch_size_bytes">
<td><code>maxBatchSizeBytes</code></td>
<td><code>int64</code></td>
<td>
<p>Controls the number of data bytes that are encoded and buffered by the handler before
they are pushed to the fluentd backend. This impacts the size and frequency of requests
sent to the fluentd backend. Once the buffer exceeds this limit, the handler will attempt to push
data to the backend.
Defaults to 8,388,608 (8 MiB).</p>
</td>
</tr>
<tr id="Params-push_interval_duration">
<td><code>pushIntervalDuration</code></td>
<td><code><a href="https://developers.google.com/protocol-buffers/docs/reference/google.protobuf#duration">google.protobuf.Duration</a></code></td>
<td>
<p>Duration interval for pushing batched data to the fluentd backend. At least once every duration,
the handler will attempt to push data.
Default to 1m.</p>
</td>
</tr>
<tr id="Params-push_timeout_duration">
<td><code>pushTimeoutDuration</code></td>
<td><code><a href="https://developers.google.com/protocol-buffers/docs/reference/google.protobuf#duration">google.protobuf.Duration</a></code></td>
<td>
<p>Timeout duration for pushing batched data to the fluentd backend. If a request takes longer than
the configured timeout, the request will be cancelled and dropped.
Default to 1m.</p>
</td>
</tr>
</tbody>

View File

@ -38,6 +38,8 @@ spec:
destinationOwner: destination.owner | &quot;Unknown&quot;
destinationWorkloadName: destination.workload.name | &quot;Unknown&quot;
destinationWorkloadNamespace: destination.workload.namespace | &quot;Unknown&quot;
destinationServiceName: destination.service.name | &quot;Unknown&quot;
destinationServiceNamespace: destination.service.namespace | &quot;Unknown&quot;
apiProtocol: api.protocol | &quot;Unknown&quot;
contextProtocol: context.protocol | &quot;Unknown&quot;
</code></pre>
@ -121,6 +123,22 @@ spec:
<td>
<p>UID of the destination workload</p>
</td>
</tr>
<tr id="Template-destination_service_namespace">
<td><code>destinationServiceNamespace</code></td>
<td><code>string</code></td>
<td>
<p>Namespace of the destination Service</p>
</td>
</tr>
<tr id="Template-destination_service_name">
<td><code>destinationServiceName</code></td>
<td><code>string</code></td>
<td>
<p>Name of the destination Service</p>
</td>
</tr>
<tr id="Template-context_protocol">

View File

@ -23,7 +23,7 @@ spec:
startTime: request.time
endTime: response.time
clientSpan: (context.reporter.local | true) == false
rewriteClientSpanId: &quot;false&quot;
rewriteClientSpanId: false
spanTags:
http.method: request.method | &quot;&quot;
http.status_code: response.code | 200