1
22
23 package com.liferay.portal.monitoring.statistics;
24
25 import com.liferay.portal.monitoring.MonitoringException;
26
27
34 public interface SummaryStatistics {
35
36 public long getAverageTime() throws MonitoringException;
37
38 public long getAverageTimeByCompany(long companyId)
39 throws MonitoringException;
40
41 public long getAverageTimeByCompany(String webId)
42 throws MonitoringException;
43
44 public long getErrorCount() throws MonitoringException;
45
46 public long getErrorCountByCompany(long companyId)
47 throws MonitoringException;
48
49 public long getErrorCountByCompany(String webId) throws MonitoringException;
50
51 public long getMaxTime() throws MonitoringException;
52
53 public long getMaxTimeByCompany(long companyId) throws MonitoringException;
54
55 public long getMaxTimeByCompany(String webId) throws MonitoringException;
56
57 public long getMinTime() throws MonitoringException;
58
59 public long getMinTimeByCompany(long companyId) throws MonitoringException;
60
61 public long getMinTimeByCompany(String webId) throws MonitoringException;
62
63 public long getRequestCount() throws MonitoringException;
64
65 public long getRequestCountByCompany(long companyId)
66 throws MonitoringException;
67
68 public long getRequestCountByCompany(String webId)
69 throws MonitoringException;
70
71 public long getSuccessCount() throws MonitoringException;
72
73 public long getSuccessCountByCompany(long companyId)
74 throws MonitoringException;
75
76 public long getSuccessCountByCompany(String webId)
77 throws MonitoringException;
78
79 public long getTimeoutCount() throws MonitoringException;
80
81 public long getTimeoutCountByCompany(long companyId)
82 throws MonitoringException;
83
84 public long getTimeoutCountByCompany(String webId)
85 throws MonitoringException;
86
87 }