Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
208 changes: 154 additions & 54 deletions mixer/v1/config/client/client_config.pb.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

20 changes: 20 additions & 0 deletions mixer/v1/config/client/client_config.proto
Original file line number Diff line number Diff line change
Expand Up @@ -79,6 +79,26 @@ message TransportConfig {
// Specify refresh interval to write mixer client statistics to Envoy share
// memory. If not specified, the interval is 10 seconds.
google.protobuf.Duration stats_update_interval = 5;

// Name of the cluster that will forward check calls to a pool of mixer
// servers. Defaults to "mixer_server". By using different names for
// checkCluster and reportCluster, it is possible to have one set of
// mixer servers handle check calls, while another set of mixer servers
// handle report calls.
//
// NOTE: Any value other than the default "mixer_server" will require the
// Istio Grafana dashboards to be reconfigured to use the new name.
string check_cluster = 6;

// Name of the cluster that will forward report calls to a pool of mixer
// servers. Defaults to "mixer_server". By using different names for
// checkCluster and reportCluster, it is possible to have one set of
// mixer servers handle check calls, while another set of mixer servers
// handle report calls.
//
// NOTE: Any value other than the default "mixer_server" will require the
// Istio Grafana dashboards to be reconfigured to use the new name.
string report_cluster = 7;
}

// Defines the client config for HTTP.
Expand Down
30 changes: 30 additions & 0 deletions mixer/v1/config/client/istio.mixer.v1.config.client.pb.html
Original file line number Diff line number Diff line change
Expand Up @@ -1150,6 +1150,36 @@ <h2 id="TransportConfig">TransportConfig</h2>
<p>Specify refresh interval to write mixer client statistics to Envoy share
memory. If not specified, the interval is 10 seconds.</p>

</td>
</tr>
<tr id="TransportConfig.check_cluster">
<td><code>checkCluster</code></td>
<td><code>string</code></td>
<td>
<p>Name of the cluster that will forward check calls to a pool of mixer
servers. Defaults to &ldquo;mixer_server&rdquo;. By using different names for
checkCluster and reportCluster, it is possible to have one set of
mixer servers handle check calls, while another set of mixer servers
handle report calls.</p>

<p>NOTE: Any value other than the default &ldquo;mixer_server&rdquo; will require the
Istio Grafana dashboards to be reconfigured to use the new name.</p>

</td>
</tr>
<tr id="TransportConfig.report_cluster">
<td><code>reportCluster</code></td>
<td><code>string</code></td>
<td>
<p>Name of the cluster that will forward report calls to a pool of mixer
servers. Defaults to &ldquo;mixer_server&rdquo;. By using different names for
checkCluster and reportCluster, it is possible to have one set of
mixer servers handle check calls, while another set of mixer servers
handle report calls.</p>

<p>NOTE: Any value other than the default &ldquo;mixer_server&rdquo; will require the
Istio Grafana dashboards to be reconfigured to use the new name.</p>

</td>
</tr>
</tbody>
Expand Down