Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
18 commits
Select commit Hold shift + click to select a range
af70df6
[Usage Collection] Apply concurrency limits
afharo Feb 14, 2023
a01045d
Add more load tests
afharo Feb 14, 2023
824a395
Comply with eslint name casing rules
afharo Feb 14, 2023
35ebbf7
Stop applying concurrency limits. We want to merge the extra tests
afharo Feb 16, 2023
74f756f
Merge branch 'main' into usage_collection/apply-concurrency-limits
kibanamachine Feb 16, 2023
421688a
Merge branch 'main' into usage_collection/apply-concurrency-limits
dmlemeshko Feb 21, 2023
98c1f84
Increase timeout
afharo Feb 21, 2023
f493167
Merge branch 'main' of github.com:elastic/kibana into usage_collectio…
afharo Feb 22, 2023
c947695
[Elasticsearch] Limit maxSockets to 800 by default
afharo Feb 22, 2023
5bbe738
Merge branch 'main' into es-limit-max-sockets-to-800
kibanamachine Feb 23, 2023
f2b9a1d
Fix duplicated `sourceArgs` reference
afharo Feb 23, 2023
c4067b9
Merge branch 'main' into es-limit-max-sockets-to-800
dmlemeshko Feb 24, 2023
99d9201
Merge branch 'main' of github.com:elastic/kibana into es-limit-max-so…
afharo Feb 27, 2023
7b98929
Remove setting from the ftr config. The CI now builds the branch and …
afharo Feb 27, 2023
d8793f7
Adjust threshold for `api.telemetry.cluster_stats.no_cache
afharo Feb 27, 2023
c7296f7
Merge branch 'main' into es-limit-max-sockets-to-800
dmlemeshko Feb 27, 2023
861c75c
Merge branch 'main' into es-limit-max-sockets-to-800
kibanamachine Mar 6, 2023
28873d0
Merge branch 'main' of github.com:elastic/kibana into es-limit-max-so…
afharo Nov 28, 2023
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
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ test('set correct defaults', () => {
"idleSocketTimeout": "PT1M",
"ignoreVersionMismatch": false,
"maxIdleSockets": 256,
"maxSockets": Infinity,
"maxSockets": 800,
"password": undefined,
"pingTimeout": "PT30S",
"requestHeadersWhitelist": Array [
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ export const configSchema = schema.object({
hosts: schema.oneOf([hostURISchema, schema.arrayOf(hostURISchema, { minSize: 1 })], {
defaultValue: 'http://localhost:9200',
}),
maxSockets: schema.number({ defaultValue: Infinity, min: 1 }),
maxSockets: schema.number({ defaultValue: 800, min: 1 }),
Comment thread
afharo marked this conversation as resolved.
maxIdleSockets: schema.number({ defaultValue: 256, min: 1 }),
idleSocketTimeout: schema.duration({ defaultValue: '60s' }),
compression: schema.boolean({ defaultValue: false }),
Expand Down
2 changes: 1 addition & 1 deletion x-pack/plugins/monitoring/server/config.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ describe('config schema', () => {
"logFetchCount": 10,
"logQueries": false,
"maxIdleSockets": 256,
"maxSockets": Infinity,
"maxSockets": 800,
"pingTimeout": "PT30S",
"requestHeadersWhitelist": Array [
"authorization",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,9 +20,7 @@
},
"testData": {
"esArchives": [],
"kbnArchives": [
"x-pack/test/scalability/fixtures/kbn_archiver/1600-dataviews.json"
]
"kbnArchives": ["x-pack/test/scalability/fixtures/kbn_archiver/1600-dataviews.json"]
},
"streams": [
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,9 +25,7 @@
},
"testData": {
"esArchives": [],
"kbnArchives": [
"x-pack/test/scalability/fixtures/kbn_archiver/1600-dataviews.json"
]
"kbnArchives": ["x-pack/test/scalability/fixtures/kbn_archiver/1600-dataviews.json"]
},
"streams": [
{
Expand Down