1 23 24 28 29 34 35 package com.sun.enterprise.admin.monitor.stats; 36 37 import com.sun.enterprise.admin.monitor.stats.StringStatistic; 38 import javax.management.j2ee.statistics.Stats ; 39 import javax.management.j2ee.statistics.CountStatistic ; 40 41 44 public interface PWCRequestStats extends Stats { 45 46 51 public StringStatistic getMethod(); 52 53 58 public StringStatistic getUri(); 59 60 65 public CountStatistic getCountRequests(); 66 67 73 public CountStatistic getCountBytesReceived(); 74 75 81 public CountStatistic getCountBytesTransmitted(); 82 83 91 public CountStatistic getRateBytesTransmitted(); 92 93 100 public CountStatistic getMaxByteTransmissionRate(); 101 102 108 public CountStatistic getCountOpenConnections(); 109 110 116 public CountStatistic getMaxOpenConnections(); 117 118 123 public CountStatistic getCount2xx(); 124 125 130 public CountStatistic getCount3xx(); 131 132 137 public CountStatistic getCount4xx(); 138 139 144 public CountStatistic getCount5xx(); 145 146 153 public CountStatistic getCountOther(); 154 155 160 public CountStatistic getCount200(); 161 162 167 public CountStatistic getCount302(); 168 169 174 public CountStatistic getCount304(); 175 176 181 public CountStatistic getCount400(); 182 183 188 public CountStatistic getCount401(); 189 190 195 public CountStatistic getCount403(); 196 197 202 public CountStatistic getCount404(); 203 204 209 public CountStatistic getCount503(); 210 211 } 212 | Popular Tags |