esp_sdk 2.0.0 → 2.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/.travis.yml +1 -0
- data/CHANGELOG.md +6 -1
- data/Gemfile.lock +11 -1
- data/README.md +287 -28
- data/bin/esp +15 -0
- data/esp_sdk.gemspec +2 -0
- data/lib/esp/aws_clients.rb +60 -0
- data/lib/esp/commands/add_external_account.rb +57 -0
- data/lib/esp/commands/commands_tasks.rb +106 -0
- data/lib/esp/commands/console.rb +68 -0
- data/lib/esp/extensions/active_resource/formats/json_api_format.rb +12 -4
- data/lib/esp/extensions/active_resource/paginated_collection.rb +5 -5
- data/lib/esp/extensions/active_resource/validations.rb +1 -1
- data/lib/esp/external_account_creator.rb +77 -0
- data/lib/esp/resources/alert.rb +30 -34
- data/lib/esp/resources/cloud_trail_event.rb +5 -0
- data/lib/esp/resources/contact_request.rb +6 -5
- data/lib/esp/resources/custom_signature.rb +32 -56
- data/lib/esp/resources/dashboard.rb +8 -1
- data/lib/esp/resources/external_account.rb +27 -19
- data/lib/esp/resources/organization.rb +27 -3
- data/lib/esp/resources/region.rb +15 -3
- data/lib/esp/resources/report.rb +28 -24
- data/lib/esp/resources/resource.rb +26 -10
- data/lib/esp/resources/service.rb +5 -0
- data/lib/esp/resources/signature.rb +28 -12
- data/lib/esp/resources/stat.rb +21 -2
- data/lib/esp/resources/stat_custom_signature.rb +30 -4
- data/lib/esp/resources/stat_region.rb +29 -3
- data/lib/esp/resources/stat_service.rb +29 -3
- data/lib/esp/resources/stat_signature.rb +29 -3
- data/lib/esp/resources/sub_organization.rb +27 -3
- data/lib/esp/resources/suppression/region.rb +14 -32
- data/lib/esp/resources/suppression/signature.rb +14 -40
- data/lib/esp/resources/suppression/unique_identifier.rb +8 -6
- data/lib/esp/resources/suppression.rb +43 -5
- data/lib/esp/resources/tag.rb +5 -0
- data/lib/esp/resources/team.rb +33 -9
- data/lib/esp/resources/user.rb +29 -3
- data/lib/esp/version.rb +1 -1
- data/lib/esp.rb +25 -5
- data/test/esp/aws_clients_test.rb +101 -0
- data/test/esp/extensions/active_resource/formats/json_api_format_test.rb +26 -12
- data/test/esp/extensions/active_resource/paginated_collection_test.rb +93 -72
- data/test/esp/extensions/active_resource/validations_test.rb +2 -12
- data/test/esp/external_account_creator_test.rb +153 -0
- data/test/esp/resources/alert_test.rb +71 -33
- data/test/esp/resources/cloud_trail_event_test.rb +9 -1
- data/test/esp/resources/contact_request_test.rb +8 -0
- data/test/esp/resources/custom_signature_test.rb +8 -0
- data/test/esp/resources/dashboard_test.rb +8 -0
- data/test/esp/resources/external_account_test.rb +8 -0
- data/test/esp/resources/metadata_test.rb +1 -1
- data/test/esp/resources/organization_test.rb +8 -0
- data/test/esp/resources/region_test.rb +12 -4
- data/test/esp/resources/report_test.rb +13 -4
- data/test/esp/resources/resource_test.rb +208 -64
- data/test/esp/resources/service_test.rb +8 -0
- data/test/esp/resources/signature_test.rb +15 -9
- data/test/esp/resources/stat_custom_signature_test.rb +9 -1
- data/test/esp/resources/stat_region_test.rb +23 -1
- data/test/esp/resources/stat_service_test.rb +23 -1
- data/test/esp/resources/stat_signature_test.rb +23 -1
- data/test/esp/resources/stat_test.rb +52 -8
- data/test/esp/resources/sub_organization_test.rb +8 -0
- data/test/esp/resources/suppression/region_test.rb +10 -2
- data/test/esp/resources/suppression/signature_test.rb +10 -2
- data/test/esp/resources/suppression/unique_identifier_test.rb +10 -2
- data/test/esp/resources/suppression_test.rb +74 -14
- data/test/esp/resources/tag_test.rb +9 -1
- data/test/esp/resources/team_test.rb +8 -0
- data/test/esp/resources/user_test.rb +49 -19
- data/test/esp_test.rb +19 -1
- data/test/factories/alerts.rb +70 -0
- data/test/factories/organizations.rb +2 -2
- data/test/factories/regions.rb +1 -1
- data/test/factories/sub_organizations.rb +1 -1
- data/test/factories/suppressions.rb +109 -3
- data/test/factories/users.rb +65 -2
- data/test/test_helper.rb +9 -8
- metadata +41 -69
- data/bin/esp_console +0 -67
- data/rdoc/ActiveResource/Formats.html +0 -178
- data/rdoc/ActiveResource/PaginatedCollection.html +0 -912
- data/rdoc/ActiveResource.html +0 -182
- data/rdoc/ESP/Alert.html +0 -808
- data/rdoc/ESP/CloudTrailEvent.html +0 -377
- data/rdoc/ESP/ContactRequest.html +0 -368
- data/rdoc/ESP/CustomSignature.html +0 -748
- data/rdoc/ESP/Dashboard.html +0 -357
- data/rdoc/ESP/ExternalAccount.html +0 -567
- data/rdoc/ESP/Metadata.html +0 -411
- data/rdoc/ESP/Organization.html +0 -592
- data/rdoc/ESP/Region.html +0 -401
- data/rdoc/ESP/Report.html +0 -624
- data/rdoc/ESP/Service.html +0 -382
- data/rdoc/ESP/Signature.html +0 -557
- data/rdoc/ESP/Stat.html +0 -1780
- data/rdoc/ESP/StatCustomSignature.html +0 -1601
- data/rdoc/ESP/StatRegion.html +0 -1600
- data/rdoc/ESP/StatService.html +0 -1600
- data/rdoc/ESP/StatSignature.html +0 -1600
- data/rdoc/ESP/SubOrganization.html +0 -542
- data/rdoc/ESP/Suppression/Region.html +0 -456
- data/rdoc/ESP/Suppression/Signature.html +0 -472
- data/rdoc/ESP/Suppression/UniqueIdentifier.html +0 -419
- data/rdoc/ESP/Suppression.html +0 -651
- data/rdoc/ESP/Tag.html +0 -373
- data/rdoc/ESP/Team.html +0 -586
- data/rdoc/ESP/User.html +0 -485
- data/rdoc/ESP.html +0 -549
- data/rdoc/README_md.html +0 -503
- data/rdoc/created.rid +0 -31
- data/rdoc/images/add.png +0 -0
- data/rdoc/images/arrow_up.png +0 -0
- data/rdoc/images/brick.png +0 -0
- data/rdoc/images/brick_link.png +0 -0
- data/rdoc/images/bug.png +0 -0
- data/rdoc/images/bullet_black.png +0 -0
- data/rdoc/images/bullet_toggle_minus.png +0 -0
- data/rdoc/images/bullet_toggle_plus.png +0 -0
- data/rdoc/images/date.png +0 -0
- data/rdoc/images/delete.png +0 -0
- data/rdoc/images/find.png +0 -0
- data/rdoc/images/loadingAnimation.gif +0 -0
- data/rdoc/images/macFFBgHack.png +0 -0
- data/rdoc/images/package.png +0 -0
- data/rdoc/images/page_green.png +0 -0
- data/rdoc/images/page_white_text.png +0 -0
- data/rdoc/images/page_white_width.png +0 -0
- data/rdoc/images/plugin.png +0 -0
- data/rdoc/images/ruby.png +0 -0
- data/rdoc/images/tag_blue.png +0 -0
- data/rdoc/images/tag_green.png +0 -0
- data/rdoc/images/transparent.png +0 -0
- data/rdoc/images/wrench.png +0 -0
- data/rdoc/images/wrench_orange.png +0 -0
- data/rdoc/images/zoom.png +0 -0
- data/rdoc/index.html +0 -136
- data/rdoc/js/darkfish.js +0 -155
- data/rdoc/js/jquery.js +0 -4
- data/rdoc/js/navigation.js +0 -142
- data/rdoc/js/search.js +0 -94
- data/rdoc/js/search_index.js +0 -1
- data/rdoc/js/searcher.js +0 -228
- data/rdoc/rdoc.css +0 -595
- data/rdoc/table_of_contents.html +0 -942
data/rdoc/ESP/Stat.html
DELETED
|
@@ -1,1780 +0,0 @@
|
|
|
1
|
-
<!DOCTYPE html>
|
|
2
|
-
|
|
3
|
-
<html>
|
|
4
|
-
<head>
|
|
5
|
-
<meta content="text/html; charset=UTF-8" http-equiv="Content-Type">
|
|
6
|
-
|
|
7
|
-
<title>class ESP::Stat - ESPSDK</title>
|
|
8
|
-
|
|
9
|
-
<link type="text/css" media="screen" href="../rdoc.css" rel="stylesheet">
|
|
10
|
-
|
|
11
|
-
<script type="text/javascript">
|
|
12
|
-
var rdoc_rel_prefix = "../";
|
|
13
|
-
</script>
|
|
14
|
-
|
|
15
|
-
<script type="text/javascript" charset="utf-8" src="../js/jquery.js"></script>
|
|
16
|
-
<script type="text/javascript" charset="utf-8" src="../js/navigation.js"></script>
|
|
17
|
-
<script type="text/javascript" charset="utf-8" src="../js/search_index.js"></script>
|
|
18
|
-
<script type="text/javascript" charset="utf-8" src="../js/search.js"></script>
|
|
19
|
-
<script type="text/javascript" charset="utf-8" src="../js/searcher.js"></script>
|
|
20
|
-
<script type="text/javascript" charset="utf-8" src="../js/darkfish.js"></script>
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
<body id="top" class="class">
|
|
24
|
-
<nav id="metadata">
|
|
25
|
-
<nav id="home-section" class="section">
|
|
26
|
-
<h3 class="section-header">
|
|
27
|
-
<a href="../index.html">Home</a>
|
|
28
|
-
<a href="../table_of_contents.html#classes">Classes</a>
|
|
29
|
-
<a href="../table_of_contents.html#methods">Methods</a>
|
|
30
|
-
</h3>
|
|
31
|
-
</nav>
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
<nav id="search-section" class="section project-section" class="initially-hidden">
|
|
35
|
-
<form action="#" method="get" accept-charset="utf-8">
|
|
36
|
-
<h3 class="section-header">
|
|
37
|
-
<input type="text" name="search" placeholder="Search" id="search-field"
|
|
38
|
-
title="Type to search, Up and Down to navigate, Enter to load">
|
|
39
|
-
</h3>
|
|
40
|
-
</form>
|
|
41
|
-
|
|
42
|
-
<ul id="search-results" class="initially-hidden"></ul>
|
|
43
|
-
</nav>
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
<div id="file-metadata">
|
|
49
|
-
<nav id="file-list-section" class="section">
|
|
50
|
-
<h3 class="section-header">Defined In</h3>
|
|
51
|
-
<ul>
|
|
52
|
-
<li>lib/esp/resources/stat.rb
|
|
53
|
-
</ul>
|
|
54
|
-
</nav>
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
</div>
|
|
58
|
-
|
|
59
|
-
<div id="class-metadata">
|
|
60
|
-
<nav id="sections-section" class="section">
|
|
61
|
-
<h3 class="section-header">Sections</h3>
|
|
62
|
-
<ul class="link-list">
|
|
63
|
-
|
|
64
|
-
<li><a href="#5Buntitled-5D"></a></li>
|
|
65
|
-
|
|
66
|
-
<li><a href="#27total-27+rollup+methods">'total' rollup methods</a></li>
|
|
67
|
-
|
|
68
|
-
</ul>
|
|
69
|
-
</nav>
|
|
70
|
-
|
|
71
|
-
<nav id="parent-class-section" class="section">
|
|
72
|
-
<h3 class="section-header">Parent</h3>
|
|
73
|
-
|
|
74
|
-
<p class="link">ESP::Resource
|
|
75
|
-
|
|
76
|
-
</nav>
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
<!-- Method Quickref -->
|
|
81
|
-
<nav id="method-list-section" class="section">
|
|
82
|
-
<h3 class="section-header">Methods</h3>
|
|
83
|
-
|
|
84
|
-
<ul class="link-list">
|
|
85
|
-
|
|
86
|
-
<li ><a href="#method-c-create">::create</a>
|
|
87
|
-
|
|
88
|
-
<li ><a href="#method-c-find">::find</a>
|
|
89
|
-
|
|
90
|
-
<li ><a href="#method-c-for_report">::for_report</a>
|
|
91
|
-
|
|
92
|
-
<li ><a href="#method-c-latest_for_teams">::latest_for_teams</a>
|
|
93
|
-
|
|
94
|
-
<li ><a href="#method-i-custom_signatures">#custom_signatures</a>
|
|
95
|
-
|
|
96
|
-
<li ><a href="#method-i-destroy">#destroy</a>
|
|
97
|
-
|
|
98
|
-
<li ><a href="#method-i-regions">#regions</a>
|
|
99
|
-
|
|
100
|
-
<li ><a href="#method-i-report">#report</a>
|
|
101
|
-
|
|
102
|
-
<li ><a href="#method-i-save">#save</a>
|
|
103
|
-
|
|
104
|
-
<li ><a href="#method-i-services">#services</a>
|
|
105
|
-
|
|
106
|
-
<li ><a href="#method-i-signatures">#signatures</a>
|
|
107
|
-
|
|
108
|
-
<li ><a href="#method-i-total">#total</a>
|
|
109
|
-
|
|
110
|
-
<li ><a href="#method-i-total_error">#total_error</a>
|
|
111
|
-
|
|
112
|
-
<li ><a href="#method-i-total_fail">#total_fail</a>
|
|
113
|
-
|
|
114
|
-
<li ><a href="#method-i-total_info">#total_info</a>
|
|
115
|
-
|
|
116
|
-
<li ><a href="#method-i-total_new_1d">#total_new_1d</a>
|
|
117
|
-
|
|
118
|
-
<li ><a href="#method-i-total_new_1d_error">#total_new_1d_error</a>
|
|
119
|
-
|
|
120
|
-
<li ><a href="#method-i-total_new_1d_fail">#total_new_1d_fail</a>
|
|
121
|
-
|
|
122
|
-
<li ><a href="#method-i-total_new_1d_info">#total_new_1d_info</a>
|
|
123
|
-
|
|
124
|
-
<li ><a href="#method-i-total_new_1d_pass">#total_new_1d_pass</a>
|
|
125
|
-
|
|
126
|
-
<li ><a href="#method-i-total_new_1d_warn">#total_new_1d_warn</a>
|
|
127
|
-
|
|
128
|
-
<li ><a href="#method-i-total_new_1h">#total_new_1h</a>
|
|
129
|
-
|
|
130
|
-
<li ><a href="#method-i-total_new_1h_error">#total_new_1h_error</a>
|
|
131
|
-
|
|
132
|
-
<li ><a href="#method-i-total_new_1h_fail">#total_new_1h_fail</a>
|
|
133
|
-
|
|
134
|
-
<li ><a href="#method-i-total_new_1h_info">#total_new_1h_info</a>
|
|
135
|
-
|
|
136
|
-
<li ><a href="#method-i-total_new_1h_pass">#total_new_1h_pass</a>
|
|
137
|
-
|
|
138
|
-
<li ><a href="#method-i-total_new_1h_warn">#total_new_1h_warn</a>
|
|
139
|
-
|
|
140
|
-
<li ><a href="#method-i-total_new_1w">#total_new_1w</a>
|
|
141
|
-
|
|
142
|
-
<li ><a href="#method-i-total_new_1w_error">#total_new_1w_error</a>
|
|
143
|
-
|
|
144
|
-
<li ><a href="#method-i-total_new_1w_fail">#total_new_1w_fail</a>
|
|
145
|
-
|
|
146
|
-
<li ><a href="#method-i-total_new_1w_info">#total_new_1w_info</a>
|
|
147
|
-
|
|
148
|
-
<li ><a href="#method-i-total_new_1w_pass">#total_new_1w_pass</a>
|
|
149
|
-
|
|
150
|
-
<li ><a href="#method-i-total_new_1w_warn">#total_new_1w_warn</a>
|
|
151
|
-
|
|
152
|
-
<li ><a href="#method-i-total_old">#total_old</a>
|
|
153
|
-
|
|
154
|
-
<li ><a href="#method-i-total_old_error">#total_old_error</a>
|
|
155
|
-
|
|
156
|
-
<li ><a href="#method-i-total_old_fail">#total_old_fail</a>
|
|
157
|
-
|
|
158
|
-
<li ><a href="#method-i-total_old_info">#total_old_info</a>
|
|
159
|
-
|
|
160
|
-
<li ><a href="#method-i-total_old_pass">#total_old_pass</a>
|
|
161
|
-
|
|
162
|
-
<li ><a href="#method-i-total_old_warn">#total_old_warn</a>
|
|
163
|
-
|
|
164
|
-
<li ><a href="#method-i-total_pass">#total_pass</a>
|
|
165
|
-
|
|
166
|
-
<li ><a href="#method-i-total_suppressed">#total_suppressed</a>
|
|
167
|
-
|
|
168
|
-
<li ><a href="#method-i-total_suppressed_error">#total_suppressed_error</a>
|
|
169
|
-
|
|
170
|
-
<li ><a href="#method-i-total_suppressed_fail">#total_suppressed_fail</a>
|
|
171
|
-
|
|
172
|
-
<li ><a href="#method-i-total_suppressed_pass">#total_suppressed_pass</a>
|
|
173
|
-
|
|
174
|
-
<li ><a href="#method-i-total_suppressed_warn">#total_suppressed_warn</a>
|
|
175
|
-
|
|
176
|
-
<li ><a href="#method-i-total_warn">#total_warn</a>
|
|
177
|
-
|
|
178
|
-
</ul>
|
|
179
|
-
</nav>
|
|
180
|
-
|
|
181
|
-
</div>
|
|
182
|
-
|
|
183
|
-
<div id="project-metadata">
|
|
184
|
-
<nav id="fileindex-section" class="section project-section">
|
|
185
|
-
<h3 class="section-header">Pages</h3>
|
|
186
|
-
|
|
187
|
-
<ul>
|
|
188
|
-
|
|
189
|
-
<li class="file"><a href="../README_md.html">README</a>
|
|
190
|
-
|
|
191
|
-
</ul>
|
|
192
|
-
</nav>
|
|
193
|
-
|
|
194
|
-
<nav id="classindex-section" class="section project-section">
|
|
195
|
-
<h3 class="section-header">Class and Module Index</h3>
|
|
196
|
-
|
|
197
|
-
<ul class="link-list">
|
|
198
|
-
|
|
199
|
-
<li><a href="../ActiveResource.html">ActiveResource</a>
|
|
200
|
-
|
|
201
|
-
<li><a href="../ActiveResource/Formats.html">ActiveResource::Formats</a>
|
|
202
|
-
|
|
203
|
-
<li><a href="../ActiveResource/PaginatedCollection.html">ActiveResource::PaginatedCollection</a>
|
|
204
|
-
|
|
205
|
-
<li><a href="../ESP.html">ESP</a>
|
|
206
|
-
|
|
207
|
-
<li><a href="../ESP/Alert.html">ESP::Alert</a>
|
|
208
|
-
|
|
209
|
-
<li><a href="../ESP/CloudTrailEvent.html">ESP::CloudTrailEvent</a>
|
|
210
|
-
|
|
211
|
-
<li><a href="../ESP/ContactRequest.html">ESP::ContactRequest</a>
|
|
212
|
-
|
|
213
|
-
<li><a href="../ESP/CustomSignature.html">ESP::CustomSignature</a>
|
|
214
|
-
|
|
215
|
-
<li><a href="../ESP/Dashboard.html">ESP::Dashboard</a>
|
|
216
|
-
|
|
217
|
-
<li><a href="../ESP/ExternalAccount.html">ESP::ExternalAccount</a>
|
|
218
|
-
|
|
219
|
-
<li><a href="../ESP/Metadata.html">ESP::Metadata</a>
|
|
220
|
-
|
|
221
|
-
<li><a href="../ESP/Organization.html">ESP::Organization</a>
|
|
222
|
-
|
|
223
|
-
<li><a href="../ESP/Region.html">ESP::Region</a>
|
|
224
|
-
|
|
225
|
-
<li><a href="../ESP/Report.html">ESP::Report</a>
|
|
226
|
-
|
|
227
|
-
<li><a href="../ESP/Service.html">ESP::Service</a>
|
|
228
|
-
|
|
229
|
-
<li><a href="../ESP/Signature.html">ESP::Signature</a>
|
|
230
|
-
|
|
231
|
-
<li><a href="../ESP/Stat.html">ESP::Stat</a>
|
|
232
|
-
|
|
233
|
-
<li><a href="../ESP/StatCustomSignature.html">ESP::StatCustomSignature</a>
|
|
234
|
-
|
|
235
|
-
<li><a href="../ESP/StatRegion.html">ESP::StatRegion</a>
|
|
236
|
-
|
|
237
|
-
<li><a href="../ESP/StatService.html">ESP::StatService</a>
|
|
238
|
-
|
|
239
|
-
<li><a href="../ESP/StatSignature.html">ESP::StatSignature</a>
|
|
240
|
-
|
|
241
|
-
<li><a href="../ESP/SubOrganization.html">ESP::SubOrganization</a>
|
|
242
|
-
|
|
243
|
-
<li><a href="../ESP/Suppression.html">ESP::Suppression</a>
|
|
244
|
-
|
|
245
|
-
<li><a href="../ESP/Suppression/Region.html">ESP::Suppression::Region</a>
|
|
246
|
-
|
|
247
|
-
<li><a href="../ESP/Suppression/Signature.html">ESP::Suppression::Signature</a>
|
|
248
|
-
|
|
249
|
-
<li><a href="../ESP/Suppression/UniqueIdentifier.html">ESP::Suppression::UniqueIdentifier</a>
|
|
250
|
-
|
|
251
|
-
<li><a href="../ESP/Tag.html">ESP::Tag</a>
|
|
252
|
-
|
|
253
|
-
<li><a href="../ESP/Team.html">ESP::Team</a>
|
|
254
|
-
|
|
255
|
-
<li><a href="../ESP/User.html">ESP::User</a>
|
|
256
|
-
|
|
257
|
-
</ul>
|
|
258
|
-
</nav>
|
|
259
|
-
|
|
260
|
-
</div>
|
|
261
|
-
</nav>
|
|
262
|
-
|
|
263
|
-
<div id="documentation">
|
|
264
|
-
<h1 class="class">class ESP::Stat</h1>
|
|
265
|
-
|
|
266
|
-
<div id="description" class="description">
|
|
267
|
-
|
|
268
|
-
</div><!-- description -->
|
|
269
|
-
|
|
270
|
-
|
|
271
|
-
|
|
272
|
-
|
|
273
|
-
<section id="5Buntitled-5D" class="documentation-section">
|
|
274
|
-
|
|
275
|
-
|
|
276
|
-
|
|
277
|
-
|
|
278
|
-
|
|
279
|
-
|
|
280
|
-
|
|
281
|
-
|
|
282
|
-
<!-- Methods -->
|
|
283
|
-
|
|
284
|
-
<section id="public-class-5Buntitled-5D-method-details" class="method-section section">
|
|
285
|
-
<h3 class="section-header">Public Class Methods</h3>
|
|
286
|
-
|
|
287
|
-
|
|
288
|
-
<div id="method-c-create" class="method-detail ">
|
|
289
|
-
|
|
290
|
-
<div class="method-heading">
|
|
291
|
-
<span class="method-name">create</span><span
|
|
292
|
-
class="method-args">()</span>
|
|
293
|
-
|
|
294
|
-
<span class="method-click-advice">click to toggle source</span>
|
|
295
|
-
|
|
296
|
-
</div>
|
|
297
|
-
|
|
298
|
-
|
|
299
|
-
<div class="method-description">
|
|
300
|
-
|
|
301
|
-
<p>Not Implemented. You cannot create a <a href="Stat.html">Stat</a>.</p>
|
|
302
|
-
|
|
303
|
-
|
|
304
|
-
|
|
305
|
-
|
|
306
|
-
<div class="method-source-code" id="create-source">
|
|
307
|
-
<pre><span class="ruby-comment"># File lib/esp/resources/stat.rb, line 33</span>
|
|
308
|
-
</pre>
|
|
309
|
-
</div><!-- create-source -->
|
|
310
|
-
|
|
311
|
-
</div>
|
|
312
|
-
|
|
313
|
-
|
|
314
|
-
|
|
315
|
-
|
|
316
|
-
</div><!-- create-method -->
|
|
317
|
-
|
|
318
|
-
|
|
319
|
-
<div id="method-c-find" class="method-detail ">
|
|
320
|
-
|
|
321
|
-
<div class="method-heading">
|
|
322
|
-
<span class="method-name">find</span><span
|
|
323
|
-
class="method-args">(*)</span>
|
|
324
|
-
|
|
325
|
-
<span class="method-click-advice">click to toggle source</span>
|
|
326
|
-
|
|
327
|
-
</div>
|
|
328
|
-
|
|
329
|
-
|
|
330
|
-
<div class="method-description">
|
|
331
|
-
|
|
332
|
-
<p>Not Implemented. You cannot search for a <a href="Stat.html">Stat</a>.</p>
|
|
333
|
-
|
|
334
|
-
|
|
335
|
-
|
|
336
|
-
|
|
337
|
-
<div class="method-source-code" id="find-source">
|
|
338
|
-
<pre><span class="ruby-comment"># File lib/esp/resources/stat.rb, line 26</span>
|
|
339
|
-
<span class="ruby-keyword">def</span> <span class="ruby-keyword">self</span>.<span class="ruby-identifier">find</span>(<span class="ruby-operator">*</span>)
|
|
340
|
-
<span class="ruby-identifier">fail</span> <span class="ruby-constant">ESP</span><span class="ruby-operator">::</span><span class="ruby-constant">NotImplementedError</span>, <span class="ruby-string">'Regular ARELlike methods are disabled. Use either the ESP::Stat.for_report or ESP::Stat.latest_for_teams method.'</span>
|
|
341
|
-
<span class="ruby-keyword">end</span></pre>
|
|
342
|
-
</div><!-- find-source -->
|
|
343
|
-
|
|
344
|
-
</div>
|
|
345
|
-
|
|
346
|
-
|
|
347
|
-
|
|
348
|
-
|
|
349
|
-
</div><!-- find-method -->
|
|
350
|
-
|
|
351
|
-
|
|
352
|
-
<div id="method-c-for_report" class="method-detail ">
|
|
353
|
-
|
|
354
|
-
<div class="method-heading">
|
|
355
|
-
<span class="method-name">for_report</span><span
|
|
356
|
-
class="method-args">(report_id = nil)</span>
|
|
357
|
-
|
|
358
|
-
<span class="method-click-advice">click to toggle source</span>
|
|
359
|
-
|
|
360
|
-
</div>
|
|
361
|
-
|
|
362
|
-
|
|
363
|
-
<div class="method-description">
|
|
364
|
-
|
|
365
|
-
<p>Returns all the stats of all the alerts for a report identified by the
|
|
366
|
-
report_id parameter. Said report contains all statistics for this alert
|
|
367
|
-
triggered from signatures contained in all regions for the selected hour.</p>
|
|
368
|
-
|
|
369
|
-
|
|
370
|
-
|
|
371
|
-
|
|
372
|
-
<div class="method-source-code" id="for_report-source">
|
|
373
|
-
<pre><span class="ruby-comment"># File lib/esp/resources/stat.rb, line 40</span>
|
|
374
|
-
<span class="ruby-keyword">def</span> <span class="ruby-keyword">self</span>.<span class="ruby-identifier">for_report</span>(<span class="ruby-identifier">report_id</span> = <span class="ruby-keyword">nil</span>)
|
|
375
|
-
<span class="ruby-identifier">fail</span> <span class="ruby-constant">ArgumentError</span>, <span class="ruby-string">"You must supply a report id."</span> <span class="ruby-keyword">unless</span> <span class="ruby-identifier">report_id</span>.<span class="ruby-identifier">present?</span>
|
|
376
|
-
<span class="ruby-comment"># call find_one directly since find is overriden/not implemented</span>
|
|
377
|
-
<span class="ruby-identifier">find_one</span>(<span class="ruby-identifier">from</span><span class="ruby-operator">:</span> <span class="ruby-node">"#{prefix}reports/#{report_id}/stats.json"</span>)
|
|
378
|
-
<span class="ruby-keyword">end</span></pre>
|
|
379
|
-
</div><!-- for_report-source -->
|
|
380
|
-
|
|
381
|
-
</div>
|
|
382
|
-
|
|
383
|
-
|
|
384
|
-
|
|
385
|
-
|
|
386
|
-
</div><!-- for_report-method -->
|
|
387
|
-
|
|
388
|
-
|
|
389
|
-
<div id="method-c-latest_for_teams" class="method-detail ">
|
|
390
|
-
|
|
391
|
-
<div class="method-heading">
|
|
392
|
-
<span class="method-name">latest_for_teams</span><span
|
|
393
|
-
class="method-args">()</span>
|
|
394
|
-
|
|
395
|
-
<span class="method-click-advice">click to toggle source</span>
|
|
396
|
-
|
|
397
|
-
</div>
|
|
398
|
-
|
|
399
|
-
|
|
400
|
-
<div class="method-description">
|
|
401
|
-
|
|
402
|
-
<p>Returns all the stats for the most recent report of each team accessible by
|
|
403
|
-
the given API key.</p>
|
|
404
|
-
|
|
405
|
-
|
|
406
|
-
|
|
407
|
-
|
|
408
|
-
<div class="method-source-code" id="latest_for_teams-source">
|
|
409
|
-
<pre><span class="ruby-comment"># File lib/esp/resources/stat.rb, line 47</span>
|
|
410
|
-
<span class="ruby-keyword">def</span> <span class="ruby-keyword">self</span>.<span class="ruby-identifier">latest_for_teams</span>
|
|
411
|
-
<span class="ruby-comment"># call find_every directly since find is overriden/not implemented</span>
|
|
412
|
-
<span class="ruby-identifier">find_every</span>(<span class="ruby-identifier">from</span><span class="ruby-operator">:</span> <span class="ruby-value">:latest_for_teams</span>)
|
|
413
|
-
<span class="ruby-keyword">end</span></pre>
|
|
414
|
-
</div><!-- latest_for_teams-source -->
|
|
415
|
-
|
|
416
|
-
</div>
|
|
417
|
-
|
|
418
|
-
|
|
419
|
-
|
|
420
|
-
|
|
421
|
-
</div><!-- latest_for_teams-method -->
|
|
422
|
-
|
|
423
|
-
|
|
424
|
-
</section><!-- public-class-method-details -->
|
|
425
|
-
|
|
426
|
-
<section id="public-instance-5Buntitled-5D-method-details" class="method-section section">
|
|
427
|
-
<h3 class="section-header">Public Instance Methods</h3>
|
|
428
|
-
|
|
429
|
-
|
|
430
|
-
<div id="method-i-custom_signatures" class="method-detail ">
|
|
431
|
-
|
|
432
|
-
<div class="method-heading">
|
|
433
|
-
<span class="method-name">custom_signatures</span><span
|
|
434
|
-
class="method-args">()</span>
|
|
435
|
-
|
|
436
|
-
<span class="method-click-advice">click to toggle source</span>
|
|
437
|
-
|
|
438
|
-
</div>
|
|
439
|
-
|
|
440
|
-
|
|
441
|
-
<div class="method-description">
|
|
442
|
-
|
|
443
|
-
<p>The stats for each custom signature associated with this stat object.</p>
|
|
444
|
-
|
|
445
|
-
|
|
446
|
-
|
|
447
|
-
|
|
448
|
-
<div class="method-source-code" id="custom_signatures-source">
|
|
449
|
-
<pre><span class="ruby-comment"># File lib/esp/resources/stat.rb, line 23</span>
|
|
450
|
-
<span class="ruby-identifier">has_many</span> <span class="ruby-value">:custom_signatures</span>, <span class="ruby-identifier">class_name</span><span class="ruby-operator">:</span> <span class="ruby-string">'ESP::StatCustomSignature'</span>
|
|
451
|
-
</pre>
|
|
452
|
-
</div><!-- custom_signatures-source -->
|
|
453
|
-
|
|
454
|
-
</div>
|
|
455
|
-
|
|
456
|
-
|
|
457
|
-
|
|
458
|
-
|
|
459
|
-
</div><!-- custom_signatures-method -->
|
|
460
|
-
|
|
461
|
-
|
|
462
|
-
<div id="method-i-destroy" class="method-detail ">
|
|
463
|
-
|
|
464
|
-
<div class="method-heading">
|
|
465
|
-
<span class="method-name">destroy</span><span
|
|
466
|
-
class="method-args">()</span>
|
|
467
|
-
|
|
468
|
-
<span class="method-click-advice">click to toggle source</span>
|
|
469
|
-
|
|
470
|
-
</div>
|
|
471
|
-
|
|
472
|
-
|
|
473
|
-
<div class="method-description">
|
|
474
|
-
|
|
475
|
-
<p>Not Implemented. You cannot delete a <a href="Stat.html">Stat</a>.</p>
|
|
476
|
-
|
|
477
|
-
|
|
478
|
-
|
|
479
|
-
|
|
480
|
-
<div class="method-source-code" id="destroy-source">
|
|
481
|
-
<pre><span class="ruby-comment"># File lib/esp/resources/stat.rb, line 39</span>
|
|
482
|
-
</pre>
|
|
483
|
-
</div><!-- destroy-source -->
|
|
484
|
-
|
|
485
|
-
</div>
|
|
486
|
-
|
|
487
|
-
|
|
488
|
-
|
|
489
|
-
|
|
490
|
-
</div><!-- destroy-method -->
|
|
491
|
-
|
|
492
|
-
|
|
493
|
-
<div id="method-i-regions" class="method-detail ">
|
|
494
|
-
|
|
495
|
-
<div class="method-heading">
|
|
496
|
-
<span class="method-name">regions</span><span
|
|
497
|
-
class="method-args">()</span>
|
|
498
|
-
|
|
499
|
-
<span class="method-click-advice">click to toggle source</span>
|
|
500
|
-
|
|
501
|
-
</div>
|
|
502
|
-
|
|
503
|
-
|
|
504
|
-
<div class="method-description">
|
|
505
|
-
|
|
506
|
-
<p>The stats for each region associated with this stat object.</p>
|
|
507
|
-
|
|
508
|
-
|
|
509
|
-
|
|
510
|
-
|
|
511
|
-
<div class="method-source-code" id="regions-source">
|
|
512
|
-
<pre><span class="ruby-comment"># File lib/esp/resources/stat.rb, line 11</span>
|
|
513
|
-
<span class="ruby-identifier">has_many</span> <span class="ruby-value">:regions</span>, <span class="ruby-identifier">class_name</span><span class="ruby-operator">:</span> <span class="ruby-string">'ESP::StatRegion'</span>
|
|
514
|
-
</pre>
|
|
515
|
-
</div><!-- regions-source -->
|
|
516
|
-
|
|
517
|
-
</div>
|
|
518
|
-
|
|
519
|
-
|
|
520
|
-
|
|
521
|
-
|
|
522
|
-
</div><!-- regions-method -->
|
|
523
|
-
|
|
524
|
-
|
|
525
|
-
<div id="method-i-report" class="method-detail ">
|
|
526
|
-
|
|
527
|
-
<div class="method-heading">
|
|
528
|
-
<span class="method-name">report</span><span
|
|
529
|
-
class="method-args">()</span>
|
|
530
|
-
|
|
531
|
-
<span class="method-click-advice">click to toggle source</span>
|
|
532
|
-
|
|
533
|
-
</div>
|
|
534
|
-
|
|
535
|
-
|
|
536
|
-
<div class="method-description">
|
|
537
|
-
|
|
538
|
-
<p>The report these stats are for.</p>
|
|
539
|
-
|
|
540
|
-
|
|
541
|
-
|
|
542
|
-
|
|
543
|
-
<div class="method-source-code" id="report-source">
|
|
544
|
-
<pre><span class="ruby-comment"># File lib/esp/resources/stat.rb, line 7</span>
|
|
545
|
-
<span class="ruby-identifier">belongs_to</span> <span class="ruby-value">:report</span>, <span class="ruby-identifier">class_name</span><span class="ruby-operator">:</span> <span class="ruby-string">'ESP::Report'</span>
|
|
546
|
-
</pre>
|
|
547
|
-
</div><!-- report-source -->
|
|
548
|
-
|
|
549
|
-
</div>
|
|
550
|
-
|
|
551
|
-
|
|
552
|
-
|
|
553
|
-
|
|
554
|
-
</div><!-- report-method -->
|
|
555
|
-
|
|
556
|
-
|
|
557
|
-
<div id="method-i-save" class="method-detail ">
|
|
558
|
-
|
|
559
|
-
<div class="method-heading">
|
|
560
|
-
<span class="method-name">save</span><span
|
|
561
|
-
class="method-args">()</span>
|
|
562
|
-
|
|
563
|
-
<span class="method-click-advice">click to toggle source</span>
|
|
564
|
-
|
|
565
|
-
</div>
|
|
566
|
-
|
|
567
|
-
|
|
568
|
-
<div class="method-description">
|
|
569
|
-
|
|
570
|
-
<p>Not Implemented. You cannot create or update a <a
|
|
571
|
-
href="Stat.html">Stat</a>.</p>
|
|
572
|
-
|
|
573
|
-
|
|
574
|
-
|
|
575
|
-
|
|
576
|
-
<div class="method-source-code" id="save-source">
|
|
577
|
-
<pre><span class="ruby-comment"># File lib/esp/resources/stat.rb, line 36</span>
|
|
578
|
-
</pre>
|
|
579
|
-
</div><!-- save-source -->
|
|
580
|
-
|
|
581
|
-
</div>
|
|
582
|
-
|
|
583
|
-
|
|
584
|
-
|
|
585
|
-
|
|
586
|
-
</div><!-- save-method -->
|
|
587
|
-
|
|
588
|
-
|
|
589
|
-
<div id="method-i-services" class="method-detail ">
|
|
590
|
-
|
|
591
|
-
<div class="method-heading">
|
|
592
|
-
<span class="method-name">services</span><span
|
|
593
|
-
class="method-args">()</span>
|
|
594
|
-
|
|
595
|
-
<span class="method-click-advice">click to toggle source</span>
|
|
596
|
-
|
|
597
|
-
</div>
|
|
598
|
-
|
|
599
|
-
|
|
600
|
-
<div class="method-description">
|
|
601
|
-
|
|
602
|
-
<p>The stats for each service associated with this stat object.</p>
|
|
603
|
-
|
|
604
|
-
|
|
605
|
-
|
|
606
|
-
|
|
607
|
-
<div class="method-source-code" id="services-source">
|
|
608
|
-
<pre><span class="ruby-comment"># File lib/esp/resources/stat.rb, line 15</span>
|
|
609
|
-
<span class="ruby-identifier">has_many</span> <span class="ruby-value">:services</span>, <span class="ruby-identifier">class_name</span><span class="ruby-operator">:</span> <span class="ruby-string">'ESP::StatService'</span>
|
|
610
|
-
</pre>
|
|
611
|
-
</div><!-- services-source -->
|
|
612
|
-
|
|
613
|
-
</div>
|
|
614
|
-
|
|
615
|
-
|
|
616
|
-
|
|
617
|
-
|
|
618
|
-
</div><!-- services-method -->
|
|
619
|
-
|
|
620
|
-
|
|
621
|
-
<div id="method-i-signatures" class="method-detail ">
|
|
622
|
-
|
|
623
|
-
<div class="method-heading">
|
|
624
|
-
<span class="method-name">signatures</span><span
|
|
625
|
-
class="method-args">()</span>
|
|
626
|
-
|
|
627
|
-
<span class="method-click-advice">click to toggle source</span>
|
|
628
|
-
|
|
629
|
-
</div>
|
|
630
|
-
|
|
631
|
-
|
|
632
|
-
<div class="method-description">
|
|
633
|
-
|
|
634
|
-
<p>The stats for each signature associated with this stat object.</p>
|
|
635
|
-
|
|
636
|
-
|
|
637
|
-
|
|
638
|
-
|
|
639
|
-
<div class="method-source-code" id="signatures-source">
|
|
640
|
-
<pre><span class="ruby-comment"># File lib/esp/resources/stat.rb, line 19</span>
|
|
641
|
-
<span class="ruby-identifier">has_many</span> <span class="ruby-value">:signatures</span>, <span class="ruby-identifier">class_name</span><span class="ruby-operator">:</span> <span class="ruby-string">'ESP::StatSignature'</span>
|
|
642
|
-
</pre>
|
|
643
|
-
</div><!-- signatures-source -->
|
|
644
|
-
|
|
645
|
-
</div>
|
|
646
|
-
|
|
647
|
-
|
|
648
|
-
|
|
649
|
-
|
|
650
|
-
</div><!-- signatures-method -->
|
|
651
|
-
|
|
652
|
-
|
|
653
|
-
</section><!-- public-instance-method-details -->
|
|
654
|
-
|
|
655
|
-
</section><!-- 5Buntitled-5D -->
|
|
656
|
-
|
|
657
|
-
|
|
658
|
-
|
|
659
|
-
<section id="27total-27+rollup+methods" class="documentation-section">
|
|
660
|
-
|
|
661
|
-
<div class="documentation-section-title">
|
|
662
|
-
<h2 class="section-header">
|
|
663
|
-
'total' rollup methods
|
|
664
|
-
</h2>
|
|
665
|
-
<span class="section-click-top">
|
|
666
|
-
<a href="#top">↑ top</a>
|
|
667
|
-
</span>
|
|
668
|
-
</div>
|
|
669
|
-
|
|
670
|
-
|
|
671
|
-
|
|
672
|
-
|
|
673
|
-
|
|
674
|
-
|
|
675
|
-
|
|
676
|
-
|
|
677
|
-
<!-- Methods -->
|
|
678
|
-
|
|
679
|
-
<section id="public-instance-27total-27+rollup+methods-method-details" class="method-section section">
|
|
680
|
-
<h3 class="section-header">Public Instance Methods</h3>
|
|
681
|
-
|
|
682
|
-
|
|
683
|
-
<div id="method-i-total" class="method-detail ">
|
|
684
|
-
|
|
685
|
-
<div class="method-heading">
|
|
686
|
-
<span class="method-name">total</span><span
|
|
687
|
-
class="method-args">()</span>
|
|
688
|
-
|
|
689
|
-
<span class="method-click-advice">click to toggle source</span>
|
|
690
|
-
|
|
691
|
-
</div>
|
|
692
|
-
|
|
693
|
-
|
|
694
|
-
<div class="method-description">
|
|
695
|
-
|
|
696
|
-
|
|
697
|
-
|
|
698
|
-
|
|
699
|
-
|
|
700
|
-
|
|
701
|
-
<div class="method-source-code" id="total-source">
|
|
702
|
-
<pre><span class="ruby-comment"># File lib/esp/resources/stat.rb, line 56</span>
|
|
703
|
-
</pre>
|
|
704
|
-
</div><!-- total-source -->
|
|
705
|
-
|
|
706
|
-
</div>
|
|
707
|
-
|
|
708
|
-
|
|
709
|
-
|
|
710
|
-
|
|
711
|
-
</div><!-- total-method -->
|
|
712
|
-
|
|
713
|
-
|
|
714
|
-
<div id="method-i-total_error" class="method-detail ">
|
|
715
|
-
|
|
716
|
-
<div class="method-heading">
|
|
717
|
-
<span class="method-name">total_error</span><span
|
|
718
|
-
class="method-args">()</span>
|
|
719
|
-
|
|
720
|
-
<span class="method-click-advice">click to toggle source</span>
|
|
721
|
-
|
|
722
|
-
</div>
|
|
723
|
-
|
|
724
|
-
|
|
725
|
-
<div class="method-description">
|
|
726
|
-
|
|
727
|
-
|
|
728
|
-
|
|
729
|
-
|
|
730
|
-
|
|
731
|
-
|
|
732
|
-
<div class="method-source-code" id="total_error-source">
|
|
733
|
-
<pre><span class="ruby-comment"># File lib/esp/resources/stat.rb, line 64</span>
|
|
734
|
-
</pre>
|
|
735
|
-
</div><!-- total_error-source -->
|
|
736
|
-
|
|
737
|
-
</div>
|
|
738
|
-
|
|
739
|
-
|
|
740
|
-
|
|
741
|
-
|
|
742
|
-
</div><!-- total_error-method -->
|
|
743
|
-
|
|
744
|
-
|
|
745
|
-
<div id="method-i-total_fail" class="method-detail ">
|
|
746
|
-
|
|
747
|
-
<div class="method-heading">
|
|
748
|
-
<span class="method-name">total_fail</span><span
|
|
749
|
-
class="method-args">()</span>
|
|
750
|
-
|
|
751
|
-
<span class="method-click-advice">click to toggle source</span>
|
|
752
|
-
|
|
753
|
-
</div>
|
|
754
|
-
|
|
755
|
-
|
|
756
|
-
<div class="method-description">
|
|
757
|
-
|
|
758
|
-
|
|
759
|
-
|
|
760
|
-
|
|
761
|
-
|
|
762
|
-
|
|
763
|
-
<div class="method-source-code" id="total_fail-source">
|
|
764
|
-
<pre><span class="ruby-comment"># File lib/esp/resources/stat.rb, line 60</span>
|
|
765
|
-
</pre>
|
|
766
|
-
</div><!-- total_fail-source -->
|
|
767
|
-
|
|
768
|
-
</div>
|
|
769
|
-
|
|
770
|
-
|
|
771
|
-
|
|
772
|
-
|
|
773
|
-
</div><!-- total_fail-method -->
|
|
774
|
-
|
|
775
|
-
|
|
776
|
-
<div id="method-i-total_info" class="method-detail ">
|
|
777
|
-
|
|
778
|
-
<div class="method-heading">
|
|
779
|
-
<span class="method-name">total_info</span><span
|
|
780
|
-
class="method-args">()</span>
|
|
781
|
-
|
|
782
|
-
<span class="method-click-advice">click to toggle source</span>
|
|
783
|
-
|
|
784
|
-
</div>
|
|
785
|
-
|
|
786
|
-
|
|
787
|
-
<div class="method-description">
|
|
788
|
-
|
|
789
|
-
|
|
790
|
-
|
|
791
|
-
|
|
792
|
-
|
|
793
|
-
|
|
794
|
-
<div class="method-source-code" id="total_info-source">
|
|
795
|
-
<pre><span class="ruby-comment"># File lib/esp/resources/stat.rb, line 66</span>
|
|
796
|
-
</pre>
|
|
797
|
-
</div><!-- total_info-source -->
|
|
798
|
-
|
|
799
|
-
</div>
|
|
800
|
-
|
|
801
|
-
|
|
802
|
-
|
|
803
|
-
|
|
804
|
-
</div><!-- total_info-method -->
|
|
805
|
-
|
|
806
|
-
|
|
807
|
-
<div id="method-i-total_new_1d" class="method-detail ">
|
|
808
|
-
|
|
809
|
-
<div class="method-heading">
|
|
810
|
-
<span class="method-name">total_new_1d</span><span
|
|
811
|
-
class="method-args">()</span>
|
|
812
|
-
|
|
813
|
-
<span class="method-click-advice">click to toggle source</span>
|
|
814
|
-
|
|
815
|
-
</div>
|
|
816
|
-
|
|
817
|
-
|
|
818
|
-
<div class="method-description">
|
|
819
|
-
|
|
820
|
-
|
|
821
|
-
|
|
822
|
-
|
|
823
|
-
|
|
824
|
-
|
|
825
|
-
<div class="method-source-code" id="total_new_1d-source">
|
|
826
|
-
<pre><span class="ruby-comment"># File lib/esp/resources/stat.rb, line 120</span>
|
|
827
|
-
</pre>
|
|
828
|
-
</div><!-- total_new_1d-source -->
|
|
829
|
-
|
|
830
|
-
</div>
|
|
831
|
-
|
|
832
|
-
|
|
833
|
-
|
|
834
|
-
|
|
835
|
-
</div><!-- total_new_1d-method -->
|
|
836
|
-
|
|
837
|
-
|
|
838
|
-
<div id="method-i-total_new_1d_error" class="method-detail ">
|
|
839
|
-
|
|
840
|
-
<div class="method-heading">
|
|
841
|
-
<span class="method-name">total_new_1d_error</span><span
|
|
842
|
-
class="method-args">()</span>
|
|
843
|
-
|
|
844
|
-
<span class="method-click-advice">click to toggle source</span>
|
|
845
|
-
|
|
846
|
-
</div>
|
|
847
|
-
|
|
848
|
-
|
|
849
|
-
<div class="method-description">
|
|
850
|
-
|
|
851
|
-
|
|
852
|
-
|
|
853
|
-
|
|
854
|
-
|
|
855
|
-
|
|
856
|
-
<div class="method-source-code" id="total_new_1d_error-source">
|
|
857
|
-
<pre><span class="ruby-comment"># File lib/esp/resources/stat.rb, line 84</span>
|
|
858
|
-
</pre>
|
|
859
|
-
</div><!-- total_new_1d_error-source -->
|
|
860
|
-
|
|
861
|
-
</div>
|
|
862
|
-
|
|
863
|
-
|
|
864
|
-
|
|
865
|
-
|
|
866
|
-
</div><!-- total_new_1d_error-method -->
|
|
867
|
-
|
|
868
|
-
|
|
869
|
-
<div id="method-i-total_new_1d_fail" class="method-detail ">
|
|
870
|
-
|
|
871
|
-
<div class="method-heading">
|
|
872
|
-
<span class="method-name">total_new_1d_fail</span><span
|
|
873
|
-
class="method-args">()</span>
|
|
874
|
-
|
|
875
|
-
<span class="method-click-advice">click to toggle source</span>
|
|
876
|
-
|
|
877
|
-
</div>
|
|
878
|
-
|
|
879
|
-
|
|
880
|
-
<div class="method-description">
|
|
881
|
-
|
|
882
|
-
|
|
883
|
-
|
|
884
|
-
|
|
885
|
-
|
|
886
|
-
|
|
887
|
-
<div class="method-source-code" id="total_new_1d_fail-source">
|
|
888
|
-
<pre><span class="ruby-comment"># File lib/esp/resources/stat.rb, line 80</span>
|
|
889
|
-
</pre>
|
|
890
|
-
</div><!-- total_new_1d_fail-source -->
|
|
891
|
-
|
|
892
|
-
</div>
|
|
893
|
-
|
|
894
|
-
|
|
895
|
-
|
|
896
|
-
|
|
897
|
-
</div><!-- total_new_1d_fail-method -->
|
|
898
|
-
|
|
899
|
-
|
|
900
|
-
<div id="method-i-total_new_1d_info" class="method-detail ">
|
|
901
|
-
|
|
902
|
-
<div class="method-heading">
|
|
903
|
-
<span class="method-name">total_new_1d_info</span><span
|
|
904
|
-
class="method-args">()</span>
|
|
905
|
-
|
|
906
|
-
<span class="method-click-advice">click to toggle source</span>
|
|
907
|
-
|
|
908
|
-
</div>
|
|
909
|
-
|
|
910
|
-
|
|
911
|
-
<div class="method-description">
|
|
912
|
-
|
|
913
|
-
|
|
914
|
-
|
|
915
|
-
|
|
916
|
-
|
|
917
|
-
|
|
918
|
-
<div class="method-source-code" id="total_new_1d_info-source">
|
|
919
|
-
<pre><span class="ruby-comment"># File lib/esp/resources/stat.rb, line 86</span>
|
|
920
|
-
</pre>
|
|
921
|
-
</div><!-- total_new_1d_info-source -->
|
|
922
|
-
|
|
923
|
-
</div>
|
|
924
|
-
|
|
925
|
-
|
|
926
|
-
|
|
927
|
-
|
|
928
|
-
</div><!-- total_new_1d_info-method -->
|
|
929
|
-
|
|
930
|
-
|
|
931
|
-
<div id="method-i-total_new_1d_pass" class="method-detail ">
|
|
932
|
-
|
|
933
|
-
<div class="method-heading">
|
|
934
|
-
<span class="method-name">total_new_1d_pass</span><span
|
|
935
|
-
class="method-args">()</span>
|
|
936
|
-
|
|
937
|
-
<span class="method-click-advice">click to toggle source</span>
|
|
938
|
-
|
|
939
|
-
</div>
|
|
940
|
-
|
|
941
|
-
|
|
942
|
-
<div class="method-description">
|
|
943
|
-
|
|
944
|
-
|
|
945
|
-
|
|
946
|
-
|
|
947
|
-
|
|
948
|
-
|
|
949
|
-
<div class="method-source-code" id="total_new_1d_pass-source">
|
|
950
|
-
<pre><span class="ruby-comment"># File lib/esp/resources/stat.rb, line 78</span>
|
|
951
|
-
</pre>
|
|
952
|
-
</div><!-- total_new_1d_pass-source -->
|
|
953
|
-
|
|
954
|
-
</div>
|
|
955
|
-
|
|
956
|
-
|
|
957
|
-
|
|
958
|
-
|
|
959
|
-
</div><!-- total_new_1d_pass-method -->
|
|
960
|
-
|
|
961
|
-
|
|
962
|
-
<div id="method-i-total_new_1d_warn" class="method-detail ">
|
|
963
|
-
|
|
964
|
-
<div class="method-heading">
|
|
965
|
-
<span class="method-name">total_new_1d_warn</span><span
|
|
966
|
-
class="method-args">()</span>
|
|
967
|
-
|
|
968
|
-
<span class="method-click-advice">click to toggle source</span>
|
|
969
|
-
|
|
970
|
-
</div>
|
|
971
|
-
|
|
972
|
-
|
|
973
|
-
<div class="method-description">
|
|
974
|
-
|
|
975
|
-
|
|
976
|
-
|
|
977
|
-
|
|
978
|
-
|
|
979
|
-
|
|
980
|
-
<div class="method-source-code" id="total_new_1d_warn-source">
|
|
981
|
-
<pre><span class="ruby-comment"># File lib/esp/resources/stat.rb, line 82</span>
|
|
982
|
-
</pre>
|
|
983
|
-
</div><!-- total_new_1d_warn-source -->
|
|
984
|
-
|
|
985
|
-
</div>
|
|
986
|
-
|
|
987
|
-
|
|
988
|
-
|
|
989
|
-
|
|
990
|
-
</div><!-- total_new_1d_warn-method -->
|
|
991
|
-
|
|
992
|
-
|
|
993
|
-
<div id="method-i-total_new_1h" class="method-detail ">
|
|
994
|
-
|
|
995
|
-
<div class="method-heading">
|
|
996
|
-
<span class="method-name">total_new_1h</span><span
|
|
997
|
-
class="method-args">()</span>
|
|
998
|
-
|
|
999
|
-
<span class="method-click-advice">click to toggle source</span>
|
|
1000
|
-
|
|
1001
|
-
</div>
|
|
1002
|
-
|
|
1003
|
-
|
|
1004
|
-
<div class="method-description">
|
|
1005
|
-
|
|
1006
|
-
|
|
1007
|
-
|
|
1008
|
-
|
|
1009
|
-
|
|
1010
|
-
|
|
1011
|
-
<div class="method-source-code" id="total_new_1h-source">
|
|
1012
|
-
<pre><span class="ruby-comment"># File lib/esp/resources/stat.rb, line 118</span>
|
|
1013
|
-
</pre>
|
|
1014
|
-
</div><!-- total_new_1h-source -->
|
|
1015
|
-
|
|
1016
|
-
</div>
|
|
1017
|
-
|
|
1018
|
-
|
|
1019
|
-
|
|
1020
|
-
|
|
1021
|
-
</div><!-- total_new_1h-method -->
|
|
1022
|
-
|
|
1023
|
-
|
|
1024
|
-
<div id="method-i-total_new_1h_error" class="method-detail ">
|
|
1025
|
-
|
|
1026
|
-
<div class="method-heading">
|
|
1027
|
-
<span class="method-name">total_new_1h_error</span><span
|
|
1028
|
-
class="method-args">()</span>
|
|
1029
|
-
|
|
1030
|
-
<span class="method-click-advice">click to toggle source</span>
|
|
1031
|
-
|
|
1032
|
-
</div>
|
|
1033
|
-
|
|
1034
|
-
|
|
1035
|
-
<div class="method-description">
|
|
1036
|
-
|
|
1037
|
-
|
|
1038
|
-
|
|
1039
|
-
|
|
1040
|
-
|
|
1041
|
-
|
|
1042
|
-
<div class="method-source-code" id="total_new_1h_error-source">
|
|
1043
|
-
<pre><span class="ruby-comment"># File lib/esp/resources/stat.rb, line 74</span>
|
|
1044
|
-
</pre>
|
|
1045
|
-
</div><!-- total_new_1h_error-source -->
|
|
1046
|
-
|
|
1047
|
-
</div>
|
|
1048
|
-
|
|
1049
|
-
|
|
1050
|
-
|
|
1051
|
-
|
|
1052
|
-
</div><!-- total_new_1h_error-method -->
|
|
1053
|
-
|
|
1054
|
-
|
|
1055
|
-
<div id="method-i-total_new_1h_fail" class="method-detail ">
|
|
1056
|
-
|
|
1057
|
-
<div class="method-heading">
|
|
1058
|
-
<span class="method-name">total_new_1h_fail</span><span
|
|
1059
|
-
class="method-args">()</span>
|
|
1060
|
-
|
|
1061
|
-
<span class="method-click-advice">click to toggle source</span>
|
|
1062
|
-
|
|
1063
|
-
</div>
|
|
1064
|
-
|
|
1065
|
-
|
|
1066
|
-
<div class="method-description">
|
|
1067
|
-
|
|
1068
|
-
|
|
1069
|
-
|
|
1070
|
-
|
|
1071
|
-
|
|
1072
|
-
|
|
1073
|
-
<div class="method-source-code" id="total_new_1h_fail-source">
|
|
1074
|
-
<pre><span class="ruby-comment"># File lib/esp/resources/stat.rb, line 70</span>
|
|
1075
|
-
</pre>
|
|
1076
|
-
</div><!-- total_new_1h_fail-source -->
|
|
1077
|
-
|
|
1078
|
-
</div>
|
|
1079
|
-
|
|
1080
|
-
|
|
1081
|
-
|
|
1082
|
-
|
|
1083
|
-
</div><!-- total_new_1h_fail-method -->
|
|
1084
|
-
|
|
1085
|
-
|
|
1086
|
-
<div id="method-i-total_new_1h_info" class="method-detail ">
|
|
1087
|
-
|
|
1088
|
-
<div class="method-heading">
|
|
1089
|
-
<span class="method-name">total_new_1h_info</span><span
|
|
1090
|
-
class="method-args">()</span>
|
|
1091
|
-
|
|
1092
|
-
<span class="method-click-advice">click to toggle source</span>
|
|
1093
|
-
|
|
1094
|
-
</div>
|
|
1095
|
-
|
|
1096
|
-
|
|
1097
|
-
<div class="method-description">
|
|
1098
|
-
|
|
1099
|
-
|
|
1100
|
-
|
|
1101
|
-
|
|
1102
|
-
|
|
1103
|
-
|
|
1104
|
-
<div class="method-source-code" id="total_new_1h_info-source">
|
|
1105
|
-
<pre><span class="ruby-comment"># File lib/esp/resources/stat.rb, line 76</span>
|
|
1106
|
-
</pre>
|
|
1107
|
-
</div><!-- total_new_1h_info-source -->
|
|
1108
|
-
|
|
1109
|
-
</div>
|
|
1110
|
-
|
|
1111
|
-
|
|
1112
|
-
|
|
1113
|
-
|
|
1114
|
-
</div><!-- total_new_1h_info-method -->
|
|
1115
|
-
|
|
1116
|
-
|
|
1117
|
-
<div id="method-i-total_new_1h_pass" class="method-detail ">
|
|
1118
|
-
|
|
1119
|
-
<div class="method-heading">
|
|
1120
|
-
<span class="method-name">total_new_1h_pass</span><span
|
|
1121
|
-
class="method-args">()</span>
|
|
1122
|
-
|
|
1123
|
-
<span class="method-click-advice">click to toggle source</span>
|
|
1124
|
-
|
|
1125
|
-
</div>
|
|
1126
|
-
|
|
1127
|
-
|
|
1128
|
-
<div class="method-description">
|
|
1129
|
-
|
|
1130
|
-
|
|
1131
|
-
|
|
1132
|
-
|
|
1133
|
-
|
|
1134
|
-
|
|
1135
|
-
<div class="method-source-code" id="total_new_1h_pass-source">
|
|
1136
|
-
<pre><span class="ruby-comment"># File lib/esp/resources/stat.rb, line 68</span>
|
|
1137
|
-
</pre>
|
|
1138
|
-
</div><!-- total_new_1h_pass-source -->
|
|
1139
|
-
|
|
1140
|
-
</div>
|
|
1141
|
-
|
|
1142
|
-
|
|
1143
|
-
|
|
1144
|
-
|
|
1145
|
-
</div><!-- total_new_1h_pass-method -->
|
|
1146
|
-
|
|
1147
|
-
|
|
1148
|
-
<div id="method-i-total_new_1h_warn" class="method-detail ">
|
|
1149
|
-
|
|
1150
|
-
<div class="method-heading">
|
|
1151
|
-
<span class="method-name">total_new_1h_warn</span><span
|
|
1152
|
-
class="method-args">()</span>
|
|
1153
|
-
|
|
1154
|
-
<span class="method-click-advice">click to toggle source</span>
|
|
1155
|
-
|
|
1156
|
-
</div>
|
|
1157
|
-
|
|
1158
|
-
|
|
1159
|
-
<div class="method-description">
|
|
1160
|
-
|
|
1161
|
-
|
|
1162
|
-
|
|
1163
|
-
|
|
1164
|
-
|
|
1165
|
-
|
|
1166
|
-
<div class="method-source-code" id="total_new_1h_warn-source">
|
|
1167
|
-
<pre><span class="ruby-comment"># File lib/esp/resources/stat.rb, line 72</span>
|
|
1168
|
-
</pre>
|
|
1169
|
-
</div><!-- total_new_1h_warn-source -->
|
|
1170
|
-
|
|
1171
|
-
</div>
|
|
1172
|
-
|
|
1173
|
-
|
|
1174
|
-
|
|
1175
|
-
|
|
1176
|
-
</div><!-- total_new_1h_warn-method -->
|
|
1177
|
-
|
|
1178
|
-
|
|
1179
|
-
<div id="method-i-total_new_1w" class="method-detail ">
|
|
1180
|
-
|
|
1181
|
-
<div class="method-heading">
|
|
1182
|
-
<span class="method-name">total_new_1w</span><span
|
|
1183
|
-
class="method-args">()</span>
|
|
1184
|
-
|
|
1185
|
-
<span class="method-click-advice">click to toggle source</span>
|
|
1186
|
-
|
|
1187
|
-
</div>
|
|
1188
|
-
|
|
1189
|
-
|
|
1190
|
-
<div class="method-description">
|
|
1191
|
-
|
|
1192
|
-
|
|
1193
|
-
|
|
1194
|
-
|
|
1195
|
-
|
|
1196
|
-
|
|
1197
|
-
<div class="method-source-code" id="total_new_1w-source">
|
|
1198
|
-
<pre><span class="ruby-comment"># File lib/esp/resources/stat.rb, line 122</span>
|
|
1199
|
-
</pre>
|
|
1200
|
-
</div><!-- total_new_1w-source -->
|
|
1201
|
-
|
|
1202
|
-
</div>
|
|
1203
|
-
|
|
1204
|
-
|
|
1205
|
-
|
|
1206
|
-
|
|
1207
|
-
</div><!-- total_new_1w-method -->
|
|
1208
|
-
|
|
1209
|
-
|
|
1210
|
-
<div id="method-i-total_new_1w_error" class="method-detail ">
|
|
1211
|
-
|
|
1212
|
-
<div class="method-heading">
|
|
1213
|
-
<span class="method-name">total_new_1w_error</span><span
|
|
1214
|
-
class="method-args">()</span>
|
|
1215
|
-
|
|
1216
|
-
<span class="method-click-advice">click to toggle source</span>
|
|
1217
|
-
|
|
1218
|
-
</div>
|
|
1219
|
-
|
|
1220
|
-
|
|
1221
|
-
<div class="method-description">
|
|
1222
|
-
|
|
1223
|
-
|
|
1224
|
-
|
|
1225
|
-
|
|
1226
|
-
|
|
1227
|
-
|
|
1228
|
-
<div class="method-source-code" id="total_new_1w_error-source">
|
|
1229
|
-
<pre><span class="ruby-comment"># File lib/esp/resources/stat.rb, line 92</span>
|
|
1230
|
-
</pre>
|
|
1231
|
-
</div><!-- total_new_1w_error-source -->
|
|
1232
|
-
|
|
1233
|
-
</div>
|
|
1234
|
-
|
|
1235
|
-
|
|
1236
|
-
|
|
1237
|
-
|
|
1238
|
-
</div><!-- total_new_1w_error-method -->
|
|
1239
|
-
|
|
1240
|
-
|
|
1241
|
-
<div id="method-i-total_new_1w_fail" class="method-detail ">
|
|
1242
|
-
|
|
1243
|
-
<div class="method-heading">
|
|
1244
|
-
<span class="method-name">total_new_1w_fail</span><span
|
|
1245
|
-
class="method-args">()</span>
|
|
1246
|
-
|
|
1247
|
-
<span class="method-click-advice">click to toggle source</span>
|
|
1248
|
-
|
|
1249
|
-
</div>
|
|
1250
|
-
|
|
1251
|
-
|
|
1252
|
-
<div class="method-description">
|
|
1253
|
-
|
|
1254
|
-
|
|
1255
|
-
|
|
1256
|
-
|
|
1257
|
-
|
|
1258
|
-
|
|
1259
|
-
<div class="method-source-code" id="total_new_1w_fail-source">
|
|
1260
|
-
<pre><span class="ruby-comment"># File lib/esp/resources/stat.rb, line 90</span>
|
|
1261
|
-
</pre>
|
|
1262
|
-
</div><!-- total_new_1w_fail-source -->
|
|
1263
|
-
|
|
1264
|
-
</div>
|
|
1265
|
-
|
|
1266
|
-
|
|
1267
|
-
|
|
1268
|
-
|
|
1269
|
-
</div><!-- total_new_1w_fail-method -->
|
|
1270
|
-
|
|
1271
|
-
|
|
1272
|
-
<div id="method-i-total_new_1w_info" class="method-detail ">
|
|
1273
|
-
|
|
1274
|
-
<div class="method-heading">
|
|
1275
|
-
<span class="method-name">total_new_1w_info</span><span
|
|
1276
|
-
class="method-args">()</span>
|
|
1277
|
-
|
|
1278
|
-
<span class="method-click-advice">click to toggle source</span>
|
|
1279
|
-
|
|
1280
|
-
</div>
|
|
1281
|
-
|
|
1282
|
-
|
|
1283
|
-
<div class="method-description">
|
|
1284
|
-
|
|
1285
|
-
|
|
1286
|
-
|
|
1287
|
-
|
|
1288
|
-
|
|
1289
|
-
|
|
1290
|
-
<div class="method-source-code" id="total_new_1w_info-source">
|
|
1291
|
-
<pre><span class="ruby-comment"># File lib/esp/resources/stat.rb, line 94</span>
|
|
1292
|
-
</pre>
|
|
1293
|
-
</div><!-- total_new_1w_info-source -->
|
|
1294
|
-
|
|
1295
|
-
</div>
|
|
1296
|
-
|
|
1297
|
-
|
|
1298
|
-
|
|
1299
|
-
|
|
1300
|
-
</div><!-- total_new_1w_info-method -->
|
|
1301
|
-
|
|
1302
|
-
|
|
1303
|
-
<div id="method-i-total_new_1w_pass" class="method-detail ">
|
|
1304
|
-
|
|
1305
|
-
<div class="method-heading">
|
|
1306
|
-
<span class="method-name">total_new_1w_pass</span><span
|
|
1307
|
-
class="method-args">()</span>
|
|
1308
|
-
|
|
1309
|
-
<span class="method-click-advice">click to toggle source</span>
|
|
1310
|
-
|
|
1311
|
-
</div>
|
|
1312
|
-
|
|
1313
|
-
|
|
1314
|
-
<div class="method-description">
|
|
1315
|
-
|
|
1316
|
-
|
|
1317
|
-
|
|
1318
|
-
|
|
1319
|
-
|
|
1320
|
-
|
|
1321
|
-
<div class="method-source-code" id="total_new_1w_pass-source">
|
|
1322
|
-
<pre><span class="ruby-comment"># File lib/esp/resources/stat.rb, line 88</span>
|
|
1323
|
-
</pre>
|
|
1324
|
-
</div><!-- total_new_1w_pass-source -->
|
|
1325
|
-
|
|
1326
|
-
</div>
|
|
1327
|
-
|
|
1328
|
-
|
|
1329
|
-
|
|
1330
|
-
|
|
1331
|
-
</div><!-- total_new_1w_pass-method -->
|
|
1332
|
-
|
|
1333
|
-
|
|
1334
|
-
<div id="method-i-total_new_1w_warn" class="method-detail ">
|
|
1335
|
-
|
|
1336
|
-
<div class="method-heading">
|
|
1337
|
-
<span class="method-name">total_new_1w_warn</span><span
|
|
1338
|
-
class="method-args">()</span>
|
|
1339
|
-
|
|
1340
|
-
<span class="method-click-advice">click to toggle source</span>
|
|
1341
|
-
|
|
1342
|
-
</div>
|
|
1343
|
-
|
|
1344
|
-
|
|
1345
|
-
<div class="method-description">
|
|
1346
|
-
|
|
1347
|
-
|
|
1348
|
-
|
|
1349
|
-
|
|
1350
|
-
|
|
1351
|
-
|
|
1352
|
-
<div class="method-source-code" id="total_new_1w_warn-source">
|
|
1353
|
-
<pre><span class="ruby-comment"># File lib/esp/resources/stat.rb, line 96</span>
|
|
1354
|
-
</pre>
|
|
1355
|
-
</div><!-- total_new_1w_warn-source -->
|
|
1356
|
-
|
|
1357
|
-
</div>
|
|
1358
|
-
|
|
1359
|
-
|
|
1360
|
-
|
|
1361
|
-
|
|
1362
|
-
</div><!-- total_new_1w_warn-method -->
|
|
1363
|
-
|
|
1364
|
-
|
|
1365
|
-
<div id="method-i-total_old" class="method-detail ">
|
|
1366
|
-
|
|
1367
|
-
<div class="method-heading">
|
|
1368
|
-
<span class="method-name">total_old</span><span
|
|
1369
|
-
class="method-args">()</span>
|
|
1370
|
-
|
|
1371
|
-
<span class="method-click-advice">click to toggle source</span>
|
|
1372
|
-
|
|
1373
|
-
</div>
|
|
1374
|
-
|
|
1375
|
-
|
|
1376
|
-
<div class="method-description">
|
|
1377
|
-
|
|
1378
|
-
|
|
1379
|
-
|
|
1380
|
-
|
|
1381
|
-
|
|
1382
|
-
|
|
1383
|
-
<div class="method-source-code" id="total_old-source">
|
|
1384
|
-
<pre><span class="ruby-comment"># File lib/esp/resources/stat.rb, line 123</span>
|
|
1385
|
-
</pre>
|
|
1386
|
-
</div><!-- total_old-source -->
|
|
1387
|
-
|
|
1388
|
-
</div>
|
|
1389
|
-
|
|
1390
|
-
|
|
1391
|
-
|
|
1392
|
-
|
|
1393
|
-
</div><!-- total_old-method -->
|
|
1394
|
-
|
|
1395
|
-
|
|
1396
|
-
<div id="method-i-total_old_error" class="method-detail ">
|
|
1397
|
-
|
|
1398
|
-
<div class="method-heading">
|
|
1399
|
-
<span class="method-name">total_old_error</span><span
|
|
1400
|
-
class="method-args">()</span>
|
|
1401
|
-
|
|
1402
|
-
<span class="method-click-advice">click to toggle source</span>
|
|
1403
|
-
|
|
1404
|
-
</div>
|
|
1405
|
-
|
|
1406
|
-
|
|
1407
|
-
<div class="method-description">
|
|
1408
|
-
|
|
1409
|
-
|
|
1410
|
-
|
|
1411
|
-
|
|
1412
|
-
|
|
1413
|
-
|
|
1414
|
-
<div class="method-source-code" id="total_old_error-source">
|
|
1415
|
-
<pre><span class="ruby-comment"># File lib/esp/resources/stat.rb, line 104</span>
|
|
1416
|
-
</pre>
|
|
1417
|
-
</div><!-- total_old_error-source -->
|
|
1418
|
-
|
|
1419
|
-
</div>
|
|
1420
|
-
|
|
1421
|
-
|
|
1422
|
-
|
|
1423
|
-
|
|
1424
|
-
</div><!-- total_old_error-method -->
|
|
1425
|
-
|
|
1426
|
-
|
|
1427
|
-
<div id="method-i-total_old_fail" class="method-detail ">
|
|
1428
|
-
|
|
1429
|
-
<div class="method-heading">
|
|
1430
|
-
<span class="method-name">total_old_fail</span><span
|
|
1431
|
-
class="method-args">()</span>
|
|
1432
|
-
|
|
1433
|
-
<span class="method-click-advice">click to toggle source</span>
|
|
1434
|
-
|
|
1435
|
-
</div>
|
|
1436
|
-
|
|
1437
|
-
|
|
1438
|
-
<div class="method-description">
|
|
1439
|
-
|
|
1440
|
-
|
|
1441
|
-
|
|
1442
|
-
|
|
1443
|
-
|
|
1444
|
-
|
|
1445
|
-
<div class="method-source-code" id="total_old_fail-source">
|
|
1446
|
-
<pre><span class="ruby-comment"># File lib/esp/resources/stat.rb, line 98</span>
|
|
1447
|
-
</pre>
|
|
1448
|
-
</div><!-- total_old_fail-source -->
|
|
1449
|
-
|
|
1450
|
-
</div>
|
|
1451
|
-
|
|
1452
|
-
|
|
1453
|
-
|
|
1454
|
-
|
|
1455
|
-
</div><!-- total_old_fail-method -->
|
|
1456
|
-
|
|
1457
|
-
|
|
1458
|
-
<div id="method-i-total_old_info" class="method-detail ">
|
|
1459
|
-
|
|
1460
|
-
<div class="method-heading">
|
|
1461
|
-
<span class="method-name">total_old_info</span><span
|
|
1462
|
-
class="method-args">()</span>
|
|
1463
|
-
|
|
1464
|
-
<span class="method-click-advice">click to toggle source</span>
|
|
1465
|
-
|
|
1466
|
-
</div>
|
|
1467
|
-
|
|
1468
|
-
|
|
1469
|
-
<div class="method-description">
|
|
1470
|
-
|
|
1471
|
-
|
|
1472
|
-
|
|
1473
|
-
|
|
1474
|
-
|
|
1475
|
-
|
|
1476
|
-
<div class="method-source-code" id="total_old_info-source">
|
|
1477
|
-
<pre><span class="ruby-comment"># File lib/esp/resources/stat.rb, line 106</span>
|
|
1478
|
-
</pre>
|
|
1479
|
-
</div><!-- total_old_info-source -->
|
|
1480
|
-
|
|
1481
|
-
</div>
|
|
1482
|
-
|
|
1483
|
-
|
|
1484
|
-
|
|
1485
|
-
|
|
1486
|
-
</div><!-- total_old_info-method -->
|
|
1487
|
-
|
|
1488
|
-
|
|
1489
|
-
<div id="method-i-total_old_pass" class="method-detail ">
|
|
1490
|
-
|
|
1491
|
-
<div class="method-heading">
|
|
1492
|
-
<span class="method-name">total_old_pass</span><span
|
|
1493
|
-
class="method-args">()</span>
|
|
1494
|
-
|
|
1495
|
-
<span class="method-click-advice">click to toggle source</span>
|
|
1496
|
-
|
|
1497
|
-
</div>
|
|
1498
|
-
|
|
1499
|
-
|
|
1500
|
-
<div class="method-description">
|
|
1501
|
-
|
|
1502
|
-
|
|
1503
|
-
|
|
1504
|
-
|
|
1505
|
-
|
|
1506
|
-
|
|
1507
|
-
<div class="method-source-code" id="total_old_pass-source">
|
|
1508
|
-
<pre><span class="ruby-comment"># File lib/esp/resources/stat.rb, line 100</span>
|
|
1509
|
-
</pre>
|
|
1510
|
-
</div><!-- total_old_pass-source -->
|
|
1511
|
-
|
|
1512
|
-
</div>
|
|
1513
|
-
|
|
1514
|
-
|
|
1515
|
-
|
|
1516
|
-
|
|
1517
|
-
</div><!-- total_old_pass-method -->
|
|
1518
|
-
|
|
1519
|
-
|
|
1520
|
-
<div id="method-i-total_old_warn" class="method-detail ">
|
|
1521
|
-
|
|
1522
|
-
<div class="method-heading">
|
|
1523
|
-
<span class="method-name">total_old_warn</span><span
|
|
1524
|
-
class="method-args">()</span>
|
|
1525
|
-
|
|
1526
|
-
<span class="method-click-advice">click to toggle source</span>
|
|
1527
|
-
|
|
1528
|
-
</div>
|
|
1529
|
-
|
|
1530
|
-
|
|
1531
|
-
<div class="method-description">
|
|
1532
|
-
|
|
1533
|
-
|
|
1534
|
-
|
|
1535
|
-
|
|
1536
|
-
|
|
1537
|
-
|
|
1538
|
-
<div class="method-source-code" id="total_old_warn-source">
|
|
1539
|
-
<pre><span class="ruby-comment"># File lib/esp/resources/stat.rb, line 102</span>
|
|
1540
|
-
</pre>
|
|
1541
|
-
</div><!-- total_old_warn-source -->
|
|
1542
|
-
|
|
1543
|
-
</div>
|
|
1544
|
-
|
|
1545
|
-
|
|
1546
|
-
|
|
1547
|
-
|
|
1548
|
-
</div><!-- total_old_warn-method -->
|
|
1549
|
-
|
|
1550
|
-
|
|
1551
|
-
<div id="method-i-total_pass" class="method-detail ">
|
|
1552
|
-
|
|
1553
|
-
<div class="method-heading">
|
|
1554
|
-
<span class="method-name">total_pass</span><span
|
|
1555
|
-
class="method-args">()</span>
|
|
1556
|
-
|
|
1557
|
-
<span class="method-click-advice">click to toggle source</span>
|
|
1558
|
-
|
|
1559
|
-
</div>
|
|
1560
|
-
|
|
1561
|
-
|
|
1562
|
-
<div class="method-description">
|
|
1563
|
-
|
|
1564
|
-
|
|
1565
|
-
|
|
1566
|
-
|
|
1567
|
-
|
|
1568
|
-
|
|
1569
|
-
<div class="method-source-code" id="total_pass-source">
|
|
1570
|
-
<pre><span class="ruby-comment"># File lib/esp/resources/stat.rb, line 58</span>
|
|
1571
|
-
</pre>
|
|
1572
|
-
</div><!-- total_pass-source -->
|
|
1573
|
-
|
|
1574
|
-
</div>
|
|
1575
|
-
|
|
1576
|
-
|
|
1577
|
-
|
|
1578
|
-
|
|
1579
|
-
</div><!-- total_pass-method -->
|
|
1580
|
-
|
|
1581
|
-
|
|
1582
|
-
<div id="method-i-total_suppressed" class="method-detail ">
|
|
1583
|
-
|
|
1584
|
-
<div class="method-heading">
|
|
1585
|
-
<span class="method-name">total_suppressed</span><span
|
|
1586
|
-
class="method-args">()</span>
|
|
1587
|
-
|
|
1588
|
-
<span class="method-click-advice">click to toggle source</span>
|
|
1589
|
-
|
|
1590
|
-
</div>
|
|
1591
|
-
|
|
1592
|
-
|
|
1593
|
-
<div class="method-description">
|
|
1594
|
-
|
|
1595
|
-
|
|
1596
|
-
|
|
1597
|
-
|
|
1598
|
-
|
|
1599
|
-
|
|
1600
|
-
<div class="method-source-code" id="total_suppressed-source">
|
|
1601
|
-
<pre><span class="ruby-comment"># File lib/esp/resources/stat.rb, line 108</span>
|
|
1602
|
-
</pre>
|
|
1603
|
-
</div><!-- total_suppressed-source -->
|
|
1604
|
-
|
|
1605
|
-
</div>
|
|
1606
|
-
|
|
1607
|
-
|
|
1608
|
-
|
|
1609
|
-
|
|
1610
|
-
</div><!-- total_suppressed-method -->
|
|
1611
|
-
|
|
1612
|
-
|
|
1613
|
-
<div id="method-i-total_suppressed_error" class="method-detail ">
|
|
1614
|
-
|
|
1615
|
-
<div class="method-heading">
|
|
1616
|
-
<span class="method-name">total_suppressed_error</span><span
|
|
1617
|
-
class="method-args">()</span>
|
|
1618
|
-
|
|
1619
|
-
<span class="method-click-advice">click to toggle source</span>
|
|
1620
|
-
|
|
1621
|
-
</div>
|
|
1622
|
-
|
|
1623
|
-
|
|
1624
|
-
<div class="method-description">
|
|
1625
|
-
|
|
1626
|
-
|
|
1627
|
-
|
|
1628
|
-
|
|
1629
|
-
|
|
1630
|
-
|
|
1631
|
-
<div class="method-source-code" id="total_suppressed_error-source">
|
|
1632
|
-
<pre><span class="ruby-comment"># File lib/esp/resources/stat.rb, line 116</span>
|
|
1633
|
-
</pre>
|
|
1634
|
-
</div><!-- total_suppressed_error-source -->
|
|
1635
|
-
|
|
1636
|
-
</div>
|
|
1637
|
-
|
|
1638
|
-
|
|
1639
|
-
|
|
1640
|
-
|
|
1641
|
-
</div><!-- total_suppressed_error-method -->
|
|
1642
|
-
|
|
1643
|
-
|
|
1644
|
-
<div id="method-i-total_suppressed_fail" class="method-detail ">
|
|
1645
|
-
|
|
1646
|
-
<div class="method-heading">
|
|
1647
|
-
<span class="method-name">total_suppressed_fail</span><span
|
|
1648
|
-
class="method-args">()</span>
|
|
1649
|
-
|
|
1650
|
-
<span class="method-click-advice">click to toggle source</span>
|
|
1651
|
-
|
|
1652
|
-
</div>
|
|
1653
|
-
|
|
1654
|
-
|
|
1655
|
-
<div class="method-description">
|
|
1656
|
-
|
|
1657
|
-
|
|
1658
|
-
|
|
1659
|
-
|
|
1660
|
-
|
|
1661
|
-
|
|
1662
|
-
<div class="method-source-code" id="total_suppressed_fail-source">
|
|
1663
|
-
<pre><span class="ruby-comment"># File lib/esp/resources/stat.rb, line 112</span>
|
|
1664
|
-
</pre>
|
|
1665
|
-
</div><!-- total_suppressed_fail-source -->
|
|
1666
|
-
|
|
1667
|
-
</div>
|
|
1668
|
-
|
|
1669
|
-
|
|
1670
|
-
|
|
1671
|
-
|
|
1672
|
-
</div><!-- total_suppressed_fail-method -->
|
|
1673
|
-
|
|
1674
|
-
|
|
1675
|
-
<div id="method-i-total_suppressed_pass" class="method-detail ">
|
|
1676
|
-
|
|
1677
|
-
<div class="method-heading">
|
|
1678
|
-
<span class="method-name">total_suppressed_pass</span><span
|
|
1679
|
-
class="method-args">()</span>
|
|
1680
|
-
|
|
1681
|
-
<span class="method-click-advice">click to toggle source</span>
|
|
1682
|
-
|
|
1683
|
-
</div>
|
|
1684
|
-
|
|
1685
|
-
|
|
1686
|
-
<div class="method-description">
|
|
1687
|
-
|
|
1688
|
-
|
|
1689
|
-
|
|
1690
|
-
|
|
1691
|
-
|
|
1692
|
-
|
|
1693
|
-
<div class="method-source-code" id="total_suppressed_pass-source">
|
|
1694
|
-
<pre><span class="ruby-comment"># File lib/esp/resources/stat.rb, line 110</span>
|
|
1695
|
-
</pre>
|
|
1696
|
-
</div><!-- total_suppressed_pass-source -->
|
|
1697
|
-
|
|
1698
|
-
</div>
|
|
1699
|
-
|
|
1700
|
-
|
|
1701
|
-
|
|
1702
|
-
|
|
1703
|
-
</div><!-- total_suppressed_pass-method -->
|
|
1704
|
-
|
|
1705
|
-
|
|
1706
|
-
<div id="method-i-total_suppressed_warn" class="method-detail ">
|
|
1707
|
-
|
|
1708
|
-
<div class="method-heading">
|
|
1709
|
-
<span class="method-name">total_suppressed_warn</span><span
|
|
1710
|
-
class="method-args">()</span>
|
|
1711
|
-
|
|
1712
|
-
<span class="method-click-advice">click to toggle source</span>
|
|
1713
|
-
|
|
1714
|
-
</div>
|
|
1715
|
-
|
|
1716
|
-
|
|
1717
|
-
<div class="method-description">
|
|
1718
|
-
|
|
1719
|
-
|
|
1720
|
-
|
|
1721
|
-
|
|
1722
|
-
|
|
1723
|
-
|
|
1724
|
-
<div class="method-source-code" id="total_suppressed_warn-source">
|
|
1725
|
-
<pre><span class="ruby-comment"># File lib/esp/resources/stat.rb, line 114</span>
|
|
1726
|
-
</pre>
|
|
1727
|
-
</div><!-- total_suppressed_warn-source -->
|
|
1728
|
-
|
|
1729
|
-
</div>
|
|
1730
|
-
|
|
1731
|
-
|
|
1732
|
-
|
|
1733
|
-
|
|
1734
|
-
</div><!-- total_suppressed_warn-method -->
|
|
1735
|
-
|
|
1736
|
-
|
|
1737
|
-
<div id="method-i-total_warn" class="method-detail ">
|
|
1738
|
-
|
|
1739
|
-
<div class="method-heading">
|
|
1740
|
-
<span class="method-name">total_warn</span><span
|
|
1741
|
-
class="method-args">()</span>
|
|
1742
|
-
|
|
1743
|
-
<span class="method-click-advice">click to toggle source</span>
|
|
1744
|
-
|
|
1745
|
-
</div>
|
|
1746
|
-
|
|
1747
|
-
|
|
1748
|
-
<div class="method-description">
|
|
1749
|
-
|
|
1750
|
-
|
|
1751
|
-
|
|
1752
|
-
|
|
1753
|
-
|
|
1754
|
-
|
|
1755
|
-
<div class="method-source-code" id="total_warn-source">
|
|
1756
|
-
<pre><span class="ruby-comment"># File lib/esp/resources/stat.rb, line 62</span>
|
|
1757
|
-
</pre>
|
|
1758
|
-
</div><!-- total_warn-source -->
|
|
1759
|
-
|
|
1760
|
-
</div>
|
|
1761
|
-
|
|
1762
|
-
|
|
1763
|
-
|
|
1764
|
-
|
|
1765
|
-
</div><!-- total_warn-method -->
|
|
1766
|
-
|
|
1767
|
-
|
|
1768
|
-
</section><!-- public-instance-method-details -->
|
|
1769
|
-
|
|
1770
|
-
</section><!-- 27total-27+rollup+methods -->
|
|
1771
|
-
|
|
1772
|
-
</div><!-- documentation -->
|
|
1773
|
-
|
|
1774
|
-
|
|
1775
|
-
<footer id="validator-badges">
|
|
1776
|
-
<p><a href="http://validator.w3.org/check/referer">[Validate]</a>
|
|
1777
|
-
<p>Generated by <a href="https://github.com/rdoc/rdoc">RDoc</a> 4.0.0.
|
|
1778
|
-
<p>Generated with the <a href="http://deveiate.org/projects/Darkfish-Rdoc/">Darkfish Rdoc Generator</a> 3.
|
|
1779
|
-
</footer>
|
|
1780
|
-
|