rearview 1.1.2-jruby → 1.2.0-jruby
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/README.md +11 -3
- data/app/controllers/rearview/application_controller.rb +11 -0
- data/app/controllers/rearview/dashboard_children_controller.rb +1 -1
- data/app/controllers/rearview/dashboards_controller.rb +1 -1
- data/app/controllers/rearview/home_controller.rb +1 -1
- data/app/controllers/rearview/jobs_controller.rb +33 -29
- data/app/controllers/rearview/monitor_controller.rb +16 -2
- data/app/controllers/rearview/user_controller.rb +2 -2
- data/app/helpers/rearview/application_helper.rb +3 -3
- data/app/mailers/rearview/alert_mailer.rb +0 -2
- data/app/mailers/rearview/metrics_validation_mailer.rb +12 -0
- data/app/models/rearview/job.rb +17 -13
- data/app/views/rearview/home/show.html.erb +2 -0
- data/app/views/rearview/jobs/_job.json.jbuilder +1 -0
- data/app/views/rearview/metrics_validation_mailer/validation_failed_email.text.erb +13 -0
- data/app/views/rearview/monitor/create.json.jbuilder +1 -0
- data/db/migrate/20131106162900_base_schema.rb +2 -2
- data/lib/generators/templates/rearview.rb +24 -7
- data/lib/graphite.rb +13 -0
- data/lib/graphite/cacerts.pem +2184 -0
- data/lib/graphite/client.rb +44 -0
- data/lib/graphite/graph.rb +35 -0
- data/lib/{rearview/graphite_parser.rb → graphite/raw_parser.rb} +2 -3
- data/lib/graphite/target.rb +9 -0
- data/lib/graphite/target_grammer.rb +114 -0
- data/lib/graphite/target_grammer.treetop +53 -0
- data/lib/graphite/target_parser.rb +50 -0
- data/lib/graphite/treetop_ext.rb +14 -0
- data/lib/rearview.rb +11 -3
- data/lib/rearview/alerts_handler.rb +2 -6
- data/lib/rearview/configuration.rb +44 -19
- data/lib/rearview/cron_expression_validator.rb +11 -0
- data/lib/rearview/metrics_validator.rb +52 -0
- data/lib/rearview/metrics_validator_service.rb +24 -0
- data/lib/rearview/metrics_validator_task.rb +56 -0
- data/lib/rearview/monitor_runner.rb +9 -7
- data/lib/rearview/monitor_service.rb +2 -0
- data/lib/rearview/stats_service.rb +4 -2
- data/lib/rearview/version.rb +1 -1
- data/lib/tasks/rearview_tasks.rake +7 -1
- data/public/{help → rearview-src/help}/alert.html +0 -0
- data/public/{help → rearview-src/help}/quick.html +0 -0
- data/public/rearview-src/js/app.js +9 -0
- data/public/rearview-src/js/model/user.js +6 -2
- data/public/rearview-src/js/view/addmonitor.js +13 -8
- data/public/rearview-src/js/view/alert.js +11 -4
- data/public/rearview-src/js/view/dashboard.js +4 -2
- data/public/rearview-src/js/view/expandedmonitor.js +22 -9
- data/public/rearview-src/js/view/settings.js +84 -0
- data/public/rearview-src/less/login.less +4 -4
- data/public/rearview-src/less/rearview.less +17 -10
- data/public/{monitors → rearview-src/monitors}/index.json +1 -1
- data/public/{monitors → rearview-src/monitors}/outage.rb +0 -0
- data/public/rearview-src/templates/alert.hbs +10 -2
- data/public/rearview-src/templates/primarynav.hbs +6 -6
- data/public/rearview-src/templates/schedulemonitor.hbs +2 -1
- data/public/rearview-src/templates/settings.hbs +23 -0
- data/public/rearview/build.txt +1 -0
- data/public/rearview/help/alert.html +20 -0
- data/public/rearview/help/quick.html +34 -0
- data/public/rearview/js/app.js +1 -1
- data/public/rearview/js/main.js +21 -21
- data/public/rearview/js/model/user.js +1 -1
- data/public/rearview/js/view/addmonitor.js +1 -1
- data/public/rearview/js/view/alert.js +1 -1
- data/public/rearview/js/view/dashboard.js +1 -1
- data/public/rearview/js/view/expandedmonitor.js +1 -1
- data/public/rearview/js/view/settings.js +1 -0
- data/public/rearview/less/login.less +4 -4
- data/public/rearview/less/rearview.less +17 -10
- data/public/rearview/monitors/index.json +3 -0
- data/public/rearview/monitors/outage.rb +2 -0
- data/public/rearview/templates/alert.hbs +10 -2
- data/public/rearview/templates/primarynav.hbs +6 -6
- data/public/rearview/templates/schedulemonitor.hbs +2 -1
- data/public/rearview/templates/settings.hbs +23 -0
- data/spec/controllers/jobs_controller_spec.rb +1 -0
- data/spec/controllers/monitor_controller_spec.rb +3 -0
- data/spec/controllers/user_controller_spec.rb +5 -2
- data/spec/data/metrics.yml +598 -0
- data/spec/dummy/log/development.log +1044 -0
- data/spec/dummy/log/test.log +171716 -0
- data/spec/helpers/application_helper_spec.rb +33 -0
- data/spec/lib/graphite/client_spec.rb +126 -0
- data/spec/lib/graphite/graph_spec.rb +17 -0
- data/spec/lib/graphite/graphite_spec.rb +4 -0
- data/spec/lib/{rearview/graphite_parser_spec.rb → graphite/raw_parser.rb} +6 -5
- data/spec/lib/graphite/target_grammer_spec.rb +106 -0
- data/spec/lib/graphite/target_parser_spec.rb +124 -0
- data/spec/lib/graphite/target_spec.rb +5 -0
- data/spec/lib/rearview/configuration_spec.rb +69 -48
- data/spec/lib/rearview/metrics_validator_service_spec.rb +43 -0
- data/spec/lib/rearview/metrics_validator_spec.rb +84 -0
- data/spec/lib/rearview/metrics_validator_task_spec.rb +62 -0
- data/spec/lib/rearview/monitor_runner_spec.rb +3 -3
- data/spec/lib/rearview/stats_task_spec.rb +21 -0
- data/spec/mailers/metrics_validation_mailer_spec.rb +46 -0
- data/spec/models/job_spec.rb +82 -9
- data/spec/spec_helper.rb +15 -4
- data/spec/support/json_factory.rb +1 -1
- data/spec/views/dashboards/show.json.jbuilder_spec.rb +3 -1
- data/spec/views/jobs/show.json.jbuilder_spec.rb +2 -1
- metadata +98 -11
- data/public/rearview-src/templates/test.txt +0 -1
- data/public/rearview/templates/test.txt +0 -1
data/spec/spec_helper.rb
CHANGED
@@ -1,5 +1,15 @@
|
|
1
|
+
require 'simplecov'
|
2
|
+
require 'coveralls'
|
3
|
+
Coveralls.wear!
|
4
|
+
|
5
|
+
SimpleCov.formatter = SimpleCov::Formatter::MultiFormatter[
|
6
|
+
SimpleCov::Formatter::HTMLFormatter,
|
7
|
+
Coveralls::SimpleCov::Formatter
|
8
|
+
]
|
9
|
+
SimpleCov.start
|
10
|
+
|
1
11
|
ENV['RAILS_ENV'] ||= 'test'
|
2
|
-
require File.expand_path(
|
12
|
+
require File.expand_path('../dummy/config/environment.rb', __FILE__)
|
3
13
|
require 'rspec/rails'
|
4
14
|
require 'rspec/autorun'
|
5
15
|
require 'mocha/setup'
|
@@ -13,13 +23,14 @@ Dir["#{File.dirname(__FILE__)}/support/**/*.rb"].each { |f| require f }
|
|
13
23
|
|
14
24
|
Rearview.configure do |config|
|
15
25
|
config.logger = Rails.logger
|
16
|
-
config.sandbox_dir = Rails.root +
|
17
|
-
config.sandbox_exec = [
|
26
|
+
config.sandbox_dir = Rails.root + 'sandbox'
|
27
|
+
config.sandbox_exec = ['rvm-exec','ruby-1.9.3-p448@rearview-sandbox','ruby']
|
18
28
|
config.sandbox_timeout = 10
|
19
29
|
config.preload_jobs = false
|
20
30
|
config.enable_monitor = false
|
21
31
|
config.default_url_options = { host: 'localhost', port: '3000' }
|
22
32
|
config.statsd_connection = { host: '127.0.0.1', port: 8125, namespace: 'rearview' }
|
33
|
+
config.enable_metrics_validator = false
|
23
34
|
end
|
24
35
|
|
25
36
|
Rearview.boot!
|
@@ -28,7 +39,7 @@ RSpec.configure do |config|
|
|
28
39
|
config.mock_with :mocha
|
29
40
|
config.use_transactional_fixtures = true
|
30
41
|
config.infer_base_class_for_anonymous_controllers = false
|
31
|
-
config.order =
|
42
|
+
config.order = 'random'
|
32
43
|
config.include FactoryGirl::Syntax::Methods
|
33
44
|
end
|
34
45
|
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: rearview
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.2.0
|
5
5
|
platform: jruby
|
6
6
|
authors:
|
7
7
|
- Trent Albright
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2014-
|
11
|
+
date: 2014-02-28 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: rails
|
@@ -150,6 +150,34 @@ dependencies:
|
|
150
150
|
version: 1.2.1
|
151
151
|
prerelease: false
|
152
152
|
type: :runtime
|
153
|
+
- !ruby/object:Gem::Dependency
|
154
|
+
name: treetop
|
155
|
+
version_requirements: !ruby/object:Gem::Requirement
|
156
|
+
requirements:
|
157
|
+
- - ~>
|
158
|
+
- !ruby/object:Gem::Version
|
159
|
+
version: 1.4.15
|
160
|
+
requirement: !ruby/object:Gem::Requirement
|
161
|
+
requirements:
|
162
|
+
- - ~>
|
163
|
+
- !ruby/object:Gem::Version
|
164
|
+
version: 1.4.15
|
165
|
+
prerelease: false
|
166
|
+
type: :runtime
|
167
|
+
- !ruby/object:Gem::Dependency
|
168
|
+
name: faraday
|
169
|
+
version_requirements: !ruby/object:Gem::Requirement
|
170
|
+
requirements:
|
171
|
+
- - ~>
|
172
|
+
- !ruby/object:Gem::Version
|
173
|
+
version: 0.9.0
|
174
|
+
requirement: !ruby/object:Gem::Requirement
|
175
|
+
requirements:
|
176
|
+
- - ~>
|
177
|
+
- !ruby/object:Gem::Version
|
178
|
+
version: 0.9.0
|
179
|
+
prerelease: false
|
180
|
+
type: :runtime
|
153
181
|
- !ruby/object:Gem::Dependency
|
154
182
|
name: activerecord-jdbcmysql-adapter
|
155
183
|
version_requirements: !ruby/object:Gem::Requirement
|
@@ -262,6 +290,20 @@ dependencies:
|
|
262
290
|
version: '0'
|
263
291
|
prerelease: false
|
264
292
|
type: :development
|
293
|
+
- !ruby/object:Gem::Dependency
|
294
|
+
name: coveralls
|
295
|
+
version_requirements: !ruby/object:Gem::Requirement
|
296
|
+
requirements:
|
297
|
+
- - '>='
|
298
|
+
- !ruby/object:Gem::Version
|
299
|
+
version: '0'
|
300
|
+
requirement: !ruby/object:Gem::Requirement
|
301
|
+
requirements:
|
302
|
+
- - '>='
|
303
|
+
- !ruby/object:Gem::Version
|
304
|
+
version: '0'
|
305
|
+
prerelease: false
|
306
|
+
type: :development
|
265
307
|
description: Timeseries data monitoring framework running as a rails engine
|
266
308
|
email:
|
267
309
|
- trent.albright@gmail.com
|
@@ -280,6 +322,7 @@ files:
|
|
280
322
|
- app/controllers/rearview/user_controller.rb
|
281
323
|
- app/helpers/rearview/application_helper.rb
|
282
324
|
- app/mailers/rearview/alert_mailer.rb
|
325
|
+
- app/mailers/rearview/metrics_validation_mailer.rb
|
283
326
|
- app/models/rearview/dashboard.rb
|
284
327
|
- app/models/rearview/job.rb
|
285
328
|
- app/models/rearview/job_data.rb
|
@@ -305,6 +348,7 @@ files:
|
|
305
348
|
- app/views/rearview/jobs/index.json.jbuilder
|
306
349
|
- app/views/rearview/jobs/show.json.jbuilder
|
307
350
|
- app/views/rearview/layouts/application.html.erb
|
351
|
+
- app/views/rearview/metrics_validation_mailer/validation_failed_email.text.erb
|
308
352
|
- app/views/rearview/monitor/create.json.jbuilder
|
309
353
|
- app/views/rearview/user/_user.json.jbuilder
|
310
354
|
- app/views/rearview/user/show.json.jbuilder
|
@@ -313,10 +357,20 @@ files:
|
|
313
357
|
- config/locales/devise.en.yml
|
314
358
|
- db/migrate/20131106162900_base_schema.rb
|
315
359
|
- db/migrate/20140106161202_add_indexes.rb
|
360
|
+
- lib/graphite.rb
|
316
361
|
- lib/rearview.rb
|
317
362
|
- lib/generators/rearview/install_generator.rb
|
318
363
|
- lib/generators/templates/README.md
|
319
364
|
- lib/generators/templates/rearview.rb
|
365
|
+
- lib/graphite/cacerts.pem
|
366
|
+
- lib/graphite/client.rb
|
367
|
+
- lib/graphite/graph.rb
|
368
|
+
- lib/graphite/raw_parser.rb
|
369
|
+
- lib/graphite/target.rb
|
370
|
+
- lib/graphite/target_grammer.rb
|
371
|
+
- lib/graphite/target_grammer.treetop
|
372
|
+
- lib/graphite/target_parser.rb
|
373
|
+
- lib/graphite/treetop_ext.rb
|
320
374
|
- lib/jar/commons-validator-1.4.0.jar
|
321
375
|
- lib/jar/quartz-2.1.7.jar
|
322
376
|
- lib/rearview/alerts.rb
|
@@ -324,12 +378,15 @@ files:
|
|
324
378
|
- lib/rearview/concerns.rb
|
325
379
|
- lib/rearview/configuration.rb
|
326
380
|
- lib/rearview/constants_module_maker.rb
|
381
|
+
- lib/rearview/cron_expression_validator.rb
|
327
382
|
- lib/rearview/cron_helper.rb
|
328
383
|
- lib/rearview/distribute.rb
|
329
384
|
- lib/rearview/engine.rb
|
330
|
-
- lib/rearview/graphite_parser.rb
|
331
385
|
- lib/rearview/log_formatter.rb
|
332
386
|
- lib/rearview/logger.rb
|
387
|
+
- lib/rearview/metrics_validator.rb
|
388
|
+
- lib/rearview/metrics_validator_service.rb
|
389
|
+
- lib/rearview/metrics_validator_task.rb
|
333
390
|
- lib/rearview/monitor_runner.rb
|
334
391
|
- lib/rearview/monitor_service.rb
|
335
392
|
- lib/rearview/monitor_supervisor.rb
|
@@ -353,10 +410,6 @@ files:
|
|
353
410
|
- lib/rearview/templates/utilities.rb
|
354
411
|
- lib/tasks/rearview_tasks.rake
|
355
412
|
- public/favicon.ico
|
356
|
-
- public/help/alert.html
|
357
|
-
- public/help/quick.html
|
358
|
-
- public/monitors/index.json
|
359
|
-
- public/monitors/outage.rb
|
360
413
|
- public/rearview/build.txt
|
361
414
|
- public/rearview/css/rearview.css
|
362
415
|
- public/rearview/fonts/ProximaNovaSoft-Bold/ProximaNovaSoft-Bold-webfont.eot
|
@@ -369,6 +422,8 @@ files:
|
|
369
422
|
- public/rearview/fonts/ProximaNovaSoft-Regular/ProximaNovaSoft-Regular-webfont.ttf
|
370
423
|
- public/rearview/fonts/ProximaNovaSoft-Regular/ProximaNovaSoft-Regular-webfont.woff
|
371
424
|
- public/rearview/fonts/ProximaNovaSoft-Regular/ProximaNovaSoft-Regular.otf
|
425
|
+
- public/rearview/help/alert.html
|
426
|
+
- public/rearview/help/quick.html
|
372
427
|
- public/rearview/img/livingsocial-logo-white.svg
|
373
428
|
- public/rearview/img/noise-light.png
|
374
429
|
- public/rearview/img/noise.png
|
@@ -404,6 +459,7 @@ files:
|
|
404
459
|
- public/rearview/js/view/primarynav.js
|
405
460
|
- public/rearview/js/view/resetmonitor.js
|
406
461
|
- public/rearview/js/view/secondarynav.js
|
462
|
+
- public/rearview/js/view/settings.js
|
407
463
|
- public/rearview/js/view/smallmonitor.js
|
408
464
|
- public/rearview/less/alert.less
|
409
465
|
- public/rearview/less/dashboard.less
|
@@ -415,6 +471,8 @@ files:
|
|
415
471
|
- public/rearview/less/primarynav.less
|
416
472
|
- public/rearview/less/rearview.less
|
417
473
|
- public/rearview/login/icons/rearview.svg
|
474
|
+
- public/rearview/monitors/index.json
|
475
|
+
- public/rearview/monitors/outage.rb
|
418
476
|
- public/rearview/templates/addcategory.hbs
|
419
477
|
- public/rearview/templates/adddashboard.hbs
|
420
478
|
- public/rearview/templates/addmonitor.hbs
|
@@ -430,8 +488,8 @@ files:
|
|
430
488
|
- public/rearview/templates/schedulemonitor.hbs
|
431
489
|
- public/rearview/templates/secondarynav.hbs
|
432
490
|
- public/rearview/templates/setmetrics.hbs
|
491
|
+
- public/rearview/templates/settings.hbs
|
433
492
|
- public/rearview/templates/smallmonitor.hbs
|
434
|
-
- public/rearview/templates/test.txt
|
435
493
|
- public/rearview/test/spec/model/application.js
|
436
494
|
- public/rearview/test/spec/model/job.js
|
437
495
|
- public/rearview/test/spec/model/user.js
|
@@ -1270,6 +1328,8 @@ files:
|
|
1270
1328
|
- public/rearview-src/fonts/ProximaNovaSoft-Regular/ProximaNovaSoft-Regular-webfont.ttf
|
1271
1329
|
- public/rearview-src/fonts/ProximaNovaSoft-Regular/ProximaNovaSoft-Regular-webfont.woff
|
1272
1330
|
- public/rearview-src/fonts/ProximaNovaSoft-Regular/ProximaNovaSoft-Regular.otf
|
1331
|
+
- public/rearview-src/help/alert.html
|
1332
|
+
- public/rearview-src/help/quick.html
|
1273
1333
|
- public/rearview-src/img/livingsocial-logo-white.svg
|
1274
1334
|
- public/rearview-src/img/noise-light.png
|
1275
1335
|
- public/rearview-src/img/noise.png
|
@@ -1305,6 +1365,7 @@ files:
|
|
1305
1365
|
- public/rearview-src/js/view/primarynav.js
|
1306
1366
|
- public/rearview-src/js/view/resetmonitor.js
|
1307
1367
|
- public/rearview-src/js/view/secondarynav.js
|
1368
|
+
- public/rearview-src/js/view/settings.js
|
1308
1369
|
- public/rearview-src/js/view/smallmonitor.js
|
1309
1370
|
- public/rearview-src/less/alert.less
|
1310
1371
|
- public/rearview-src/less/dashboard.less
|
@@ -1316,6 +1377,8 @@ files:
|
|
1316
1377
|
- public/rearview-src/less/primarynav.less
|
1317
1378
|
- public/rearview-src/less/rearview.less
|
1318
1379
|
- public/rearview-src/login/icons/rearview.svg
|
1380
|
+
- public/rearview-src/monitors/index.json
|
1381
|
+
- public/rearview-src/monitors/outage.rb
|
1319
1382
|
- public/rearview-src/templates/addcategory.hbs
|
1320
1383
|
- public/rearview-src/templates/adddashboard.hbs
|
1321
1384
|
- public/rearview-src/templates/addmonitor.hbs
|
@@ -1331,8 +1394,8 @@ files:
|
|
1331
1394
|
- public/rearview-src/templates/schedulemonitor.hbs
|
1332
1395
|
- public/rearview-src/templates/secondarynav.hbs
|
1333
1396
|
- public/rearview-src/templates/setmetrics.hbs
|
1397
|
+
- public/rearview-src/templates/settings.hbs
|
1334
1398
|
- public/rearview-src/templates/smallmonitor.hbs
|
1335
|
-
- public/rearview-src/templates/test.txt
|
1336
1399
|
- public/rearview-src/test/spec/model/application.js
|
1337
1400
|
- public/rearview-src/test/spec/model/job.js
|
1338
1401
|
- public/rearview-src/test/spec/model/user.js
|
@@ -2173,6 +2236,7 @@ files:
|
|
2173
2236
|
- spec/data/large_set.dat
|
2174
2237
|
- spec/data/metric_a.dat
|
2175
2238
|
- spec/data/metric_b.dat
|
2239
|
+
- spec/data/metrics.yml
|
2176
2240
|
- spec/data/monitor.dat
|
2177
2241
|
- spec/data/nan.dat
|
2178
2242
|
- spec/data/test.dat
|
@@ -2221,11 +2285,21 @@ files:
|
|
2221
2285
|
- spec/factories/job_errors.rb
|
2222
2286
|
- spec/factories/jobs.rb
|
2223
2287
|
- spec/factories/users.rb
|
2288
|
+
- spec/helpers/application_helper_spec.rb
|
2289
|
+
- spec/lib/graphite/client_spec.rb
|
2290
|
+
- spec/lib/graphite/graph_spec.rb
|
2291
|
+
- spec/lib/graphite/graphite_spec.rb
|
2292
|
+
- spec/lib/graphite/raw_parser.rb
|
2293
|
+
- spec/lib/graphite/target_grammer_spec.rb
|
2294
|
+
- spec/lib/graphite/target_parser_spec.rb
|
2295
|
+
- spec/lib/graphite/target_spec.rb
|
2224
2296
|
- spec/lib/rearview/alerts_handler_spec.rb
|
2225
2297
|
- spec/lib/rearview/configuration_spec.rb
|
2226
2298
|
- spec/lib/rearview/cron_helper_spec.rb
|
2227
|
-
- spec/lib/rearview/graphite_parser_spec.rb
|
2228
2299
|
- spec/lib/rearview/log_formatter_spec.rb
|
2300
|
+
- spec/lib/rearview/metrics_validator_service_spec.rb
|
2301
|
+
- spec/lib/rearview/metrics_validator_spec.rb
|
2302
|
+
- spec/lib/rearview/metrics_validator_task_spec.rb
|
2229
2303
|
- spec/lib/rearview/monitor_runner_spec.rb
|
2230
2304
|
- spec/lib/rearview/monitor_service_spec.rb
|
2231
2305
|
- spec/lib/rearview/monitor_supervisor_spec.rb
|
@@ -2243,6 +2317,7 @@ files:
|
|
2243
2317
|
- spec/lib/rearview/ext/numeric_spec.rb
|
2244
2318
|
- spec/lib/rearview/templates/utilities_spec.rb
|
2245
2319
|
- spec/mailers/alert_mailer_spec.rb
|
2320
|
+
- spec/mailers/metrics_validation_mailer_spec.rb
|
2246
2321
|
- spec/models/dashboard_spec.rb
|
2247
2322
|
- spec/models/job_data_spec.rb
|
2248
2323
|
- spec/models/job_error_spec.rb
|
@@ -2298,6 +2373,7 @@ test_files:
|
|
2298
2373
|
- spec/data/large_set.dat
|
2299
2374
|
- spec/data/metric_a.dat
|
2300
2375
|
- spec/data/metric_b.dat
|
2376
|
+
- spec/data/metrics.yml
|
2301
2377
|
- spec/data/monitor.dat
|
2302
2378
|
- spec/data/nan.dat
|
2303
2379
|
- spec/data/test.dat
|
@@ -2346,11 +2422,21 @@ test_files:
|
|
2346
2422
|
- spec/factories/job_errors.rb
|
2347
2423
|
- spec/factories/jobs.rb
|
2348
2424
|
- spec/factories/users.rb
|
2425
|
+
- spec/helpers/application_helper_spec.rb
|
2426
|
+
- spec/lib/graphite/client_spec.rb
|
2427
|
+
- spec/lib/graphite/graph_spec.rb
|
2428
|
+
- spec/lib/graphite/graphite_spec.rb
|
2429
|
+
- spec/lib/graphite/raw_parser.rb
|
2430
|
+
- spec/lib/graphite/target_grammer_spec.rb
|
2431
|
+
- spec/lib/graphite/target_parser_spec.rb
|
2432
|
+
- spec/lib/graphite/target_spec.rb
|
2349
2433
|
- spec/lib/rearview/alerts_handler_spec.rb
|
2350
2434
|
- spec/lib/rearview/configuration_spec.rb
|
2351
2435
|
- spec/lib/rearview/cron_helper_spec.rb
|
2352
|
-
- spec/lib/rearview/graphite_parser_spec.rb
|
2353
2436
|
- spec/lib/rearview/log_formatter_spec.rb
|
2437
|
+
- spec/lib/rearview/metrics_validator_service_spec.rb
|
2438
|
+
- spec/lib/rearview/metrics_validator_spec.rb
|
2439
|
+
- spec/lib/rearview/metrics_validator_task_spec.rb
|
2354
2440
|
- spec/lib/rearview/monitor_runner_spec.rb
|
2355
2441
|
- spec/lib/rearview/monitor_service_spec.rb
|
2356
2442
|
- spec/lib/rearview/monitor_supervisor_spec.rb
|
@@ -2368,6 +2454,7 @@ test_files:
|
|
2368
2454
|
- spec/lib/rearview/ext/numeric_spec.rb
|
2369
2455
|
- spec/lib/rearview/templates/utilities_spec.rb
|
2370
2456
|
- spec/mailers/alert_mailer_spec.rb
|
2457
|
+
- spec/mailers/metrics_validation_mailer_spec.rb
|
2371
2458
|
- spec/models/dashboard_spec.rb
|
2372
2459
|
- spec/models/job_data_spec.rb
|
2373
2460
|
- spec/models/job_error_spec.rb
|
@@ -1 +0,0 @@
|
|
1
|
-
hi
|
@@ -1 +0,0 @@
|
|
1
|
-
hi
|