All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.martiansoftware.nailgun.builtins.NGServerStats Maven / Gradle / Ivy

/*   

  Copyright 2004-2012, Martian Software, Inc.

  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.martiansoftware.nailgun.builtins;

import java.util.Iterator;
import java.util.Map;

import com.martiansoftware.nailgun.NGServer;
import com.martiansoftware.nailgun.NGContext;

/**
 * 

Displays all NailStats tracked by the server.

* *

This can be run standalone with no arguments. It will also run automatically * upon NGServer shutdown, sending its output to the server's System.out.

* *

This is aliased by default to the command "ng-stats".

* @author Marty Lamb */ public class NGServerStats { public static void nailShutdown(NGServer server) { dumpStats(server, server.out); } public static void nailMain(NGContext context) { dumpStats(context.getNGServer(), context.out); } private static void dumpStats(NGServer server, java.io.PrintStream out) { Map stats = server.getNailStats(); for (Iterator i = stats.values().iterator(); i.hasNext();) { out.println(i.next()); } } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy