SessionlessApplicationMonitor.java

/*
 * Copyright (c) 2014, 2017 Oracle and/or its affiliates. All rights reserved.
 *
 * This program and the accompanying materials are made available under the
 * terms of the Eclipse Public License v. 2.0, which is available at
 * http://www.eclipse.org/legal/epl-2.0.
 *
 * This Source Code may also be made available under the following Secondary
 * Licenses when the conditions for such availability set forth in the
 * Eclipse Public License v. 2.0 are satisfied: GNU General Public License,
 * version 2 with the GNU Classpath Exception, which is available at
 * https://www.gnu.org/software/classpath/license.html.
 *
 * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0
 */

package org.glassfish.tyrus.ext.monitoring.jmx;

/**
 * Application events listener and statistics collector.
 * The statistics are collected by aggregating statistics from application endpoints.
 * The only difference form {@link org.glassfish.tyrus.ext.monitoring.jmx.SessionAwareApplicationMonitor} is that
 * {@link org.glassfish.tyrus.ext.monitoring.jmx.SessionAwareApplicationMonitor} does not collect statistics on session
 * level.
 * <p>
 * It also creates and registers MXBeans that can be used to access these collected statistics.
 * The created MXBeans will allow accessing monitored properties and statistics on application and endpoint level.
 * <p>
 * For monitoring in Grizzly server an instance should be passed to the server in server properties.
 * <pre>
 *     serverProperties.put(ApplicationEventListener.APPLICATION_EVENT_LISTENER, new SessionlessApplicationMonitor());
 * </pre>
 * For use in servlet container the class name should be passed as a context parameter in web.xml.
 * <pre>{@code
 *     <context-param>
 *         <param-name>org.glassfish.tyrus.core.monitoring.ApplicationEventListener</param-name>
 *         <param-value>org.glassfish.tyrus.ext.monitoring.jmx.SessionlessApplicationMonitor</param-value>
 *     </context-param>}</pre>
 *
 * @author Petr Janouch
 * @see org.glassfish.tyrus.core.monitoring.ApplicationEventListener
 */
public final class SessionlessApplicationMonitor extends ApplicationMonitor {

    /**
     * Constructor.
     */
    public SessionlessApplicationMonitor() {
        super(false);
    }
}