]
Stuart Douglas moved JBEAP-14396 to WFLY-10027:
-----------------------------------------------
Project: WildFly (was: JBoss Enterprise Application Platform)
Key: WFLY-10027 (was: JBEAP-14396)
Issue Type: Feature Request (was: Enhancement)
Workflow: GIT Pull Request workflow (was: CDW with loose statuses v1)
Component/s: Web (Undertow)
(was: Web (Undertow))
Affects Version/s: (was: 7.1.0.DR8)
Provide metric attribute to see max number of concurrently active
sessions for deployment
-----------------------------------------------------------------------------------------
Key: WFLY-10027
URL:
https://issues.jboss.org/browse/WFLY-10027
Project: WildFly
Issue Type: Feature Request
Components: Web (Undertow)
Reporter: Stuart Douglas
Assignee: Stuart Douglas
Priority: Minor
Add metric attribute that shows maximum number of concurrently active sessions for
particular deployment. Currently we have only:
{code}
/deployment=helloworld.war/subsystem=undertow:read-attribute(name=max-active-sessions)
{code}
which is just:
{code}
"max-active-sessions" => {
"type" => INT,
"description" => "The maximum allowed number of
concurrent sessions that this session manager supports",
"expressions-allowed" => false,
"nillable" => false,
"access-type" => "metric",
"storage" => "runtime"
},
{code}
Providing also metric to see what was the maximum number of concurrently active sessions
for particular deployment might be useful for user too.