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
@@ -107,7 +107,7 @@ input, button, select, textarea {
|
|
107
107
|
}
|
108
108
|
}
|
109
109
|
|
110
|
-
@import "header.less";
|
110
|
+
@import "header.less";
|
111
111
|
|
112
112
|
/* alert timeline styles */
|
113
113
|
.alert-timeline {
|
@@ -298,7 +298,7 @@ input, button, select, textarea {
|
|
298
298
|
.alert-meta-data {
|
299
299
|
text-align : left;
|
300
300
|
border-collapse : separate;
|
301
|
-
border-spacing : 10px 2px !important;
|
301
|
+
border-spacing : 10px 2px !important;
|
302
302
|
|
303
303
|
.proxima-regular(inherit);
|
304
304
|
|
@@ -340,7 +340,7 @@ input, button, select, textarea {
|
|
340
340
|
position : absolute;
|
341
341
|
text-align : center;
|
342
342
|
width : 100%;
|
343
|
-
|
343
|
+
|
344
344
|
h1 {
|
345
345
|
margin-top : 100px;
|
346
346
|
font-weight : normal;
|
@@ -405,7 +405,7 @@ input, button, select, textarea {
|
|
405
405
|
}
|
406
406
|
|
407
407
|
.test-graph .graph {
|
408
|
-
min-height : auto;
|
408
|
+
min-height : auto;
|
409
409
|
}
|
410
410
|
|
411
411
|
.hero-unit.expressions-metrics {
|
@@ -491,7 +491,7 @@ input, button, select, textarea {
|
|
491
491
|
width : 378px;
|
492
492
|
}
|
493
493
|
|
494
|
-
|
494
|
+
|
495
495
|
|
496
496
|
fieldset.expressions textarea,
|
497
497
|
fieldset.metrics textarea {
|
@@ -580,7 +580,7 @@ input, button, select, textarea {
|
|
580
580
|
}
|
581
581
|
|
582
582
|
/* dashboard styles */
|
583
|
-
@import 'dashboard.less';
|
583
|
+
@import 'dashboard.less';
|
584
584
|
|
585
585
|
/* small monitor widget styles */
|
586
586
|
.small-monitor {
|
@@ -689,7 +689,7 @@ input, button, select, textarea {
|
|
689
689
|
color : #B6B3A6;
|
690
690
|
font-size : 11px;
|
691
691
|
padding : 6px 5px 5px 6px;
|
692
|
-
cursor : move;
|
692
|
+
cursor : move;
|
693
693
|
}
|
694
694
|
}
|
695
695
|
}
|
@@ -950,7 +950,7 @@ input, button, select, textarea {
|
|
950
950
|
|
951
951
|
.tooltip {
|
952
952
|
text-transform : none;
|
953
|
-
|
953
|
+
|
954
954
|
.tooltip-inner {
|
955
955
|
max-width : 500px;
|
956
956
|
|
@@ -1014,7 +1014,7 @@ input, button, select, textarea {
|
|
1014
1014
|
}
|
1015
1015
|
|
1016
1016
|
.tooltip {
|
1017
|
-
text-transform : none;
|
1017
|
+
text-transform : none;
|
1018
1018
|
|
1019
1019
|
.tooltip-inner {
|
1020
1020
|
max-width : 500px;
|
@@ -1204,4 +1204,11 @@ input, button, select, textarea {
|
|
1204
1204
|
font-weight : normal !important;
|
1205
1205
|
}
|
1206
1206
|
}
|
1207
|
-
|
1207
|
+
/* settings styles */
|
1208
|
+
.alert-settings {
|
1209
|
+
width: 100%;
|
1210
|
+
textarea {
|
1211
|
+
width: 100%
|
1212
|
+
}
|
1213
|
+
}
|
1214
|
+
}
|
@@ -1,4 +1,12 @@
|
|
1
1
|
<div class='alert alert-{{#if status}}{{status}}{{else}}success{{/if}}'>
|
2
|
-
|
2
|
+
<button type='button' class='close' data-dismiss='alert'>x</button>
|
3
3
|
<strong class='alert-attention'>{{attention}}</strong> {{message}}
|
4
|
-
|
4
|
+
{{#if errors}}
|
5
|
+
<ul>
|
6
|
+
{{#each errors}}
|
7
|
+
<li>{{this}}</li>
|
8
|
+
{{/each}}
|
9
|
+
</ul>
|
10
|
+
{{/if}}
|
11
|
+
<div>{{raw}}</div>
|
12
|
+
</div>
|
@@ -32,16 +32,16 @@
|
|
32
32
|
<li>
|
33
33
|
<div class="btn-group">
|
34
34
|
<a class="user btn btn-inverse disabled" rel='tooltip' data-delay='1000' data-toggle="tooltip" data-original-title="{{user.email}}">
|
35
|
-
<i class="icon-user icon-white"></i> {{user.
|
35
|
+
<i class="icon-user icon-white"></i> {{user.email}}
|
36
36
|
</a>
|
37
|
-
<a class="btn btn-inverse dropdown-toggle
|
37
|
+
<a class="btn btn-inverse dropdown-toggle" data-toggle="dropdown">
|
38
38
|
<span class="caret" style='border-top-color: #B6B3A6 !important;
|
39
39
|
border-bottom-color: #B6B3A6 !important;'></span>
|
40
40
|
</a>
|
41
|
-
|
42
|
-
<li><a href=
|
43
|
-
<li><a href="
|
44
|
-
</ul>
|
41
|
+
<ul class="dropdown-menu" style='right:0; left:auto; min-width:133px;'>
|
42
|
+
<li><a href='#settings' role='button' data-toggle='modal' data-keyboard='false'><i class="icon-cog icon-white"></i>Settings</a></li>
|
43
|
+
<li><a href="/users/sign_out"><i class="icon-signout icon-white"></i> Logout</a></li>
|
44
|
+
</ul>
|
45
45
|
</div>
|
46
46
|
</li>
|
47
47
|
</ul>
|
@@ -12,7 +12,8 @@
|
|
12
12
|
</fieldset>
|
13
13
|
<fieldset class='pager-duty control-group'>
|
14
14
|
<label for='pagerDuty' class='control-label'>Add Alert URIs (Not Required):</label>
|
15
|
-
<textarea rows='3' id='pagerDuty' name='pagerDuty' placeholder='Multiple alert URIs can be entered (separated by a space, comma or new line).'
|
15
|
+
<textarea rows='3' id='pagerDuty' name='pagerDuty' placeholder='Multiple alert URIs can be entered (separated by a space, comma or new line).'>{{#user.preferences.alertKeys}}{{this}}
|
16
|
+
{{/user.preferences.alertKeys}}</textarea>
|
16
17
|
</fieldset>
|
17
18
|
</form>
|
18
19
|
</div>
|
@@ -0,0 +1,23 @@
|
|
1
|
+
<!-- Settings Modal -->
|
2
|
+
<div id='settings' class='settings modal hide fade'>
|
3
|
+
<div class='modal-header'>
|
4
|
+
<button type='button' class='close' data-dismiss='modal' aria-hidden='true'><i class='icon-remove-circle'></i></button>
|
5
|
+
<h1 id='settingsLabel'>Settings</h1>
|
6
|
+
</div>
|
7
|
+
<div class='modal-body'>
|
8
|
+
<h2>Alert Setup</h2>
|
9
|
+
<div class='hero-unit'>
|
10
|
+
<form id='settingsForm' class='clearfix'>
|
11
|
+
<fieldset class='alert-settings control-group'>
|
12
|
+
<label for='alertKeys' class='control-label'>Add Default Alert URIs:</label>
|
13
|
+
<textarea class='input-block-level' rows='3' id='alertKeys' name='alertKeys' placeholder='Multiple alert URIs can be entered (separated by a space, comma or new line).'>{{#user.preferences.alertKeys}}{{this}}
|
14
|
+
{{/user.preferences.alertKeys}}</textarea>
|
15
|
+
</fieldset>
|
16
|
+
</form>
|
17
|
+
</div>
|
18
|
+
</div>
|
19
|
+
<div class='modal-footer'>
|
20
|
+
<button class='saveSettings btn'>Save</button>
|
21
|
+
<button class='saveCloseSettings btn btn-primary'>Save & Close</button>
|
22
|
+
</div>
|
23
|
+
</div>
|
@@ -8,6 +8,9 @@ describe Rearview::MonitorController do
|
|
8
8
|
end
|
9
9
|
|
10
10
|
context "POST /monitor" do
|
11
|
+
before do
|
12
|
+
Rearview::MetricsValidator.any_instance.stubs(:metric_valid?).returns(true)
|
13
|
+
end
|
11
14
|
it "renders the create view" do
|
12
15
|
json = JsonFactory::Monitor.create
|
13
16
|
Rearview::MonitorRunner.expects(:run).with(json["metrics"],json["monitorExpr"],json["minutes"].to_s,{},false,json["toDate"],true).once
|
@@ -16,8 +16,11 @@ describe Rearview::UserController do
|
|
16
16
|
end
|
17
17
|
context "PUT /user" do
|
18
18
|
it "renders the show view" do
|
19
|
-
|
20
|
-
|
19
|
+
controller.stubs(:current_user).returns(user)
|
20
|
+
json = JsonFactory::User.update(user)
|
21
|
+
JSON.stubs(:parse).returns(preferences: json["preferences"])
|
22
|
+
user.expects(:save!)
|
23
|
+
put :update, json
|
21
24
|
render_template(:show)
|
22
25
|
end
|
23
26
|
end
|
@@ -0,0 +1,598 @@
|
|
1
|
+
---
|
2
|
+
- alias(smartSummarize(deploys.accounts,"1min","sum"),"drawAsInfinite(deploy)")
|
3
|
+
- alias(smartSummarize(sumSeries(stats.timers.accounts.*.http.*.*.*.count,stats.timers.accounts.*.http.*.*.*.*.count,stats.timers.accounts.*.http.*.*.*.*.*.count),"1min","sum"),"Requests Served")
|
4
|
+
- alias(smartSummarize(stats_counts.accounts.authentication.password.succeeded,"1min","sum"),"Password Succeeded")
|
5
|
+
- alias(smartSummarize(stats_counts.accounts.authentication.json.password.succeeded,"1min","sum"),"JSON Password Succeeded")
|
6
|
+
- alias(smartSummarize(stats_counts.accounts.authentication.facebook.succeeded,"1min","sum"),"Facebook Succeeded")
|
7
|
+
- alias(smartSummarize(deploys.accounts,"1min","sum"),"drawAsInfinite(deploy)")
|
8
|
+
- alias(smartSummarize(sumSeries(stats_counts.sso-frontend.logins.*.non_mobile.succeeded),"1min","sum"),"Successful Web Logins")
|
9
|
+
- alias(transformNull(smartSummarize(stats_counts.deals.resque.failed.cupcake_profile,"1h","sum")),"Cupcake Profile")
|
10
|
+
- alias(transformNull(smartSummarize(stats_counts.cupcake.resque.failed.record_journal,"1h","sum")),"Record Journal")
|
11
|
+
- alias(transformNull(smartSummarize(stats_counts.deals.resque.failed.cupcake_subscription,"1min","sum")),"Cupcake Subscription")
|
12
|
+
- alias(smartSummarize(stats_counts.mail.transactional.subscriptions_mailer.coi_email.sent,"1h","sum"),"Hourly Rates Today")
|
13
|
+
- alias(timeShift(smartSummarize(stats_counts.mail.transactional.subscriptions_mailer.coi_email.sent,"1h","sum"),"1d"),"Hourly Rates Yesterday")
|
14
|
+
- alias(asPercent(smartSummarize(stats_counts.accounts.authentication.password.failed,"1min","sum"),smartSummarize(stats_counts.accounts.authentication.password.tentative,"1min","sum")),"Today Raw")
|
15
|
+
- alias(timeShift(lowess(asPercent(smartSummarize(stats_counts.accounts.authentication.password.failed,"1min","sum"),smartSummarize(stats_counts.accounts.authentication.password.tentative,"1min","sum")),0.5,3),"1w"),"1 Week Ago Smoothed")
|
16
|
+
- alias(timeShift(lowess(asPercent(smartSummarize(stats_counts.accounts.authentication.password.failed,"1min","sum"),smartSummarize(stats_counts.accounts.authentication.password.tentative,"1min","sum")),0.5,3),"2w"),"2 Weeks Ago Smoothed")
|
17
|
+
- alias(smartSummarize(stats_counts.accounts.account_creation.succeeded,"1min","sum"),"Registrations")
|
18
|
+
- alias(smartSummarize(deploys.deals,"1min","sum"),"drawAsInfinite(deploy)")
|
19
|
+
- alias(smartSummarize(sumSeries(stats_counts.sso-frontend.logins.*.non_mobile.succeeded),"1min","sum"),"Successful Web Logins")
|
20
|
+
- alias(smartSummarize(deploys.deals,"1min","sum"),"drawAsInfinite(deploy)")
|
21
|
+
- alias(smartSummarize(stats.timers.deals.deals.show.median,"1min","sum"),"Response Time")
|
22
|
+
- alias(diffSeries(stats.timers.accounts.*.http.get.me.info.json.response_time.upper_95,stats.timers.accounts.*.http.get.me.info.json.response_time.upper_5),"Response Time")
|
23
|
+
- alias(diffSeries(stats.timers.accounts.*.http.get.me.info.json.redis.*.query_time.upper_95,stats.timers.accounts.*.http.get.me.info.json.redis.*.query_time.upper_5),"Redis Get")
|
24
|
+
- alias(diffSeries(stats.timers.accounts.*.http.get.me.info.json.sql.external_people.SELECT.query_time.upper_95,stats.timers.accounts.*.http.get.me.info.json.sql.external_people.SELECT.query_time.upper_5),"SQL External People")
|
25
|
+
- alias(diffSeries(stats.timers.accounts.*.http.get.me.info.json.sql.facebook_people.SELECT.query_time.upper_95,stats.timers.accounts.*.http.get.me.info.json.sql.facebook_people.SELECT.query_time.upper_5), "SQL Facebook People")
|
26
|
+
- alias(diffSeries(stats.timers.accounts.*.http.get.me.info.json.sql.people.SELECT.query_time.upper_95,stats.timers.accounts.*.http.get.me.info.json.sql.people.SELECT.query_time.upper_5), "SQL People")
|
27
|
+
- alias(diffSeries(stats.timers.accounts.*.http.get.me.info.json.sql.person_merges.SELECT.query_time.upper_95,stats.timers.accounts.*.http.get.me.info.json.sql.person_merges.SELECT.query_time.upper_5), "SQL Person Merges")
|
28
|
+
- alias(deploys.deals,"drawAsInfinite(deploy)")
|
29
|
+
- alias(diffSeries(stats.timers.deals.deals.show.upper_95,stats.timers.deals.deals.show.upper_5),"Response Time")
|
30
|
+
- asPercent(smartSummarize(stats_counts.accounts.account_creation.succeeded,"1min","sum"),smartSummarize(stats_counts.accounts.account_creation.tentative,"1min","sum"))
|
31
|
+
- timeShift(lowess(asPercent(smartSummarize(stats_counts.accounts.account_creation.succeeded,"1min","sum"),smartSummarize(stats_counts.accounts.account_creation.tentative,"1min","sum")),0.5,3),"1w")
|
32
|
+
- timeShift(lowess(asPercent(smartSummarize(stats_counts.accounts.account_creation.succeeded,"1min","sum"),smartSummarize(stats_counts.accounts.account_creation.tentative,"1min","sum")),0.5,3),"2w")
|
33
|
+
- asPercent(smartSummarize(stats_counts.accounts.account_creation.failed,"1min","sum"),smartSummarize(stats_counts.accounts.account_creation.tentative,"1min","sum"))
|
34
|
+
- timeShift(lowess(asPercent(smartSummarize(stats_counts.accounts.account_creation.failed,"1min","sum"),smartSummarize(stats_counts.accounts.account_creation.tentative,"1min","sum")),0.5,3),"1w")
|
35
|
+
- timeShift(lowess(asPercent(smartSummarize(stats_counts.accounts.account_creation.failed,"1min","sum"),smartSummarize(stats_counts.accounts.account_creation.tentative,"1min","sum")),0.5,3),"2w")
|
36
|
+
- asPercent(smartSummarize(stats_counts.deals.purchasing.processing.did_not_complete,"1min","sum"),sumSeries(smartSummarize(stats_counts.deals.purchasing.processing.did_not_complete,"1min","sum"),smartSummarize(sumSeries(stats_counts.deals.purchasing.processing.completed.approved.*),"1min","sum"),smartSummarize(sumSeries(stats_counts.deals.purchasing.processing.completed.declined.*),"1min","sum")))
|
37
|
+
- alias(stats_counts.deploys.monocle,"drawAsInfinite(monocle deploy)")
|
38
|
+
- alias(nonNegativeDerivative(sumSeries(livingsocial.haproxy.fe-edge01.servers.monocle.responses_2xx)),"Monocle")
|
39
|
+
- alias(nonNegativeDerivative(sumSeries(livingsocial.haproxy.fe-edge01.servers.geo-service.responses_2xx)),"Geo Service")
|
40
|
+
- alias(nonNegativeDerivative(sumSeries(livingsocial.haproxy.fe-edge01.servers.city-service.responses_2xx)),"City Service")
|
41
|
+
- alias(nonNegativeDerivative(sumSeries(livingsocial.haproxy.fe-edge01.servers.promo-codes.responses_2xx)),"Promo Codes")
|
42
|
+
- alias(nonNegativeDerivative(sumSeries(livingsocial.haproxy.fe-edge01.servers.canopy.responses_2xx)),"Canopy")
|
43
|
+
- alias(smartSummarize(stats_counts.deploys.cupcake, "1min", "sum"),"drawAsInfinite(deploy)")
|
44
|
+
- alias(smartSummarize(stats_counts.deals.cupcake.subscribe.success, "1min", "sum"),"Successful Subscriptions")
|
45
|
+
- alias(transformNull(smartSummarize(stats_counts.deals.cupcake.subscribe.failure, "1min", "sum")),"Failed Subscriptions")
|
46
|
+
- alias(smartSummarize(stats_counts.cupcake.web_traffic.conversion, "1min", "sum"),"Web Conversions")
|
47
|
+
- alias(smartSummarize(stats_counts.deploys.cupcake, "1min", "sum"),"drawAsInfinite(deploy)")
|
48
|
+
- alias(smartSummarize(stats_service.useracq.roadblock.roadblock, "1min", "sum"),"Overall Roadblock usage")
|
49
|
+
- alias(smartSummarize(stats_service.useracq.roadblock.api_subscribed, "1min", "sum"),"API subscribed")
|
50
|
+
- alias(smartSummarize(stats_service.useracq.roadblock.has_override, "1min", "sum"),"Has override")
|
51
|
+
- alias(smartSummarize(stats_service.useracq.roadblock.has_seen_roadblock, "1min", "sum"),"Has seen roadblock")
|
52
|
+
- alias(smartSummarize(stats_service.useracq.roadblock.is_incentivized, "1min", "sum"),"Is incentivized")
|
53
|
+
- alias(smartSummarize(stats_service.useracq.roadblock.is_logged_in, "1min", "sum"),"Is Logged In")
|
54
|
+
- alias(smartSummarize(stats_service.useracq.roadblock.is_previewing, "1min", "sum"),"Is Previewing")
|
55
|
+
- alias(smartSummarize(stats_service.useracq.roadblock.is_robot, "1min", "sum"),"Is Robot")
|
56
|
+
- alias(smartSummarize(stats_service.useracq.roadblock.is_skipping, "1min", "sum"),"Is Skipping")
|
57
|
+
- alias(smartSummarize(stats_service.useracq.roadblock.is_subscribed, "1min", "sum"),"Is Subscribed")
|
58
|
+
- alias(smartSummarize(stats_service.useracq.roadblock.is_viewer, "1min", "sum"),"Is Viewer")
|
59
|
+
- alias(smartSummarize(stats_counts.deals.cupcake.subscriptions.new,"1min","sum"),"Subscriptions Raw Count")
|
60
|
+
- alias(lowess(smartSummarize(stats_counts.deals.cupcake.subscriptions.new,"1min","sum"),0.5,3),"Subscriptions Smoothed")
|
61
|
+
- alias(smartSummarize(deploys.deals-service,"1min","sum"),"drawAsInfinite(deals-service deploy)")
|
62
|
+
- alias(smartSummarize(deploys.pipeline,"1min","sum"),"drawAsInfinite(pipeline deploy)")
|
63
|
+
- alias(stats.timers.deals-service.http.cities.create.count,"Cities")
|
64
|
+
- alias(stats.timers.deals-service.http.deals.create.count,"Deals")
|
65
|
+
- alias(stats.timers.deals-service.http.deals.create_dotd.count,"DealOfTheDay")
|
66
|
+
- alias(stats.timers.deals-service.http.city_collections.create.count,"City Collections")
|
67
|
+
- alias(stats.timers.deals-service.http.deal_collections.create.count,"Deal Collections")
|
68
|
+
- alias(stats.timers.deals-service.http.deal_collection_memberships.create.count,"Deal Collection Memberships create")
|
69
|
+
- alias(stats.timers.deals-service.http.deal_collection_memberships.destroy.count,"Deal Collection Memberships destroy")
|
70
|
+
- alias(deploys.deals-service,"drawAsInfinite(deals-service deploy)")
|
71
|
+
- alias(deploys.pipeline,"drawAsInfinite(pipeline deploy)")
|
72
|
+
- alias(diffSeries(stats.timers.deals-service.http.cities.create.upper_95,stats.timers.deals-service.http.cities.create.upper_5),"Cities")
|
73
|
+
- alias(diffSeries(stats.timers.deals-service.http.deals.create.upper_95,stats.timers.deals-service.http.deals.create.upper_5),"Deals")
|
74
|
+
- alias(diffSeries(stats.timers.deals-service.http.deals.create_dotd.upper_95,stats.timers.deals-service.http.deals.create_dotd.upper_5),"Deals DOTD")
|
75
|
+
- alias(diffSeries(stats.timers.deals-service.http.city_collections.create.upper_95,stats.timers.deals-service.http.city_collections.create.upper_5),"City Collections")
|
76
|
+
- alias(diffSeries(stats.timers.deals-service.http.deal_collections.create.upper_95,stats.timers.deals-service.http.deal_collections.create.upper_5),"Deal Collections")
|
77
|
+
- alias(diffSeries(stats.timers.deals-service.http.deal_collection_memberships.create.upper_95,stats.timers.deals-service.http.deal_collection_memberships.create.upper_5),"Deal Collection Memberships create")
|
78
|
+
- alias(diffSeries(stats.timers.deals-service.http.deal_collection_memberships.destroy.upper_95,stats.timers.deals-service.http.deal_collection_memberships.destroy.upper_5),"Deal Collection Memberships destroy")
|
79
|
+
- alias(diffSeries(stats.timers.deals-service.http.escape_collections.create.upper_95,stats.timers.deals-service.http.escape_collections.create.upper_5),"Escape Collections")
|
80
|
+
- alias(deploys.deals-service,"drawAsInfinite(deals-service deploy)")
|
81
|
+
- alias(deploys.pipeline,"drawAsInfinite(pipeline deploy)")
|
82
|
+
- alias(nonNegativeDerivative(livingsocial.haproxy.fe-edge01.servers.deals-service.responses_4xx),"4xx")
|
83
|
+
- alias(nonNegativeDerivative(livingsocial.haproxy.fe-edge01.servers.deals-service.responses_5xx),"5xx")
|
84
|
+
- alias(deploys.deals-service,"drawAsInfinite(deals-service deploy)")
|
85
|
+
- alias(deploys.pipeline,"drawAsInfinite(pipeline deploy)")
|
86
|
+
- alias(diffSeries(stats.timers.deals-service.http.cities.show.upper_95,stats.timers.deals-service.http.cities.show.upper_5),"Cities#show")
|
87
|
+
- alias(diffSeries(stats.timers.deals-service.http.deals.show.upper_95,stats.timers.deals-service.http.deals.show.upper_5),"Deals#show")
|
88
|
+
- alias(diffSeries(stats.timers.deals-service.http.deals.show_dotd.upper_95,stats.timers.deals-service.http.deals.show_dotd.upper_5),"Deals#show_dotd")
|
89
|
+
- alias(diffSeries(stats.timers.deals-service.http.city_collections.index.upper_95,stats.timers.deals-service.http.city_collections.index.upper_5),"CityCollections#index")
|
90
|
+
- alias(diffSeries(stats.timers.deals-service.http.deal_collections.index.upper_95,stats.timers.deals-service.http.deal_collections.index.upper_5),"DealCollections#index")
|
91
|
+
- alias(diffSeries(stats.timers.deals-service.http.escape_collections.index.upper_95,stats.timers.deals-service.http.escape_collections.index.upper_5),"EscapeCollections#index")
|
92
|
+
- '#alias(diffSeries(stats.timers.deals-service.http.full_nearby_deal_collections.index.upper_95,stats.timers.deals-service.http.full_nearby_deal_collections.index.upper_5),"FullNearbyDealCollections#index")'
|
93
|
+
- alias(diffSeries(stats.timers.deals-service.http.countries.show.upper_95,stats.timers.deals-service.http.countries.show.upper_5),"Countries#show")
|
94
|
+
- alias(diffSeries(stats.timers.deals-service.http.countries.index.upper_95,stats.timers.deals-service.http.countries.index.upper_5),"Countries#index")
|
95
|
+
- alias(diffSeries(stats.timers.deals-service.http.languages.show.upper_95,stats.timers.deals-service.http.languages.show.upper_5),"Languages#show")
|
96
|
+
- alias(diffSeries(stats.timers.deals-service.http.locales.show.upper_95,stats.timers.deals-service.http.locales.show.upper_5),"Locales#show")
|
97
|
+
- '#alias(diffSeries(stats.timers.deals-service.http.city_collections.index_city_ids.upper_95,stats.timers.deals-service.http.city_collections.index_city_ids.upper_5),"CityCollections#index_city_ids")'
|
98
|
+
- alias(deploys.deals-service,"drawAsInfinite(deals-service deploy)")
|
99
|
+
- alias(deploys.pipeline,"drawAsInfinite(pipeline deploy)")
|
100
|
+
- alias(nonNegativeDerivative(livingsocial.haproxy.cache-varnish01.servers.deals-service.responses_4xx),"4xx")
|
101
|
+
- alias(nonNegativeDerivative(livingsocial.haproxy.cache-varnish01.servers.deals-service.responses_5xx),"5xx")
|
102
|
+
- alias(nonNegativeDerivative(livingsocial.haproxy.cache-varnish01.servers.deals-service.responses_2xx),"2xx")
|
103
|
+
- alias(deploys.browse,"drawAsInfinite(Browse deploy)")
|
104
|
+
- alias(diffSeries(stats.timers.browse.http.home.index.upper_95,stats.timers.browse.http.home.index.upper_5),"Home#index")
|
105
|
+
- alias(diffSeries(stats.timers.browse.ls_deals_get_escapes.upper_95,stats.timers.browse.ls_deals_get_escapes.upper_5),"Get Escapes")
|
106
|
+
- alias(diffSeries(stats.timers.browse.ls_deals_get_events_and_experiences.upper_95,stats.timers.browse.ls_deals_get_events_and_experiences.upper_5),"Get Events")
|
107
|
+
- alias(diffSeries(stats.timers.browse.ls_chrome_header.upper_95,stats.timers.browse.chrome_header.upper_5),"Get Header")
|
108
|
+
- summarize(stats_counts.js.tracks.invalid_url,"1min")
|
109
|
+
- alias(smartSummarize(stats_counts.deploys.pixels, "1min", "sum"),"drawAsInfinite(deploy)")
|
110
|
+
- alias(smartSummarize(stats_counts.pixels.pixel_fires.conversion, "1min", "sum"),"Conversion")
|
111
|
+
- alias(smartSummarize(stats_counts.pixels.pixel_fires.affiliate_conversion, "1min", "sum"),"Affiliate Conversion")
|
112
|
+
- averageSeries(stats.gauges.mail.mta-scripts.*.delivery.rate)
|
113
|
+
- stats_counts.mail.mta-scripts.mail_sends_created
|
114
|
+
- alias(summarize(sum(stats_counts.mail.syringe.*.tracking.bad_tokens),"1min"), "Bad Tracking Tokens")
|
115
|
+
- alias(summarize(sum(stats_counts.mail.syringe.*.tracking.clicks, stats_counts.mail.syringe.*.tracking.renders, stats_counts.mail.syringe.*.tracking.opens),"1min"), "Total Tracking Events")
|
116
|
+
- alias(deploys.merchant_center,"drawAsInfinite(deploy)")
|
117
|
+
- alias(summarize(transformNull(stats_counts.merchant_center.ls_errors.reported), "1min"), "errors")
|
118
|
+
- alias(nonNegativeDerivative(livingsocial.haproxy.fe-edge01.servers.merchant-center.responses_2xx),"success")
|
119
|
+
- alias(nonNegativeDerivative(livingsocial.haproxy.fe-edge01.servers.merchant-profile-service.responses_2xx),"2xx")
|
120
|
+
- alias(nonNegativeDerivative(livingsocial.haproxy.fe-edge01.servers.merchant-profile-service.responses_4xx),"4xx")
|
121
|
+
- alias(nonNegativeDerivative(livingsocial.haproxy.fe-edge01.servers.merchant-profile-service.responses_5xx),"5xx")
|
122
|
+
- alias(summarize(deploys.merchant_profile_service,"1min","sum"),"drawAsInfinite(deploy)")
|
123
|
+
- alias(nonNegativeDerivative(livingsocial.haproxy.fe-edge01.servers.customer-profile-service.responses_2xx),"2xx")
|
124
|
+
- alias(nonNegativeDerivative(livingsocial.haproxy.fe-edge01.servers.customer-profile-service.responses_4xx),"4xx")
|
125
|
+
- alias(nonNegativeDerivative(livingsocial.haproxy.fe-edge01.servers.customer-profile-service.responses_5xx),"5xx")
|
126
|
+
- alias(deploys.customer_profile_service,"drawAsInfinite(deploy)")
|
127
|
+
- alias(summarize(stats_counts.merchant_profile_service.merchants.create,"10min","sum"),"Merchants Created")
|
128
|
+
- alias(summarize(stats_counts.merchant_profile_service.merchants.update,"10min","sum"),"Merchants Updated")
|
129
|
+
- alias(summarize(deploys.merchant_profile_service,"1min","sum"),"drawAsInfinite(deploy)")
|
130
|
+
- alias(summarize(stats_counts.merchant_profile_service.staff.created_or_updated,"10min","sum"),"Created Or Updated")
|
131
|
+
- alias(summarize(stats_counts.merchant_profile_service.staff.failed.validation,"10min","sum"),"Save Failed")
|
132
|
+
- alias(summarize(stats_counts.merchant_profile_service.staff.destroy_event,"10min","sum"),"Destroyed")
|
133
|
+
- alias(summarize(deploys.merchant_profile_service,"1min","sum"),"drawAsInfinite(deploy)")
|
134
|
+
- alias(summarize(stats_counts.customer_profile_service.customers.create_event,"1min","sum"),"Customers Created")
|
135
|
+
- alias(summarize(deploys.customer_profile_service,"1min","sum"),"drawAsInfinite(deploy)")
|
136
|
+
- alias(deploys.merchant_center,"drawAsInfinite(deploy)")
|
137
|
+
- alias(nonNegativeDerivative(livingsocial.haproxy.fe-edge01.servers.merchant-center.responses_4xx),"errors")
|
138
|
+
- alias(nonNegativeDerivative(livingsocial.haproxy.fe-edge01.servers.merchant-center.responses_2xx),"success")
|
139
|
+
- alias(transformNull(smartSummarize(stats_counts.merchant_center.vouchers.redeemed, "1min", "sum")), "redeemed")
|
140
|
+
- alias(transformNull(smartSummarize(stats_counts.merchant_center.vouchers.unredeemed,"1min", "sum")), "unredeemed")
|
141
|
+
- alias(summarize(stats.timers.merchant_profile_service.timing.api.v1.*.*.runtime.median, "1min", "avg"), "Average Median Response Time")
|
142
|
+
- alias(summarize(deploys.merchant_profile_service,"1min","sum"),"drawAsInfinite(deploy)")
|
143
|
+
- alias(transformNull(smartSummarize(stats.timers.customer_profile_service.timing.api.v1.customerlookups.*.runtime.median, "1min", "avg")), "Average Customer Lookup Response Time")
|
144
|
+
- alias(deploys.deals-service,"drawAsInfinite(deals-service deploy)")
|
145
|
+
- alias(deploys.pipeline,"drawAsInfinite(pipeline deploy)")
|
146
|
+
- alias(transformNull(smartSummarize(stats_counts.pipeline.ls_deals.invalid_json_post,"1min","sum"),0.0),"Invalid JSON received")
|
147
|
+
- alias(transformNull(smartSummarize(stats_counts.pipeline.ls_deals.post_retries_exceeded,"1min","sum"),0.0),"POST retries exceeded")
|
148
|
+
- alias(livingsocial.haproxy.fe-edge01.servers.merchant-center.total_weight, "unicorn workers")
|
149
|
+
- alias(livingsocial.haproxy.fe-edge01.servers.merchant-center.session_current, "queued requests")
|
150
|
+
- alias(stats.timers.canopy.routes.combined.time.mean,"Combined Mean Response Time")
|
151
|
+
- alias(stats.timers.canopy.routes.api.v1.deals.leafNode.leafNodeId.get.mean,"Deals - GET")
|
152
|
+
- alias(stats.timers.canopy.routes.api.v1.leafNodes.get.mean,"LeafNode - GET")
|
153
|
+
- alias(stats.timers.canopy.routes.api.v1.leafNodes.uri-fragment.uriFragment.get.mean,"UriFragment - GET")
|
154
|
+
- alias(nonNegativeDerivative(livingsocial.haproxy.fe-edge01.servers.canopy.responses_5xx),"5xx")
|
155
|
+
- alias(nonNegativeDerivative(livingsocial.haproxy.fe-edge01.servers.canopy.responses_4xx),"4xx")
|
156
|
+
- alias(nonNegativeDerivative(livingsocial.haproxy.fe-edge01.servers.canopy.responses_2xx),"2xx")
|
157
|
+
- alias(stats.timers.promocodes.routes.combined.time.mean,"Combined Mean Response Time")
|
158
|
+
- alias(nonNegativeDerivative(sumSeries(livingsocial.haproxy.fe-edge*.servers.promo-codes.responses_5xx)),"5xx")
|
159
|
+
- alias(nonNegativeDerivative(sumSeries(livingsocial.haproxy.fe-edge*.servers.promo-codes.responses_4xx)),"4xx")
|
160
|
+
- alias(nonNegativeDerivative(sumSeries(livingsocial.haproxy.fe-edge*.servers.promo-codes.responses_2xx)),"2xx")
|
161
|
+
- alias(stats.timers.monocle.routes.combined.time.mean,"Combined Mean Response Time")
|
162
|
+
- alias(nonNegativeDerivative(livingsocial.haproxy.fe-edge01.servers.monocle.responses_5xx),"5xx")
|
163
|
+
- alias(nonNegativeDerivative(livingsocial.haproxy.fe-edge01.servers.monocle.responses_4xx),"4xx")
|
164
|
+
- alias(nonNegativeDerivative(livingsocial.haproxy.fe-edge01.servers.monocle.responses_2xx),"2xx")
|
165
|
+
- alias(deploys.monocle,"drawAsInfinite(monocle deploy)")
|
166
|
+
- alias(smartSummarize(deploys.monocle,"1min","sum"),"drawAsInfinite(deploy)")
|
167
|
+
- alias(asPercent(smartSummarize(stats_counts.monocle.v2.deals.result.zero,"1min","sum"),smartSummarize(stats_counts.monocle.v2.deals.request,"1min","sum")),"Zero-Results as % of Requests")
|
168
|
+
- alias(stats.timers.cityservice.routes.combined.time.mean,"Combined Mean Response Time")
|
169
|
+
- alias(nonNegativeDerivative(livingsocial.haproxy.fe-edge01.servers.city-service.responses_5xx),"5xx")
|
170
|
+
- alias(nonNegativeDerivative(livingsocial.haproxy.fe-edge01.servers.city-service.responses_4xx),"4xx")
|
171
|
+
- alias(nonNegativeDerivative(livingsocial.haproxy.fe-edge01.servers.city-service.responses_2xx),"2xx")
|
172
|
+
- alias(nonNegativeDerivative(livingsocial.haproxy.fe-edge01.servers.geo-service.responses_5xx),"Geo Service 5xx")
|
173
|
+
- alias(stats.timers.emailscorer.routes.combined.time.mean,"Combined Mean Response Time")
|
174
|
+
- alias(nonNegativeDerivative(livingsocial.haproxy.fe-edge01.servers.emailscorer.responses_5xx),"5xx")
|
175
|
+
- alias(nonNegativeDerivative(livingsocial.haproxy.fe-edge01.servers.emailscorer.responses_4xx),"4xx")
|
176
|
+
- alias(nonNegativeDerivative(livingsocial.haproxy.fe-edge01.servers.emailscorer.responses_2xx),"2xx")
|
177
|
+
- alias(deploys.browse, "drawAsInfinite(deploys.browse)")
|
178
|
+
- alias(nonNegativeDerivative(livingsocial.haproxy.fe-edge01.servers.browse.responses_2xx), "browse 2xx responses")
|
179
|
+
- alias(nonNegativeDerivative(livingsocial.haproxy.fe-edge01.servers.browse.responses_5xx), "browse 5xx responses")
|
180
|
+
- alias(nonNegativeDerivative(livingsocial.haproxy.fe-edge01.servers.browse.responses_4xx), "browse 4xx responses")
|
181
|
+
- alias(deploys.browse-service, "drawAsInfinite(deploys.browse-service)")
|
182
|
+
- alias(deploys.browse, "drawAsInfinite(deploys.browse)")
|
183
|
+
- alias(nonNegativeDerivative(livingsocial.haproxy.fe-edge01.servers.browse-service.responses_5xx), "browse-service 5xx responses")
|
184
|
+
- alias(nonNegativeDerivative(livingsocial.haproxy.fe-edge01.servers.browse-service.responses_4xx), "browse-service 4xx responses")
|
185
|
+
- alias(diffSeries(stats.timers.events.local_deal.get_nearby.upper_5,stats.timers.events.local_deal.get_nearby.upper_95),"Fetch Time")
|
186
|
+
- alias(stats.timers.events.events_show.options_by_month.mean, "options by month")
|
187
|
+
- alias(stats.timers.events.events_show.nearby_local_deals.mean, "nearby local deals")
|
188
|
+
- alias(stats.timers.events.events_show.nearby_live_events.mean, "nearby live events")
|
189
|
+
- alias(stats.timers.events.events_show.deal_sharing.mean, "deal sharing")
|
190
|
+
- alias(stats.timers.events.events_show.schedule.mean, "schedule")
|
191
|
+
- alias(deploys.events,"drawAsInfinite(events deploy)")
|
192
|
+
- alias(deploys.deals-service,"drawAsInfinite(deals-service deploy)")
|
193
|
+
- alias(deploys.pipeline,"drawAsInfinite(pipeline deploy)")
|
194
|
+
- alias(stats.timers.deals-service.http.cities.show.count,"Cities#show")
|
195
|
+
- alias(stats.timers.deals-service.http.deals.show.count,"Deals#show")
|
196
|
+
- alias(stats.timers.deals-service.http.deals.show_dotd.count,"Deals#show_dotd")
|
197
|
+
- alias(stats.timers.deals-service.http.city_collections.index.count,"CityCollections#index")
|
198
|
+
- alias(stats.timers.deals-service.http.deal_collections.index.count,"DealCollections#index")
|
199
|
+
- alias(stats.timers.deals-service.http.escape_collections.index.count,"EscapeCollections#index")
|
200
|
+
- alias(stats.timers.deals-service.http.countries.show.count,"Countries#show")
|
201
|
+
- alias(stats.timers.deals-service.http.countries.index.count,"Countries#index")
|
202
|
+
- alias(stats.timers.deals-service.http.languages.show.count,"Languages#show")
|
203
|
+
- alias(stats.timers.deals-service.http.locales.show.count,"Locales#show")
|
204
|
+
- alias(integral(hitcount(stats_counts.events.update_will_call, '1h')),"update will call")
|
205
|
+
- alias(nonNegativeDerivative(livingsocial.haproxy.fe-edge01.servers.merchant-mobile-service.responses_2xx),"2xx")
|
206
|
+
- alias(nonNegativeDerivative(livingsocial.haproxy.fe-edge01.servers.merchant-mobile-service.responses_4xx),"4xx")
|
207
|
+
- alias(nonNegativeDerivative(livingsocial.haproxy.fe-edge01.servers.merchant-mobile-service.responses_5xx),"5xx")
|
208
|
+
- alias(summarize(deploys.merchant_mobile_service,"1min","sum"),"drawAsInfinite(deploy)")
|
209
|
+
- alias(stats.merchant_mobile_service.backend.deals_external_service.request.api.v3.merchant.deals.id.count, "MMS Deals Proxy")
|
210
|
+
- alias(stats.deals.api_tracking.api.v3.merchant.deals.index, "Deals v3 API")
|
211
|
+
- alias(deploys.browse-service,"drawAsInfinite(deploys.browse-service)")
|
212
|
+
- alias(stats.browse-service.ls_errors.reported,"Median Errors Reported")
|
213
|
+
- alias(smartSummarize(deploys.pipeline,"1min","sum"),"drawAsInfinite(deploy)")
|
214
|
+
- alias(nonNegativeDerivative(sumSeries(livingsocial.elasticsearch.clusters.logstash.logs*.indices.docs.count)),"Docs Count (Millions)")
|
215
|
+
- alias(nonNegativeDerivative(sumSeries(livingsocial.elasticsearch.clusters.logstash.logs*.indices.store.size_in_bytes)),"Size on Disc (GB)")
|
216
|
+
- alias(deploys.deals-service,"drawAsInfinite(deals-service deploy)")
|
217
|
+
- alias(deploys.stepford,"drawAsInfinite(stepford deploy)")
|
218
|
+
- alias(stats.timers.stepford.http.assets.package.count,"Assets#package")
|
219
|
+
- alias(stats.stepford.app_usage.stepford,"Stepford")
|
220
|
+
- alias(stats.stepford.app_usage.events,"Events")
|
221
|
+
- alias(stats.stepford.app_usage.circular,"Circular")
|
222
|
+
- alias(stats.stepford.app_usage.escapes,"Escapes")
|
223
|
+
- alias(stats.stepford.app_usage.browse,"Browse")
|
224
|
+
- alias(stats.stepford.app_usage.deals,"Deals")
|
225
|
+
- alias(stats.stepford.app_usage.preferences,"Preferences")
|
226
|
+
- alias(stats.stepford.app_usage.products,"Products")
|
227
|
+
- alias(stats.stepford.app_usage.checkout,"Checkout")
|
228
|
+
- alias(stats.stepford.app_usage.sponsors,"Sponsors")
|
229
|
+
- alias(stats.stepford.app_usage.sso-frontend,"SSO-Frontend")
|
230
|
+
- alias(stats.stepford.app_usage.unknown,"Unknown")
|
231
|
+
- alias(deploys.deals,"drawAsInfinite(deals deploy)")
|
232
|
+
- alias(deploys.stepford,"drawAsInfinite(stepford deploy)")
|
233
|
+
- alias(deploys.deals-service,"drawAsInfinite(deals-service deploy)")
|
234
|
+
- alias(deploys.stepford,"drawAsInfinite(stepford deploy)")
|
235
|
+
- alias(deploys.events,"drawAsInfinite(events deploy)")
|
236
|
+
- alias(deploys.escapes,"drawAsInfinite(escapes deploy)")
|
237
|
+
- alias(nonNegativeDerivative(livingsocial.haproxy.cache-varnish01.servers.stepford.responses_2xx),"2xx")
|
238
|
+
- alias(nonNegativeDerivative(livingsocial.haproxy.cache-varnish01.servers.stepford.responses_4xx),"4xx")
|
239
|
+
- alias(nonNegativeDerivative(livingsocial.haproxy.cache-varnish01.servers.stepford.responses_5xx),"5xx")
|
240
|
+
- alias(livingsocial.resque.cache03-6403-0.queue_sizes.babysoft.high,"babysoft high")
|
241
|
+
- alias(transformNull(stats_counts.babysoft.audit_sent_vouchers_count), 'Audit Count')
|
242
|
+
- alias(transformNull(livingsocial.resque.cache03-6403-0.queue_sizes.babysoft.low), 'Babysoft Low')
|
243
|
+
- alias(livingsocial.resque.cache03-6403-0.queue_sizes.babysoft.medium, 'Babysoft Medium')
|
244
|
+
- alias(transformNull(stats_counts.babysoft.sync_voucher.complete), 'Completed')
|
245
|
+
- alias(transformNull(stats_counts.babysoft.sync_voucher.failed), 'Failed')
|
246
|
+
- alias(transformNull(stats_counts.babysoft.sync_voucher.sent), 'Sent')
|
247
|
+
- alias(transformNull(stats_counts.babysoft.push_payments.evergreen), 'Evergreen')
|
248
|
+
- alias(transformNull(stats_counts.babysoft.push_payments.lets_bonus), 'Lets Bonus')
|
249
|
+
- alias(transformNull(stats_counts.babysoft.push_payments.extended_offer), 'Extended Offer')
|
250
|
+
- alias(transformNull(stats_counts.babysoft.push_payments.ending_between), 'Normal')
|
251
|
+
- alias(transformNull(stats.timers.babysoft.push_voucher_to_baynes.count), 'Count')
|
252
|
+
- alias(transformNull(stats.timers.babysoft.push_voucher_to_baynes.mean), 'Mean')
|
253
|
+
- alias(transformNull(stats.timers.preferator.scoring.job-time.upper),"Preferator Scoring Time")
|
254
|
+
- alias(transformNull(stats.timers.babysoft.fetch_opp_from_branson.count), 'Count')
|
255
|
+
- alias(transformNull(stats.timers.babysoft.fetch_opp_from_branson.mean), 'Mean')
|
256
|
+
- alias(transformNull(stats.timers.babysoft.get_location_from_baynes.count), 'Count')
|
257
|
+
- alias(transformNull(stats.timers.babysoft.get_location_from_baynes.mean), 'Mean')
|
258
|
+
- alias(transformNull(stats.timers.babysoft.get_voucher_from_baynes.count), 'Count')
|
259
|
+
- alias(transformNull(stats.timers.babysoft.get_voucher_from_baynes.mean), 'Mean')
|
260
|
+
- alias(transformNull(stats.timers.babysoft.post_deal_to_baynes.count), 'Count')
|
261
|
+
- alias(transformNull(stats.timers.babysoft.post_deal_to_baynes.mean), 'Mean')
|
262
|
+
- alias(transformNull(stats.timers.babysoft.post_voucher_to_baynes.count), 'Count')
|
263
|
+
- alias(transformNull(stats.timers.babysoft.post_voucher_to_baynes.mean), 'Mean')
|
264
|
+
- alias(transformNull(stats.timers.babysoft.post_vendor_to_baynes.count), 'Count')
|
265
|
+
- alias(transformNull(stats.timers.babysoft.post_vendor_to_baynes.mean), 'Mean')
|
266
|
+
- alias(transformNull(stats.timers.babysoft.update_vendor_in_baynes.count), 'Count')
|
267
|
+
- alias(transformNull(stats.timers.babysoft.update_vendor_in_baynes.mean), 'Mean')
|
268
|
+
- alias(deploys.stepford,"drawAsInfinite(stepford deploy)")
|
269
|
+
- alias(deploys.events,"drawAsInfinite(events deploy)")
|
270
|
+
- alias(deploys.escapes,"drawAsInfinite(escapes deploy)")
|
271
|
+
- alias(stats.timers.varnish.handle.stepford.hit.200.count,"hits")
|
272
|
+
- alias(stats.timers.varnish.handle.stepford.miss.200.count,"misses")
|
273
|
+
- alias(stats_counts.monocle.indexer.deals.full.start,"Indexer Full Start")
|
274
|
+
- alias(stats_counts.monocle.indexer.deals.error,"Indexer Update Error")
|
275
|
+
- alias(stats_counts.monocle.indexer.deals.full.start,"drawAsInfinite(Restart)")
|
276
|
+
- alias(stats_counts.monocle.indexer.deals.error,"drawAsInfinite(Error)")
|
277
|
+
- alias(stats_counts.monocle.indexer.skip.done,"drawAsInfinite(SkipUpdate)")
|
278
|
+
- alias(transformNull(smartSummarize(stats_counts.escapes.travel_service_fetch.get_all_landing_pages,"1min","sum")),"All Pages")
|
279
|
+
- alias(transformNull(smartSummarize(stats_counts.escapes.travel_service_fetch.get_landing_page,"1min","sum")),"Get Page")
|
280
|
+
- alias(transformNull(smartSummarize(stats_counts.escapes.travel_service_fetch.get_home_page,"1min","sum")),"Get Home Page")
|
281
|
+
- alias(transformNull(smartSummarize(stats_counts.escapes.travel_service_fetch.get_travel_deal,"1min","sum")),"Get Travel Deal")
|
282
|
+
- alias(transformNull(smartSummarize(stats_counts.escapes.travel_service_fetch.get_travel_deal_preview,"1min","sum")),"Travel Deal Preview")
|
283
|
+
- alias(transformNull(lowess(timeShift(smartSummarize(stats_counts.escapes.travel_service_fetch.get_all_landing_pages,"1min","sum"), "1w"), 0.5, 3)),"All Pages LW")
|
284
|
+
- alias(transformNull(lowess(timeShift(smartSummarize(stats_counts.escapes.travel_service_fetch.get_landing_page,"1min","sum"), "1w"), 0.5, 3)), "Get Page LW")
|
285
|
+
- alias(transformNull(lowess(timeShift(smartSummarize(stats_counts.escapes.travel_service_fetch.get_home_page,"1min","sum"), "1w"), 0.5, 3)), "Get Home Page LW")
|
286
|
+
- alias(transformNull(lowess(timeShift(smartSummarize(stats_counts.escapes.travel_service_fetch.get_travel_deal,"1min","sum"), "1w"), 0.5, 3)), "Get Travel Deal LW")
|
287
|
+
- alias(transformNull(lowess(timeShift(smartSummarize(stats_counts.escapes.travel_service_fetch.get_travel_deal_preview,"1min","sum"), "1w"), 0.5, 3)), "Travel Deal Preview LW")
|
288
|
+
- alias(transformNull(lowess(timeShift(smartSummarize(stats_counts.escapes.travel_service_fetch.get_all_landing_pages,"1min","sum"), "2w"), 0.5, 3)),"All Pages 2W")
|
289
|
+
- alias(transformNull(lowess(timeShift(smartSummarize(stats_counts.escapes.travel_service_fetch.get_landing_page,"1min","sum"), "2w"), 0.5, 3)), "Get Page 2W")
|
290
|
+
- alias(transformNull(lowess(timeShift(smartSummarize(stats_counts.escapes.travel_service_fetch.get_home_page,"1min","sum"), "2w"), 0.5, 3)), "Get Home Page 2W")
|
291
|
+
- alias(transformNull(lowess(timeShift(smartSummarize(stats_counts.escapes.travel_service_fetch.get_travel_deal,"1min","sum"), "2w"), 0.5, 3)), "Get Travel Deal 2W")
|
292
|
+
- alias(transformNull(lowess(timeShift(smartSummarize(stats_counts.escapes.travel_service_fetch.get_travel_deal_preview,"1min","sum"), "2w"), 0.5, 3)), "Travel Deal Preview 2W")
|
293
|
+
- alias(deploys.escapes,"drawAsInfinite(escapes deploy)")
|
294
|
+
- alias(deploys.travel-service,"drawAsInfinite(travel-service deploy)")
|
295
|
+
- alias(transformNull(smartSummarize(stats_counts.escapes.render_page.properties.show,"1min","sum")),"Property Show")
|
296
|
+
- alias(transformNull(smartSummarize(stats_counts.escapes.render_page.escapes.show,"1min","sum")),"Escapes Show")
|
297
|
+
- alias(lowess(timeShift(transformNull(smartSummarize(stats_counts.escapes.render_page.properties.show,"1min","sum")), "1w"), 0.5, 3),"Property Show LW")
|
298
|
+
- alias(lowess(timeShift(transformNull(smartSummarize(stats_counts.escapes.render_page.escapes.show,"1min","sum")), "1w"), 0.5, 3),"Escapes Show LW")
|
299
|
+
- alias(lowess(timeShift(transformNull(smartSummarize(stats_counts.escapes.render_page.properties.show,"1min","sum")), "2w"), 0.5, 3),"Property Show 2W")
|
300
|
+
- alias(lowess(timeShift(transformNull(smartSummarize(stats_counts.escapes.render_page.escapes.show,"1min","sum")), "2w"), 0.5, 3),"Escapes Show 2W")
|
301
|
+
- alias(deploys.escapes,"drawAsInfinite(escapes deploy)")
|
302
|
+
- alias(deploys.travel-service,"drawAsInfinite(travel-service deploy)")
|
303
|
+
- alias(transformNull(smartSummarize(stats_counts.escapes.checkout.checkout_started,"1min","sum")),"Checkouts Started")
|
304
|
+
- alias(transformNull(smartSummarize(stats_counts.escapes.checkout.purchase_started,"1min","sum")),"Purchases")
|
305
|
+
- alias(lowess(timeShift(transformNull(smartSummarize(stats_counts.escapes.checkout.checkout_started,"1min","sum")), "1w"), 0.5, 3),"Checkouts Last Week")
|
306
|
+
- alias(lowess(timeShift(transformNull(smartSummarize(stats_counts.escapes.checkout.purchase_started,"1min","sum")), "1w"), 0.5, 3),"Purchases Last Week")
|
307
|
+
- alias(lowess(timeShift(transformNull(smartSummarize(stats_counts.escapes.checkout.checkout_started,"1min","sum")), "2w"), 0.5, 3),"Checkouts 2W")
|
308
|
+
- alias(lowess(timeShift(transformNull(smartSummarize(stats_counts.escapes.checkout.purchase_started,"1min","sum")), "2w"), 0.5, 3),"Purchases 2W")
|
309
|
+
- alias(deploys.escapes,"drawAsInfinite(escapes deploy)")
|
310
|
+
- alias(deploys.travel-service,"drawAsInfinite(travel-service deploy)")
|
311
|
+
- alias(transformNull(diffSeries(stats.timers.escapes.timings.travel_service.availability.upper_95,stats.timers.escapes.timings.travel_service.availability.upper_5)),"Availability")
|
312
|
+
- alias(deploys.escapes,"drawAsInfinite(escapes deploy)")
|
313
|
+
- alias(deploys.travel-service,"drawAsInfinite(travel-service deploy)")
|
314
|
+
- alias(stats.timers.geoservice.routes.combined.time.mean,"Combined Mean Response Time")
|
315
|
+
- alias(stats_counts.geoservice.lookup.ip.error,"Lookup by ip error")
|
316
|
+
- alias(stats_counts.geoservice.lookup.ip.error,"drawAsInfinite(IpError)")
|
317
|
+
- alias(transformNull(smartSummarize(sumSeries(stats_counts.deals.purchase.*.at_home.created),"1min","sum")),"Today Raw")
|
318
|
+
- alias(lowess(timeShift(transformNull(smartSummarize(sumSeries(stats_counts.deals.purchase.*.at_home.created),"1min","sum")),"1w"),0.5,3),"Last Week Smoothed")
|
319
|
+
- alias(lowess(timeShift(transformNull(smartSummarize(sumSeries(stats_counts.deals.purchase.*.at_home.created),"1min","sum")),"2w"),0.5,3),"2 Weeks Ago Smoothed")
|
320
|
+
- alias(transformNull(smartSummarize(sumSeries(stats_counts.deals.purchase.*.escapes.created),"1min","sum")),"Today Raw")
|
321
|
+
- alias(lowess(timeShift(transformNull(smartSummarize(sumSeries(stats_counts.deals.purchase.*.escapes.created),"1min","sum")),"1w"),0.5,3),"Last Week Smoothed")
|
322
|
+
- alias(lowess(timeShift(transformNull(smartSummarize(sumSeries(stats_counts.deals.purchase.*.escapes.created),"1min","sum")),"2w"),0.5,3),"2 Weeks Agp Smoothed")
|
323
|
+
- alias(transformNull(smartSummarize(sumSeries(stats_counts.deals.purchase.*.families.created),"1min","sum")),"Today Raw")
|
324
|
+
- alias(lowess(timeShift(transformNull(smartSummarize(sumSeries(stats_counts.deals.purchase.*.families.created),"1min","sum")),"1w"),0.5,3),"Last Week Smoothed")
|
325
|
+
- alias(lowess(timeShift(transformNull(smartSummarize(sumSeries(stats_counts.deals.purchase.*.families.created),"1min","sum")),"2w"),0.5,3),"2 Weeks Ago Smoothed")
|
326
|
+
- alias(transformNull(smartSummarize(sumSeries(stats_counts.deals.purchase.*.live_events.created),"1min","sum")),"Today Raw")
|
327
|
+
- alias(lowess(timeShift(transformNull(smartSummarize(sumSeries(stats_counts.deals.purchase.*.live_events.created),"1min","sum")),"1w"),0.5,3),"1 Week Ago Smoothed")
|
328
|
+
- alias(lowess(timeShift(transformNull(smartSummarize(sumSeries(stats_counts.deals.purchase.*.live_events.created),"1min","sum")),"2w"),0.5,3),"2 Weeks Ago Smoothed")
|
329
|
+
- alias(transformNull(smartSummarize(sumSeries(stats_counts.deals.purchase.*.local.created),"1min","sum")),"Today Raw")
|
330
|
+
- alias(lowess(timeShift(transformNull(smartSummarize(sumSeries(stats_counts.deals.purchase.*.local.created),"1min","sum")),"1w"),0.5,3),"1 Week Ago Smoothed")
|
331
|
+
- alias(lowess(timeShift(transformNull(smartSummarize(sumSeries(stats_counts.deals.purchase.*.local.created),"1min","sum")),"2w"),0.5,3),"2 Weeks Ago Smoothed")
|
332
|
+
- alias(transformNull(smartSummarize(stats_counts.deals.purchase.android-app.local.created,"5min","sum")),"Android App")
|
333
|
+
- alias(transformNull(smartSummarize(stats_counts.deals.purchase.ios-app.local.created,"5min","sum")),"IOS App")
|
334
|
+
- alias(transformNull(smartSummarize(stats_counts.deals.purchase.mobile-web.local.created,"5min","sum")),"Mobile Web")
|
335
|
+
- alias(transformNull(timeShift(smartSummarize(stats_counts.deals.purchase.android-app.local.created,"5min","sum"),"1w")),"Android App LW")
|
336
|
+
- alias(transformNull(timeShift(smartSummarize(stats_counts.deals.purchase.ios-app.local.created,"5min","sum"),"1w")),"IOS App LW")
|
337
|
+
- alias(transformNull(timeShift(smartSummarize(stats_counts.deals.purchase.mobile-web.local.created,"5min","sum"),"1w")),"Mobile Web LW")
|
338
|
+
- alias(transformNull(smartSummarize(stats_counts.deals.purchase.android-app.escapes.created,"1min","sum")),"Android App")
|
339
|
+
- alias(transformNull(smartSummarize(stats_counts.deals.purchase.ios-app.escapes.created,"1min","sum")),"IOS App")
|
340
|
+
- alias(transformNull(smartSummarize(stats_counts.deals.purchase.mobile-web.escapes.created,"1min","sum")),"Mobile Web")
|
341
|
+
- alias(transformNull(smartSummarize(stats_counts.deals.purchase.android-app.families.created,"5min","sum")),"Android App")
|
342
|
+
- alias(transformNull(smartSummarize(stats_counts.deals.purchase.ios-app.families.created,"5min","sum")),"IOS App")
|
343
|
+
- alias(transformNull(smartSummarize(stats_counts.deals.purchase.mobile-web.families.created,"5min","sum")),"Mobile Web")
|
344
|
+
- alias(transformNull(timeShift(smartSummarize(stats_counts.deals.purchase.android-app.families.created,"5min","sum"),"1w")),"Android App LW")
|
345
|
+
- alias(transformNull(timeShift(smartSummarize(stats_counts.deals.purchase.ios-app.families.created,"5min","sum"),"1w")),"IOS App LW")
|
346
|
+
- alias(transformNull(timeShift(smartSummarize(stats_counts.deals.purchase.mobile-web.families.created,"5min","sum"),"1w")),"Mobile Web LW")
|
347
|
+
- alias(transformNull(smartSummarize(stats_counts.deals.purchase.android-app.at_home.created,"1min","sum")),"Android App")
|
348
|
+
- alias(transformNull(smartSummarize(stats_counts.deals.purchase.ios-app.at_home.created,"1min","sum")),"IOS App")
|
349
|
+
- alias(transformNull(smartSummarize(stats_counts.deals.purchase.mobile-web.at_home.created,"1min","sum")),"Mobile Web")
|
350
|
+
- alias(transformNull(smartSummarize(stats_counts.deals.purchase.android-app.live_events.created,"5min","sum")),"Android App")
|
351
|
+
- alias(transformNull(smartSummarize(stats_counts.deals.purchase.ios-app.live_events.created,"5min","sum")),"IOS App")
|
352
|
+
- alias(transformNull(smartSummarize(stats_counts.deals.purchase.mobile-web.live_events.created,"5min","sum")),"Mobile Web")
|
353
|
+
- alias(transformNull(timeShift(smartSummarize(stats_counts.deals.purchase.android-app.live_events.created,"5min","sum"),"1w")),"Android App LW")
|
354
|
+
- alias(transformNull(timeShift(smartSummarize(stats_counts.deals.purchase.ios-app.live_events.created,"5min","sum"),"1w")),"IOS App LW")
|
355
|
+
- alias(transformNull(timeShift(smartSummarize(stats_counts.deals.purchase.mobile-web.live_events.created,"5min","sum"),"1w")),"Mobile Web LW")
|
356
|
+
- alias(transformNull(smartSummarize(stats_counts.merchant_center.jobs.roi.watson.watson_roi_email_sends.changed, "1min", "sum")), "changed")
|
357
|
+
- alias(transformNull(smartSummarize(stats_counts.merchant_center.jobs.roi.watson.watson_roi_email_sends.changed_to_zero, "1min", "sum")), "changed_to_zero")
|
358
|
+
- alias(transformNull(smartSummarize(stats_counts.merchant_center.jobs.roi.watson.watson_roi_email_sends.processed, "1min", "sum")), "processed")
|
359
|
+
- alias(transformNull(livingsocial.redis.6403.cache03.summary.used_memory), "used memory cache 3")
|
360
|
+
- alias(transformNull(livingsocial.redis.6403.cache04.summary.used_memory), "used memory cache 4")
|
361
|
+
- stats.*.vanity.exceptions.*
|
362
|
+
- alias(transformNull(smartSummarize(livingsocial.haproxy.fe-edge01.servers.travel-service.session_current,"1min","sum")),"Travel current")
|
363
|
+
- alias(transformNull(smartSummarize(livingsocial.haproxy.fe-edge01.servers.travel-service.queue_current,"1min","sum")),"Travel queue")
|
364
|
+
- alias(transformNull(smartSummarize(livingsocial.haproxy.fe-edge01.servers.escapes.session_current,"1min","sum")),"Escapes current")
|
365
|
+
- alias(transformNull(smartSummarize(livingsocial.haproxy.fe-edge01.servers.escapes.queue_current,"1min","sum")),"Escapes queue")
|
366
|
+
- alias(transformNull(smartSummarize(stats_counts.merchant_center.jobs.roi.ga.deal_page_impressions.changed, "1min", "sum")), "changed")
|
367
|
+
- alias(transformNull(smartSummarize(sumSeries(stats_counts.deals.escapes.checkout.*.voucher.start), "1min", "sum")), "Voucher checkouts")
|
368
|
+
- alias(transformNull(smartSummarize(sumSeries(stats_counts.deals.escapes.checkout.*.date_specific.start), "1min", "sum")), "Dated checkouts")
|
369
|
+
- alias(transformNull(smartSummarize(sumSeries(stats_counts.deals.escapes.checkout.*.*.start), "1min", "sum")), "Overall checkouts")
|
370
|
+
- alias(transformNull(lowess(timeShift(smartSummarize(sumSeries(stats_counts.deals.escapes.checkout.*.*.start), "1min", "sum"), "1w"), 0.5, 3)), "Overall checkouts LW")
|
371
|
+
- alias(transformNull(lowess(timeShift(smartSummarize(sumSeries(stats_counts.deals.escapes.checkout.*.*.start), "1min", "sum"), "2w"), 0.5, 3)), "Overall checkouts 2W")
|
372
|
+
- alias(deploys.escapes,"drawAsInfinite(escapes deploy)")
|
373
|
+
- alias(deploys.travel-service,"drawAsInfinite(travel-service deploy)")
|
374
|
+
- alias(transformNull(smartSummarize(sumSeries(stats_counts.deals.escapes.purchase.voucher.created), "1min", "sum")), "Voucher purchases")
|
375
|
+
- alias(transformNull(smartSummarize(sumSeries(stats_counts.deals.escapes.purchase.date_specific.created), "1min", "sum")), "Dated purchases")
|
376
|
+
- alias(transformNull(smartSummarize(sumSeries(stats_counts.deals.escapes.purchase.*.created), "1min", "sum")), "Overall purchases")
|
377
|
+
- alias(transformNull(lowess(timeShift(smartSummarize(sumSeries(stats_counts.deals.escapes.purchase.*.created), "1min", "sum"), "1w"), 0.5, 3)), "Overall purchases LW")
|
378
|
+
- alias(transformNull(lowess(timeShift(smartSummarize(sumSeries(stats_counts.deals.escapes.purchase.*.created), "1min", "sum"), "2w"), 0.5, 3)), "Overall purchases 2W")
|
379
|
+
- alias(deploys.escapes,"drawAsInfinite(escapes deploy)")
|
380
|
+
- alias(deploys.travel-service,"drawAsInfinite(travel-service deploy)")
|
381
|
+
- alias(transformNull(smartSummarize(stats_counts.escapes.api_fetch.deal,"1min","sum")),"Get Deal")
|
382
|
+
- alias(transformNull(smartSummarize(stats_counts.escapes.api_fetch.collection,"1min","sum")),"Get Collection")
|
383
|
+
- alias(transformNull(smartSummarize(stats_counts.escapes.api_fetch.get_country_collection,"1min","sum")),"Get Country Collection")
|
384
|
+
- alias(transformNull(lowess(timeShift(smartSummarize(stats_counts.escapes.api_fetch.deal,"1min","sum"), "1w"), 0.5, 3)),"Get Deal LW")
|
385
|
+
- alias(transformNull(lowess(timeShift(smartSummarize(stats_counts.escapes.api_fetch.collection,"1min","sum"), "1w"), 0.5, 3)),"Get Collection LW")
|
386
|
+
- alias(transformNull(lowess(timeShift(smartSummarize(stats_counts.escapes.api_fetch.get_country_collection,"1min","sum"), "1w"), 0.5, 3)),"Get Country Collection LW")
|
387
|
+
- alias(transformNull(lowess(timeShift(smartSummarize(stats_counts.escapes.api_fetch.deal,"1min","sum"), "2w"), 0.5, 3)),"Get Deal 2W")
|
388
|
+
- alias(transformNull(lowess(timeShift(smartSummarize(stats_counts.escapes.api_fetch.collection,"1min","sum"), "2w"), 0.5, 3)),"Get Collection 2W")
|
389
|
+
- alias(transformNull(lowess(timeShift(smartSummarize(stats_counts.escapes.api_fetch.get_country_collection,"1min","sum"), "2w"), 0.5, 3)),"Get Country Collection 2W")
|
390
|
+
- alias(deploys.escapes,"drawAsInfinite(escapes deploy)")
|
391
|
+
- alias(deploys.travel-service,"drawAsInfinite(travel-service deploy)")
|
392
|
+
- alias(transformNull(diffSeries(stats.timers.escapes.timings.api_fetch.collection.upper_95,stats.timers.escapes.timings.api_fetch.collection.upper_5)),"Collection")
|
393
|
+
- alias(transformNull(diffSeries(stats.timers.escapes.timings.api_fetch.deal.upper_95,stats.timers.escapes.timings.api_fetch.deal.upper_5)),"Deal")
|
394
|
+
- alias(deploys.escapes,"drawAsInfinite(escapes deploy)")
|
395
|
+
- alias(deploys.travel-service,"drawAsInfinite(travel-service deploy)")
|
396
|
+
- alias(transformNull(smartSummarize(stats_counts.escapes.render_page.escapes.index,"1min","sum")),"Index")
|
397
|
+
- alias(transformNull(smartSummarize(stats_counts.escapes.render_page.escapes.region,"1min","sum")),"Region")
|
398
|
+
- alias(transformNull(smartSummarize(stats_counts.escapes.render_page.escapes.interest,"1min","sum")),"Interest")
|
399
|
+
- alias(transformNull(lowess(timeShift(smartSummarize(stats_counts.escapes.render_page.escapes.index,"1min","sum"), "1w"), 0.5, 3)), "Index LW")
|
400
|
+
- alias(transformNull(lowess(timeShift(smartSummarize(stats_counts.escapes.render_page.escapes.region,"1min","sum"),"1w"), 0.5, 3)),"Region LW")
|
401
|
+
- alias(transformNull(lowess(timeShift(smartSummarize(stats_counts.escapes.render_page.escapes.interest,"1min","sum"),"1w"), 0.5, 3)),"Interest LW")
|
402
|
+
- alias(transformNull(lowess(timeShift(smartSummarize(stats_counts.escapes.render_page.escapes.index,"1min","sum"), "2w"), 0.5, 3)), "Index 2W")
|
403
|
+
- alias(transformNull(lowess(timeShift(smartSummarize(stats_counts.escapes.render_page.escapes.region,"1min","sum"),"2w"), 0.5, 3)),"Region 2W")
|
404
|
+
- alias(transformNull(lowess(timeShift(smartSummarize(stats_counts.escapes.render_page.escapes.interest,"1min","sum"),"2w"), 0.5, 3)),"Interest 2W")
|
405
|
+
- alias(deploys.escapes,"drawAsInfinite(escapes deploy)")
|
406
|
+
- alias(deploys.travel-service,"drawAsInfinite(travel-service deploy)")
|
407
|
+
- alias(deploys.deals,"drawAsInfinite(deals deploy)")
|
408
|
+
- alias(stats.deals.purchase.mobile_request.invalid.*, "mobileCSRF")
|
409
|
+
- alias(stats.deals.purchase.html_request.invalid, "htmlCSRF")
|
410
|
+
- alias(stats.deals.purchase.api_request.invalid, "apiCSRF")
|
411
|
+
- alias(asPercent(transformNull(sumSeries(smartSummarize(stats_counts.escapes.travel_service_fetch.availability_error*,"1min","sum"),smartSummarize(stats_counts.escapes.travel_service_fetch.no_availability*,"1min","sum"))),transformNull(smartSummarize(stats_counts.escapes.render_page.properties.available_segments*,"1min","sum"))),"% No Availability")
|
412
|
+
- alias(lowess(timeShift(asPercent(transformNull(sumSeries(smartSummarize(stats_counts.escapes.travel_service_fetch.availability_error*,"1min","sum"),smartSummarize(stats_counts.escapes.travel_service_fetch.no_availability*,"1min","sum"))),transformNull(smartSummarize(stats_counts.escapes.render_page.properties.available_segments*,"1min","sum"))),"1w"), 0.5, 3),"Last Week Smoothed")
|
413
|
+
- alias(lowess(timeShift(asPercent(transformNull(sumSeries(smartSummarize(stats_counts.escapes.travel_service_fetch.availability_error*,"1min","sum"),smartSummarize(stats_counts.escapes.travel_service_fetch.no_availability*,"1min","sum"))),transformNull(smartSummarize(stats_counts.escapes.render_page.properties.available_segments*,"1min","sum"))),"2w"), 0.5, 3),"Two weeks ago smoothed")
|
414
|
+
- alias(deploys.escapes,"drawAsInfinite(escapes deploy)")
|
415
|
+
- alias(deploys.travel-service,"drawAsInfinite(travel-service deploy)")
|
416
|
+
- alias(smartSummarize(stats_counts.escapes.render_page.properties.available_segments*,"1min","sum"),"Today Raw")
|
417
|
+
- alias(lowess(timeShift(smartSummarize(stats_counts.escapes.render_page.properties.available_segments*,"1min","sum"),"1w"),0.5,3),"Last Week Smoothed")
|
418
|
+
- alias(lowess(timeShift(smartSummarize(stats_counts.escapes.render_page.properties.available_segments*,"1min","sum"),"2w"),0.5,3),"Two Weeks Ago Smoothed")
|
419
|
+
- alias(deploys.escapes,"drawAsInfinite(escapes deploy)")
|
420
|
+
- alias(deploys.travel-service,"drawAsInfinite(travel-service deploy)")
|
421
|
+
- alias(deploys.deals,"drawAsInfinite(deploy)")
|
422
|
+
- alias(diffSeries(stats.timers.deals.deals.show.upper_95,stats.timers.deals.deals.show.upper_5),"Response Time")
|
423
|
+
- alias(deploys.deals,"drawAsInfinite(deploy)")
|
424
|
+
- alias(diffSeries(stats.timers.deals.deals.show.upper_95,stats.timers.deals.deals.show.upper_5),"Response Time")
|
425
|
+
- alias(nonNegativeDerivative(livingsocial.haproxy.fe-edge01.servers.mobile.responses_4xx),"4xx")
|
426
|
+
- alias(nonNegativeDerivative(livingsocial.haproxy.fe-edge01.servers.mobile.responses_5xx),"5xx")
|
427
|
+
- alias(deploys.mobile,"drawAsInfinite(mobile deploy)")
|
428
|
+
- livingsocial.redis.6382.cache03.summary.used_memory
|
429
|
+
- summarize(livingsocial.redis.6382.cache03.summary.evicted_keys, "10min")
|
430
|
+
- alias(nonNegativeDerivative(livingsocial.haproxy.fe-edge01.servers.events.responses_4xx),"4xx")
|
431
|
+
- alias(nonNegativeDerivative(livingsocial.haproxy.fe-edge01.servers.events.responses_5xx),"5xx")
|
432
|
+
- alias(deploys.events,"drawAsInfinite(events deploy)")
|
433
|
+
- alias(nonNegativeDerivative(livingsocial.haproxy.fe-edge01.servers.reservations.responses_4xx),"4xx")
|
434
|
+
- alias(nonNegativeDerivative(livingsocial.haproxy.fe-edge01.servers.reservations.responses_5xx),"5xx")
|
435
|
+
- alias(nonNegativeDerivative(livingsocial.haproxy.fe-edge01.servers.escapes.responses_4xx),"4xx")
|
436
|
+
- alias(nonNegativeDerivative(livingsocial.haproxy.fe-edge01.servers.escapes.responses_5xx),"5xx")
|
437
|
+
- alias(transformNull(smartSummarize(stats_counts.escapes.page_not_found,"1min","sum")),"Page not found (redirect to home)")
|
438
|
+
- alias(lowess(timeShift(nonNegativeDerivative(livingsocial.haproxy.fe-edge01.servers.escapes.responses_4xx), "1w"), 0.5, 3), "4xx 1w")
|
439
|
+
- alias(lowess(timeShift(nonNegativeDerivative(livingsocial.haproxy.fe-edge01.servers.escapes.responses_5xx), "1w"), 0.5, 3), "5xx 1w")
|
440
|
+
- alias(lowess(timeShift(transformNull(smartSummarize(stats_counts.escapes.page_not_found,"1min","sum")), "1w"), 0.5, 3),"Page not found 1w")
|
441
|
+
- alias(lowess(timeShift(nonNegativeDerivative(livingsocial.haproxy.fe-edge01.servers.escapes.responses_4xx), "2w"), 0.5, 3), "4xx 2w")
|
442
|
+
- alias(lowess(timeShift(nonNegativeDerivative(livingsocial.haproxy.fe-edge01.servers.escapes.responses_5xx), "2w"), 0.5, 3), "5xx 2w")
|
443
|
+
- alias(lowess(timeShift(transformNull(smartSummarize(stats_counts.escapes.page_not_found,"1min","sum")), "2w"), 0.5, 3),"Page not found 2w")
|
444
|
+
- aliasByNode(stats.timers.mail.syringe.*.endpoint.*.iad.livingsocial.net.lease_time.mean,6)
|
445
|
+
- alias(deploys.deals,"drawAsInfinite(deploy)")
|
446
|
+
- alias(stats.deals.exceptions.skipped_notification.utf_byte_squence, "utfExceptions")
|
447
|
+
- alias(deploys.deals,"drawAsInfinite(deploy deals)")
|
448
|
+
- alias(deploys.accounts,"drawAsInfinite(deploy accounts)")
|
449
|
+
- alias(sumSeries(stats_counts.*.person.created), "Person Created")
|
450
|
+
- alias(stats_counts.accounts.recent_accounts.*.missing_emails, "Accounts missing email")
|
451
|
+
- alias(deploys.deals,"drawAsInfinite(deploy deals)")
|
452
|
+
- alias(deploys.accounts,"drawAsInfinite(deploy accounts)")
|
453
|
+
- alias(stats.accounts.recent_accounts.*.missing_subscriptions, "Accounts missing subscriptions")
|
454
|
+
- alias(sumSeries(stats.*.person.created), "Person Created")
|
455
|
+
- alias(nonNegativeDerivative(livingsocial.haproxy.fe-edge01.servers.circular.responses_4xx),"4xx")
|
456
|
+
- alias(nonNegativeDerivative(livingsocial.haproxy.fe-edge01.servers.circular.responses_5xx),"5xx")
|
457
|
+
- alias(deploys.circular,"drawAsInfinite(circular deploy)")
|
458
|
+
- alias(nonNegativeDerivative(livingsocial.haproxy.fe-edge01.servers.products.responses_4xx),"4xx")
|
459
|
+
- alias(nonNegativeDerivative(livingsocial.haproxy.fe-edge01.servers.products.responses_5xx),"5xx")
|
460
|
+
- alias(deploys.products,"drawAsInfinite(products deploy)")
|
461
|
+
- alias(nonNegativeDerivative(livingsocial.haproxy.fe-edge01.servers.checkout.responses_4xx),"4xx")
|
462
|
+
- alias(nonNegativeDerivative(livingsocial.haproxy.fe-edge01.servers.checkout.responses_5xx),"5xx")
|
463
|
+
- alias(deploys.checkout,"drawAsInfinite(checkout deploy)")
|
464
|
+
- alias(nonNegativeDerivative(livingsocial.haproxy.fe-edge01.servers.sponsors.responses_4xx),"4xx")
|
465
|
+
- alias(nonNegativeDerivative(livingsocial.haproxy.fe-edge01.servers.sponsors.responses_5xx),"5xx")
|
466
|
+
- alias(transformNull(summarize(stats_counts.mail.syringe.summary.city.1.vertical.daily.sent,"1h","sum")),"approximate sends")
|
467
|
+
- alias(transformNull(summarize(stats_counts.mail.syringe.summary.city.1.vertical.daily.duplicates,"1h","sum")),"duplicates")
|
468
|
+
- alias(nonNegativeDerivative(sumSeries(livingsocial.haproxy.fe-edge*.servers.refcode.responses_5xx)),"5xx")
|
469
|
+
- alias(nonNegativeDerivative(sumSeries(livingsocial.haproxy.fe-edge*.servers.refcode.responses_4xx)),"4xx")
|
470
|
+
- alias(nonNegativeDerivative(sumSeries(livingsocial.haproxy.fe-edge*.servers.refcode.responses_2xx)),"2xx")
|
471
|
+
- ''
|
472
|
+
- alias(nonNegativeDerivative(livingsocial.haproxy.b80.servers.payments.responses_4xx),"4xx b80")
|
473
|
+
- alias(nonNegativeDerivative(livingsocial.haproxy.b80.servers.payments.responses_5xx),"5xx b80")
|
474
|
+
- alias(nonNegativeDerivative(livingsocial.haproxy.b81.servers.payments.responses_4xx),"4xx b81")
|
475
|
+
- alias(nonNegativeDerivative(livingsocial.haproxy.b81.servers.payments.responses_5xx),"5xx b81")
|
476
|
+
- alias(nonNegativeDerivative(livingsocial.haproxy.fe-edge01.servers.cupcake.responses_4xx),"4xx")
|
477
|
+
- alias(nonNegativeDerivative(livingsocial.haproxy.fe-edge01.servers.cupcake.responses_5xx),"5xx")
|
478
|
+
- alias(deploys.cupcake,"drawAsInfinite(cupcake deploy)")
|
479
|
+
- alias(nonNegativeDerivative(livingsocial.haproxy.fe-edge01.servers.deals.responses_4xx),"4xx")
|
480
|
+
- alias(nonNegativeDerivative(livingsocial.haproxy.fe-edge01.servers.deals.responses_5xx),"5xx")
|
481
|
+
- alias(smartSummarize(deploys.deals,"1min","sum"),"drawAsInfinite(deals deploy)")
|
482
|
+
- alias(nonNegativeDerivative(livingsocial.haproxy.fe-edge01.servers.browse-service.responses_4xx),"4xx")
|
483
|
+
- alias(nonNegativeDerivative(livingsocial.haproxy.fe-edge01.servers.browse-service.responses_5xx),"5xx")
|
484
|
+
- alias(deploys.browse-service,"drawAsInfinite(browse-service deploy)")
|
485
|
+
- alias(nonNegativeDerivative(livingsocial.haproxy.fe-edge01.servers.geo-service.responses_5xx),"5xx")
|
486
|
+
- alias(nonNegativeDerivative(livingsocial.haproxy.fe-edge01.servers.geo-service.responses_4xx),"4xx")
|
487
|
+
- alias(nonNegativeDerivative(livingsocial.haproxy.fe-edge01.servers.geo-service.responses_2xx),"2xx")
|
488
|
+
- alias(nonNegativeDerivative(sumSeries(livingsocial.haproxy.fe-edge*.servers.admin.responses_4xx)),"4xx")
|
489
|
+
- alias(nonNegativeDerivative(sumSeries(livingsocial.haproxy.fe-edge*.servers.admin.responses_5xx)),"5xx")
|
490
|
+
- alias(smartSummarize(deploys.admin,"1min","sum"),"drawAsInfinite(admin deploy)")
|
491
|
+
- alias(transformNull(summarize(stats_counts.mail.syringe.summary.city.3.vertical.daily.sent,"30min","sum")),"approximate sends")
|
492
|
+
- alias(transformNull(summarize(stats_counts.mail.syringe.summary.city.3.vertical.daily.duplicates,"30min","sum")),"duplicates")
|
493
|
+
- alias(nonNegativeDerivative(livingsocial.haproxy.fe-edge01.servers.corporate.responses_4xx),"4xx")
|
494
|
+
- alias(nonNegativeDerivative(livingsocial.haproxy.fe-edge01.servers.corporate.responses_5xx),"5xx")
|
495
|
+
- alias(transformNull(summarize(stats_counts.mail.syringe.summary.city.4.vertical.daily.sent,"30min","sum")),"approximate sends")
|
496
|
+
- alias(transformNull(summarize(stats_counts.mail.syringe.summary.city.4.vertical.daily.duplicates,"30min","sum")),"duplicates")
|
497
|
+
- alias(summarize(stats_counts.message_center.reviews.imported, '1min'), 'Reviews imported/min')
|
498
|
+
- alias(summarize(stats_counts.message_center.replies.created, '12h'), 'Merchant replies')
|
499
|
+
- alias(summarize(stats_counts.message_center.consumer_replies.created, '12h'), 'Consumer replies')
|
500
|
+
- alias(nonNegativeDerivative(sumSeries(livingsocial.haproxy.fe-edge*.servers.pixels.responses_5xx)),"5xx")
|
501
|
+
- alias(nonNegativeDerivative(sumSeries(livingsocial.haproxy.fe-edge*.servers.pixels.responses_4xx)),"4xx")
|
502
|
+
- alias(nonNegativeDerivative(sumSeries(livingsocial.haproxy.fe-edge*.servers.pixels.responses_2xx)),"2xx")
|
503
|
+
- alias(drawAsInfinite(deploys.pipeline), "pipeline deploy")
|
504
|
+
- alias(scale(*.timers.pipeline.mark_live.run_for_cities.median, 0.000016), "median run-time")
|
505
|
+
- alias(nonNegativeDerivative(sumSeries(livingsocial.haproxy.fe-edge*.servers.referee.responses_5xx)),"5xx")
|
506
|
+
- alias(nonNegativeDerivative(sumSeries(livingsocial.haproxy.fe-edge*.servers.referee.responses_4xx)),"4xx")
|
507
|
+
- alias(nonNegativeDerivative(sumSeries(livingsocial.haproxy.fe-edge*.servers.referee.responses_2xx)),"2xx")
|
508
|
+
- alias(drawAsInfinite(deploys.pipeline), "pipeline deploy")
|
509
|
+
- alias(*.timers.pipeline.mark_live.mark_and_publish_active_escapes.median, "mark_and_publish_active_escapes (msecs)")
|
510
|
+
- alias(drawAsInfinite(deploys.pipeline), "pipeline deploy")
|
511
|
+
- alias(*.timers.pipeline.mark_live.publish_deal_of_the_day_data.upper_99, "publish_deal_of_the_day_data")
|
512
|
+
- alias(transformNull(summarize(stats_counts.mail.syringe.summary.city.6.vertical.daily.sent,"30min","sum")),"approximate sends")
|
513
|
+
- alias(transformNull(summarize(stats_counts.mail.syringe.summary.city.6.vertical.daily.duplicates,"30min","sum")),"duplicates")
|
514
|
+
- alias(transformNull(summarize(stats_counts.mail.syringe.summary.city.34.vertical.daily.sent,"45min","sum")),"approximate sends")
|
515
|
+
- alias(transformNull(summarize(stats_counts.mail.syringe.summary.city.34.vertical.daily.duplicates,"45min","sum")),"duplicates")
|
516
|
+
- alias(transformNull(summarize(stats_counts.mail.syringe.summary.city.15.vertical.daily.sent,"30min","sum")),"approximate sends")
|
517
|
+
- alias(transformNull(summarize(stats_counts.mail.syringe.summary.city.15.vertical.daily.duplicates,"30min","sum")),"duplicates")
|
518
|
+
- alias(transformNull(summarize(stats_counts.mail.syringe.summary.city.30.vertical.daily.sent,"30min","sum")),"approximate sends")
|
519
|
+
- alias(transformNull(summarize(stats_counts.mail.syringe.summary.city.30.vertical.daily.duplicates,"30min","sum")),"duplicates")
|
520
|
+
- alias(transformNull(summarize(stats_counts.mail.syringe.summary.city.2.vertical.daily.sent,"30min","sum")),"approximate sends")
|
521
|
+
- alias(transformNull(summarize(stats_counts.mail.syringe.summary.city.2.vertical.daily.duplicates,"30min","sum")),"duplicates")
|
522
|
+
- alias(transformNull(summarize(stats_counts.mail.syringe.summary.city.9.vertical.daily.sent,"30min","sum")),"approximate sends")
|
523
|
+
- alias(transformNull(summarize(stats_counts.mail.syringe.summary.city.9.vertical.daily.duplicates,"30min","sum")),"duplicates")
|
524
|
+
- alias(transformNull(summarize(stats_counts.mail.syringe.summary.city.12.vertical.daily.sent,"30min","sum")),"approximate sends")
|
525
|
+
- alias(transformNull(summarize(stats_counts.mail.syringe.summary.city.12.vertical.daily.duplicates,"30min","sum")),"duplicates")
|
526
|
+
- alias(transformNull(summarize(stats_counts.mail.syringe.summary.city.231.vertical.daily.sent,"30min","sum")),"approximate sends")
|
527
|
+
- alias(transformNull(summarize(stats_counts.mail.syringe.summary.city.231.vertical.daily.duplicates,"30min","sum")),"duplicates")
|
528
|
+
- alias(transformNull(summarize(stats_counts.mail.syringe.summary.city.7.vertical.daily.sent,"30min","sum")),"approximate sends")
|
529
|
+
- alias(transformNull(summarize(stats_counts.mail.syringe.summary.city.7.vertical.daily.duplicates,"30min","sum")),"duplicates")
|
530
|
+
- alias(summarize(stats_counts.watson.summary_tables.run,"5min"),"Watson Tables Run today")
|
531
|
+
- alias(summarize(stats_counts.watson.summary_tables.failures,"5min"),"Watson Job Failures Today")
|
532
|
+
- alias(summarize(stats_counts.watson.summary_tables.run,"1d"),"Watson Tables Per Day")
|
533
|
+
- alias(summarize(stats_counts.watson.summary_tables.failures,"1d"),"Watson Failures Per Day")
|
534
|
+
- alias(summarize(stats_counts.watson.summary_tables.run,"5min"),"Daily Watson Tables so far")
|
535
|
+
- alias(summarize(stats_counts.watson.summary_tables.failures,"5min"),"Daily Watson Job Failures so far")
|
536
|
+
- alias(transformNull(summarize(stats_counts.mail.syringe.summary.city.58.vertical.daily.sent,"30min","sum")),"approximate sends")
|
537
|
+
- alias(transformNull(summarize(stats_counts.mail.syringe.summary.city.58.vertical.daily.duplicates,"30min","sum")),"duplicates")
|
538
|
+
- alias(transformNull(summarize(stats_counts.mail.syringe.summary.city.73.vertical.daily.sent,"30min","sum")),"approximate sends")
|
539
|
+
- alias(transformNull(summarize(stats_counts.mail.syringe.summary.city.73.vertical.daily.duplicates,"30min","sum")),"duplicates")
|
540
|
+
- alias(transformNull(smartSummarize(sumSeries(stats_counts.deals.purchase.created),"1min","sum")),"Purchases Creation in the last 10 minutes")
|
541
|
+
- alias(deploys.deals,"drawAsInfinite(deals deploy)")
|
542
|
+
- alias(transformNull(summarize(stats_counts.mail.syringe.summary.city.68.vertical.daily.sent,"30min","sum")),"approximate sends")
|
543
|
+
- alias(transformNull(summarize(stats_counts.mail.syringe.summary.city.68.vertical.daily.duplicates,"30min","sum")),"duplicates")
|
544
|
+
- alias(transformNull(summarize(stats_counts.mail.syringe.summary.city.69.vertical.daily.sent,"30min","sum")),"approximate sends")
|
545
|
+
- alias(transformNull(summarize(stats_counts.mail.syringe.summary.city.69.vertical.daily.duplicates,"30min","sum")),"duplicates")
|
546
|
+
- alias(transformNull(summarize(stats_counts.mail.syringe.summary.city.215.vertical.daily.sent,"30min","sum")),"approximate sends")
|
547
|
+
- alias(transformNull(summarize(stats_counts.mail.syringe.summary.city.215.vertical.daily.duplicates,"30min","sum")),"duplicates")
|
548
|
+
- alias(transformNull(summarize(stats_counts.mail.syringe.summary.city.515.vertical.daily.sent,"30min","sum")),"approximate sends")
|
549
|
+
- alias(transformNull(summarize(stats_counts.mail.syringe.summary.city.515.vertical.daily.duplicates,"30min","sum")),"duplicates")
|
550
|
+
- alias(transformNull(summarize(stats_counts.mail.syringe.summary.city.63.vertical.daily.sent,"30min","sum")),"approximate sends")
|
551
|
+
- alias(transformNull(summarize(stats_counts.mail.syringe.summary.city.63.vertical.daily.duplicates,"30min","sum")),"duplicates")
|
552
|
+
- alias(transformNull(summarize(stats_counts.mail.syringe.summary.city.1482.vertical.daily.sent,"30min","sum")),"approximate sends")
|
553
|
+
- alias(transformNull(summarize(stats_counts.mail.syringe.summary.city.1482.vertical.daily.duplicates,"30min","sum")),"duplicates")
|
554
|
+
- alias(transformNull(summarize(stats_counts.mail.syringe.summary.city.513.vertical.daily.sent,"30min","sum")),"approximate sends")
|
555
|
+
- alias(transformNull(summarize(stats_counts.mail.syringe.summary.city.513.vertical.daily.duplicates,"30min","sum")),"duplicates")
|
556
|
+
- alias(transformNull(summarize(stats_counts.mail.syringe.summary.city.71.vertical.daily.sent,"30min","sum")),"approximate sends")
|
557
|
+
- alias(transformNull(summarize(stats_counts.mail.syringe.summary.city.71.vertical.daily.duplicates,"30min","sum")),"duplicates")
|
558
|
+
- alias(transformNull(summarize(stats_counts.mail.syringe.summary.city.72.vertical.daily.sent,"30min","sum")),"approximate sends")
|
559
|
+
- alias(transformNull(summarize(stats_counts.mail.syringe.summary.city.72.vertical.daily.duplicates,"30min","sum")),"duplicates")
|
560
|
+
- alias(transformNull(summarize(stats_counts.mail.syringe.summary.city.222.vertical.daily.sent,"30min","sum")),"approximate sends")
|
561
|
+
- alias(transformNull(summarize(stats_counts.mail.syringe.summary.city.222.vertical.daily.duplicates,"30min","sum")),"duplicates")
|
562
|
+
- alias(transformNull(summarize(stats_counts.mail.syringe.summary.city.242.vertical.daily.sent,"30min","sum")),"approximate sends")
|
563
|
+
- alias(transformNull(summarize(stats_counts.mail.syringe.summary.city.242.vertical.daily.duplicates,"30min","sum")),"duplicates")
|
564
|
+
- alias(transformNull(summarize(stats_counts.mail.syringe.summary.city.212.vertical.daily.sent,"30min","sum")),"approximate sends")
|
565
|
+
- alias(transformNull(summarize(stats_counts.mail.syringe.summary.city.212.vertical.daily.duplicates,"30min","sum")),"duplicates")
|
566
|
+
- alias(transformNull(summarize(stats_counts.mail.syringe.summary.city.214.vertical.daily.sent,"30min","sum")),"approximate sends")
|
567
|
+
- alias(transformNull(summarize(stats_counts.mail.syringe.summary.city.214.vertical.daily.duplicates,"30min","sum")),"duplicates")
|
568
|
+
- alias(summarize(stats_counts.watson.summary_tables.run,"1d"),"Watson Tables Per Day")
|
569
|
+
- alias(summarize(stats_counts.watson.summary_tables.failures,"1d"),"Watson Failures Per Day")
|
570
|
+
- alias(nonNegativeDerivative(livingsocial.haproxy.fe-edge01.servers.preferences.responses_4xx),"4xx")
|
571
|
+
- alias(nonNegativeDerivative(livingsocial.haproxy.fe-edge01.servers.preferences.responses_5xx),"5xx")
|
572
|
+
- alias(deploys.mobile,"drawAsInfinite(preferences deploy)")
|
573
|
+
- alias(stats_counts.browse-service.deals_sorting_helper.sort_deals_by_efficiency.no_effect,"no_effect")
|
574
|
+
- alias(stats_counts.browse-service.deals_sorting_helper.sort_deals_by_efficiency.total,"total")
|
575
|
+
- alias(divideSeries(stats_counts.browse-service.deals_sorting_helper.sort_deals_by_efficiency.no_effect,stats_counts.browse-service.deals_sorting_helper.sort_deals_by_efficiency.total),"rate")
|
576
|
+
- alias(sumSeries(summarize(stats_counts.deals.member_refund_request.web,"1h","sum",true),summarize(stats_counts.deals.member_refund_request.mobile,"1h","sum",true)),"today")
|
577
|
+
- alias(lowess(timeShift(sumSeries(summarize(stats_counts.deals.member_refund_request.web,"1h","sum",true),summarize(stats_counts.deals.member_refund_request.mobile,"1h","sum",true)),"1w"),0.3,3),"1 week ago")
|
578
|
+
- alias(lowess(timeShift(sumSeries(summarize(stats_counts.deals.member_refund_request.web,"1h","sum",true),summarize(stats_counts.deals.member_refund_request.mobile,"1h","sum",true)),"2w"),0.3,3),"2 weeks ago")
|
579
|
+
- alias(summarize(stats_counts.deals.member_refund_request.web,"1h","sum",true),"web requests")
|
580
|
+
- alias(sumSeries(summarize(stats_counts.deals.member_refund_request.web,"1h","sum",true),summarize(stats_counts.deals.member_refund_request.mobile,"1h","sum",true)),"all requests")
|
581
|
+
- alias(smartSummarize(transformNull(stats_counts.social_presence.posts.sync.failed), "1min"), "failed posts")
|
582
|
+
- deploys.rearview-ruby
|
583
|
+
- alias(summarize(stats_counts.deals.member_refund_request.web,"1h","sum",true),"web")
|
584
|
+
- alias(summarize(stats_counts.deals.member_refund_request.mobile,"1h","sum",true),"mobile")
|
585
|
+
- alias(sumSeries(summarize(stats_counts.deals.member_refund_request.web,"1h","sum",true),summarize(stats_counts.deals.member_refund_request.mobile,"1h","sum",true)),"all")
|
586
|
+
- alias(summarize(stats_counts.deals.member_refund_request.web,"1h","sum",true),"web")
|
587
|
+
- alias(summarize(stats_counts.deals.member_refund_request.mobile,"1h","sum",true),"mobile")
|
588
|
+
- alias(sumSeries(summarize(stats_counts.deals.member_refund_request.web,"1h","sum",true),summarize(stats_counts.deals.member_refund_request.mobile,"1h","sum",true)),"all")
|
589
|
+
- alias(deploys.deals,"drawAsInfinite(deploy)")
|
590
|
+
- alias(stats_counts.deals.ls_errors.reported, "DealsExceptions")
|
591
|
+
- alias(summarize(stats_counts.commissioner_gordon.background_job.watson_data_file_set_complete_event.processed_ok,"1d","sum",true),"Filesets Processed")
|
592
|
+
- alias(smartSummarize(deploys.deals,"1min","sum"),"drawAsInfinite(deploy)")
|
593
|
+
- alias(diffSeries(stats.timers.deals.deals.show.upper_95,stats.timers.deals.deals.show.upper_5),"Response Time")
|
594
|
+
- alias(deploys.deals,"drawAsInfinite(deploy)")
|
595
|
+
- alias(diffSeries(stats.timers.deals.deals.show.upper_95,stats.timers.deals.deals.show.upper_5),"Response Time")
|
596
|
+
- alias(transformNull(smartSummarize(stats_counts.merchant_center.jobs.roi.watson.watson_consumer_connect_mail_stats.updated, "10min", "sum")), "changed")
|
597
|
+
- alias(hitcount(stats.monocle.indexer.deals.update.start,"10min"), "deals updates in 10 min period")
|
598
|
+
- alias(stats.monocle.indexer.deals.update.start, "drawAsInfinite(update)")
|