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
2 changes: 1 addition & 1 deletion WORKSPACE
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
#
# A Bazel (http://bazel.io) workspace for the Google Cloud Endpoints runtime.

ISTIO_PROXY = "cea882799327dbea20ce849be36088a349a35f18"
ISTIO_PROXY = "2c9c1af3d6ac5ab4d295444c30acd42599edfcb3"

git_repository(
name = "nginx",
Expand Down
4 changes: 2 additions & 2 deletions src/nginx/t/ServiceControl.pm
Original file line number Diff line number Diff line change
Expand Up @@ -66,8 +66,8 @@ sub gen_metric_int64 {
}

my %time_distribution = (
buckets => 8,
growth => 10.0,
buckets => 29,
growth => 2.0,
scale => 1e-6
);

Expand Down
2 changes: 1 addition & 1 deletion tools/src/utils/service_control.go
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ type distOptions struct {
}

var (
timeDistOptions = distOptions{8, 10.0, 1e-6}
timeDistOptions = distOptions{29, 2.0, 1e-6}
sizeDistOptions = distOptions{8, 10.0, 1}
randomMatrics = map[string]bool{
"serviceruntime.googleapis.com/api/consumer/total_latencies": true,
Expand Down