qa_server 2.2.1 → 2.2.2
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/CHANGELOG.md +10 -0
- data/app/assets/stylesheets/qa_server/_monitor-status.scss +8 -0
- data/app/controllers/qa_server/check_status_controller.rb +1 -1
- data/app/controllers/qa_server/monitor_status_controller.rb +71 -13
- data/app/models/concerns/qa_server/performance_history_data_keys.rb +29 -0
- data/app/models/qa_server/performance_history.rb +75 -179
- data/app/prepends/prepended_linked_data/find_term.rb +1 -1
- data/app/prepends/prepended_linked_data/search_query.rb +1 -1
- data/app/presenters/concerns/qa_server/monitor_status/gruff_graph.rb +0 -1
- data/app/presenters/concerns/qa_server/monitor_status/performance_datatable_behavior.rb +101 -0
- data/app/presenters/concerns/qa_server/monitor_status/performance_graph_behavior.rb +109 -0
- data/app/presenters/qa_server/monitor_status/performance_presenter.rb +4 -220
- data/app/presenters/qa_server/monitor_status_presenter.rb +8 -5
- data/app/services/qa_server/performance_calculator_service.rb +103 -0
- data/app/services/qa_server/performance_graph_data_service.rb +113 -0
- data/app/services/qa_server/performance_graphing_service.rb +113 -0
- data/app/views/qa_server/monitor_status/_performance.html.erb +90 -0
- data/app/views/qa_server/monitor_status/_test_history.html.erb +32 -0
- data/app/views/qa_server/monitor_status/_test_summary.html.erb +54 -0
- data/app/views/qa_server/monitor_status/index.html.erb +3 -182
- data/config/locales/qa_server.en.yml +11 -7
- data/lib/generators/qa_server/templates/config/initializers/qa_server.rb +26 -0
- data/lib/qa_server/configuration.rb +42 -0
- data/lib/qa_server/version.rb +1 -1
- metadata +11 -2
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: qa_server
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 2.2.
|
4
|
+
version: 2.2.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- E. Lynette Rayle
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2019-09-
|
11
|
+
date: 2019-09-10 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: rails
|
@@ -205,6 +205,7 @@ files:
|
|
205
205
|
- app/controllers/qa_server/monitor_status_controller.rb
|
206
206
|
- app/controllers/qa_server/usage_controller.rb
|
207
207
|
- app/loggers/qa_server/scenario_logger.rb
|
208
|
+
- app/models/concerns/qa_server/performance_history_data_keys.rb
|
208
209
|
- app/models/qa_server/authority_scenario.rb
|
209
210
|
- app/models/qa_server/authority_status.rb
|
210
211
|
- app/models/qa_server/authority_status_failure.rb
|
@@ -218,6 +219,8 @@ files:
|
|
218
219
|
- app/prepends/prepended_linked_data/find_term.rb
|
219
220
|
- app/prepends/prepended_linked_data/search_query.rb
|
220
221
|
- app/presenters/concerns/qa_server/monitor_status/gruff_graph.rb
|
222
|
+
- app/presenters/concerns/qa_server/monitor_status/performance_datatable_behavior.rb
|
223
|
+
- app/presenters/concerns/qa_server/monitor_status/performance_graph_behavior.rb
|
221
224
|
- app/presenters/qa_server/authority_list_presenter.rb
|
222
225
|
- app/presenters/qa_server/check_status_presenter.rb
|
223
226
|
- app/presenters/qa_server/fetch_presenter.rb
|
@@ -230,6 +233,9 @@ files:
|
|
230
233
|
- app/services/qa_server/authority_loader_service.rb
|
231
234
|
- app/services/qa_server/authority_validator_service.rb
|
232
235
|
- app/services/qa_server/database_migrator.rb
|
236
|
+
- app/services/qa_server/performance_calculator_service.rb
|
237
|
+
- app/services/qa_server/performance_graph_data_service.rb
|
238
|
+
- app/services/qa_server/performance_graphing_service.rb
|
233
239
|
- app/services/qa_server/scenarios_loader_service.rb
|
234
240
|
- app/validators/qa_server/scenario_validator.rb
|
235
241
|
- app/validators/qa_server/search_scenario_validator.rb
|
@@ -239,6 +245,9 @@ files:
|
|
239
245
|
- app/views/qa_server/check_status/index.html.erb
|
240
246
|
- app/views/qa_server/fetch/index.html.erb
|
241
247
|
- app/views/qa_server/homepage/index.html.erb
|
248
|
+
- app/views/qa_server/monitor_status/_performance.html.erb
|
249
|
+
- app/views/qa_server/monitor_status/_test_history.html.erb
|
250
|
+
- app/views/qa_server/monitor_status/_test_summary.html.erb
|
242
251
|
- app/views/qa_server/monitor_status/index.html.erb
|
243
252
|
- app/views/qa_server/usage/index.html.erb
|
244
253
|
- app/views/shared/_footer.html.erb
|