Skip to content

Commit

Permalink
add profiles linking to 16.0 docker images
Browse files Browse the repository at this point in the history
  • Loading branch information
rubvs committed Oct 22, 2024
1 parent 3b16b6f commit 9b8f75b
Show file tree
Hide file tree
Showing 2 changed files with 36 additions and 1 deletion.
2 changes: 1 addition & 1 deletion internal/beater/beater.go
Original file line number Diff line number Diff line change
Expand Up @@ -834,7 +834,7 @@ func docappenderConfig(
// This formula yields the following max requests for APM Server sized:
// 1 2 4 8 15 30
// 10 12 14 19 28 46
maxRequests := int(float64(10) + memLimit*1.5)
maxRequests := int(float64(10) + memLimit * 8.0)
if maxRequests > 60 {
maxRequests = 60
}
Expand Down
35 changes: 35 additions & 0 deletions testing/benchmark/system-profiles/v5.tfvars
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
user_name = "USER"

# APM bench

stack_version = "8.16.0-SNAPSHOT"
ess_region = "gcp-us-west2"
deployment_template = "gcp-cpu-optimized"

worker_instance_type = "c6i.xlarge"
worker_region = "us-west-2"

# Elastic Cloud

apm_server_size = "8g"
apm_server_zone_count = 1

elasticsearch_size = "64g"
elasticsearch_zone_count = 2

docker_image_override = {
"elasticsearch":"docker.elastic.co/cloud-release/elasticsearch-cloud-ess",
"kibana":"docker.elastic.co/cloud-release/kibana-cloud",
"apm":"docker.elastic.co/observability-ci/elastic-agent",
}

docker_image_tag_override = {
"elasticsearch":"8.16.0-SNAPSHOT",
"kibana":"8.16.0-SNAPSHOT",
"apm":"8.16.0-SNAPSHOT-rubenvanstaden-1729630226",
}

# Standalone

standalone_apm_server_instance_size = "c6i.xlarge"
standalone_moxy_instance_size = "c6i.2xlarge"

0 comments on commit 9b8f75b

Please sign in to comment.