com.aspectran.demo.apm.stats.SessionStatsEndpoint Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of aspectran-demo Show documentation
Show all versions of aspectran-demo Show documentation
Aspectran module showcasing a demo application
/*
* Copyright (c) 2008-2020 The Aspectran Project
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.aspectran.demo.apm.stats;
import com.aspectran.core.component.bean.annotation.AvoidAdvice;
import com.aspectran.core.component.bean.annotation.Component;
import com.aspectran.core.util.logging.Log;
import com.aspectran.core.util.logging.LogFactory;
import com.aspectran.undertow.server.TowServer;
import com.aspectran.web.socket.jsr356.ActivityContextAwareEndpoint;
import com.aspectran.web.socket.jsr356.AspectranConfigurator;
import io.undertow.server.session.SessionManager;
import io.undertow.server.session.SessionManagerStatistics;
import io.undertow.servlet.api.DeploymentManager;
import javax.websocket.CloseReason;
import javax.websocket.OnClose;
import javax.websocket.OnError;
import javax.websocket.OnMessage;
import javax.websocket.OnOpen;
import javax.websocket.Session;
import javax.websocket.server.ServerEndpoint;
import java.io.IOException;
import java.io.UncheckedIOException;
import java.time.Instant;
import java.time.LocalDateTime;
import java.time.ZoneId;
import java.util.ArrayList;
import java.util.Collections;
import java.util.HashSet;
import java.util.List;
import java.util.Set;
import java.util.Timer;
import java.util.TimerTask;
@Component
@ServerEndpoint(
value = "/apm/stats",
configurator = AspectranConfigurator.class
)
@AvoidAdvice
public class SessionStatsEndpoint extends ActivityContextAwareEndpoint {
private static final Log log = LogFactory.getLog(SessionStatsEndpoint.class);
private static final String COMMAND_JOIN = "JOIN:";
private static final String COMMAND_LEAVE = "LEAVE";
private static final String HEARTBEAT_PING_MSG = "--heartbeat-ping--";
private static final String HEARTBEAT_PONG_MSG = "--heartbeat-pong--";
private static final Set sessions = Collections.synchronizedSet(new HashSet<>());
private int refreshIntervalInSeconds = 5;
private volatile Timer timer;
private volatile boolean first;
@OnOpen
public void onOpen(Session session) {
if (log.isDebugEnabled()) {
log.debug("WebSocket connection established with session: " + session.getId());
}
}
@OnMessage
public void onMessage(Session session, String message) {
if (HEARTBEAT_PING_MSG.equals(message)) {
session.getAsyncRemote().sendText(HEARTBEAT_PONG_MSG);
return;
}
if (message != null && message.startsWith(COMMAND_JOIN)) {
try {
refreshIntervalInSeconds = Integer.parseInt(message.substring(COMMAND_JOIN.length()));
} catch (NumberFormatException e) {
// ignore
}
addSession(session);
} else if (COMMAND_LEAVE.equals(message)) {
removeSession(session);
}
}
@OnClose
public void onClose(Session session, CloseReason reason) {
if (log.isDebugEnabled()) {
log.debug("Websocket session " + session.getId() + " has been closed. Reason: " + reason);
}
removeSession(session);
}
@OnError
public void onError(Session session, Throwable error) {
log.error("Error in websocket session: " + session.getId(), error);
try {
removeSession(session);
session.close(new CloseReason(CloseReason.CloseCodes.UNEXPECTED_CONDITION, null));
} catch (IOException e) {
throw new UncheckedIOException(e);
}
}
private void broadcast(String message) {
synchronized (sessions) {
for (Session session : sessions) {
if (session.isOpen()) {
session.getAsyncRemote().sendText(message);
}
}
}
}
private void addSession(Session session) {
if (sessions.add(session)) {
first = true;
if (timer == null) {
timer = new Timer();
timer.schedule(new TimerTask() {
private SessionStatistics oldStats;
@Override
public void run() {
SessionStatistics newStats = getSessionStats();
if (first || !newStats.equals(oldStats)) {
try {
broadcast(newStats.toJson());
} catch (IOException e) {
log.warn(e.getMessage(), e);
}
oldStats = newStats;
if (first) {
first = false;
}
}
}
}, 0, refreshIntervalInSeconds * 1000L);
}
}
}
private void removeSession(Session session) {
if (sessions.remove(session) && sessions.isEmpty() && timer != null) {
timer.cancel();
timer = null;
}
}
public SessionStatistics getSessionStats() {
TowServer towServer = getBeanRegistry().getBean("tow.server");
DeploymentManager deploymentManager = towServer.getTowServletContainer().getDeployment("root.war");
SessionManager sessionManager = deploymentManager.getDeployment().getSessionManager();
SessionManagerStatistics statistics = sessionManager.getStatistics();
SessionStatistics stats = new SessionStatistics();
stats.setActiveSessionCount(statistics.getActiveSessionCount());
stats.setHighestSessionCount(statistics.getHighestSessionCount());
stats.setCreatedSessionCount(statistics.getCreatedSessionCount());
stats.setExpiredSessionCount(statistics.getExpiredSessionCount());
stats.setRejectedSessionCount(statistics.getRejectedSessions());
// Current Users
List currentUsers = new ArrayList<>();
Set sessionIds = sessionManager.getActiveSessions();
for (String sessionId : sessionIds) {
io.undertow.server.session.Session session = sessionManager.getSession(sessionId);
if (session != null) {
currentUsers.add("1:Session " + session.getId() + " created at " + formatTime(session.getCreationTime()));
}
}
stats.setCurrentUsers(currentUsers.toArray(new String[0]));
return stats;
}
private String formatTime(long time) {
LocalDateTime date = LocalDateTime.ofInstant(Instant.ofEpochMilli(time), ZoneId.systemDefault());
return date.toString();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy