Package de.xima.fc.fs.server.monitoring
Interface FSMonitorMBean
-
- All Known Implementing Classes:
FSMonitor
public interface FSMonitorMBean
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description long
getfailed_login_count()
long
getsession_count_backend()
long
getsession_count_form()
long
getsession_count_form(long clientId)
String
getstatus()
boolean
isconnected()
boolean
isrunning()
void
restart()
restart the server
-
-
-
Field Detail
-
NAME
static final String NAME
- See Also:
- Constant Field Values
-
-
Method Detail
-
isconnected
boolean isconnected()
-
isrunning
boolean isrunning()
-
getstatus
String getstatus()
-
getfailed_login_count
long getfailed_login_count()
-
getsession_count_form
long getsession_count_form()
- Returns:
- The number of active form sessions on this frontend server.
-
getsession_count_backend
long getsession_count_backend()
- Returns:
- The number of active backend sessions on this master server.
-
getsession_count_form
long getsession_count_form(long clientId)
- Parameters:
clientId
- ID of the client for which to look for form sessions.- Returns:
- The number of active form sessions on this master server for the given client.
-
restart
void restart()
restart the server
-
-