Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 2f765d9af2ce5b09ec599f8415a235be39e66498 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
#
# Low Resources module
#

[depend]
server

[xml]
etc/jetty-lowresources.xml

[ini-template]
## Scan period to look for low resources (in milliseconds)
# jetty.lowresources.period=1000

## The idle timeout to apply to low resources (in milliseconds)
# jetty.lowresources.idleTimeout=1000

## Whether to monitor ThreadPool threads for low resources
# jetty.lowresources.monitorThreads=true

## Max number of connections allowed before being in low resources mode
# jetty.lowresources.maxConnections=0

## Max memory allowed before being in low resources mode (in bytes)
# jetty.lowresources.maxMemory=0

## Max time a resource may stay in low resource mode before actions are taken (in milliseconds)
# jetty.lowresources.maxLowResourcesTime=5000

Back to the top