Skip to content

Commit 9b8f75b

Browse files
committed
add profiles linking to 16.0 docker images
1 parent 3b16b6f commit 9b8f75b

File tree

2 files changed

+36
-1
lines changed

2 files changed

+36
-1
lines changed

internal/beater/beater.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -834,7 +834,7 @@ func docappenderConfig(
834834
// This formula yields the following max requests for APM Server sized:
835835
// 1 2 4 8 15 30
836836
// 10 12 14 19 28 46
837-
maxRequests := int(float64(10) + memLimit*1.5)
837+
maxRequests := int(float64(10) + memLimit * 8.0)
838838
if maxRequests > 60 {
839839
maxRequests = 60
840840
}
Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
user_name = "USER"
2+
3+
# APM bench
4+
5+
stack_version = "8.16.0-SNAPSHOT"
6+
ess_region = "gcp-us-west2"
7+
deployment_template = "gcp-cpu-optimized"
8+
9+
worker_instance_type = "c6i.xlarge"
10+
worker_region = "us-west-2"
11+
12+
# Elastic Cloud
13+
14+
apm_server_size = "8g"
15+
apm_server_zone_count = 1
16+
17+
elasticsearch_size = "64g"
18+
elasticsearch_zone_count = 2
19+
20+
docker_image_override = {
21+
"elasticsearch":"docker.elastic.co/cloud-release/elasticsearch-cloud-ess",
22+
"kibana":"docker.elastic.co/cloud-release/kibana-cloud",
23+
"apm":"docker.elastic.co/observability-ci/elastic-agent",
24+
}
25+
26+
docker_image_tag_override = {
27+
"elasticsearch":"8.16.0-SNAPSHOT",
28+
"kibana":"8.16.0-SNAPSHOT",
29+
"apm":"8.16.0-SNAPSHOT-rubenvanstaden-1729630226",
30+
}
31+
32+
# Standalone
33+
34+
standalone_apm_server_instance_size = "c6i.xlarge"
35+
standalone_moxy_instance_size = "c6i.2xlarge"

0 commit comments

Comments
 (0)