summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMonty Taylor <mordred@inaugust.com>2015-11-11 17:14:21 -0500
committerMonty Taylor <mordred@inaugust.com>2015-11-11 17:14:21 -0500
commit235d1b4490eb4fac803fcc023c5577e22fa09d83 (patch)
tree946f26c90b6af64daf684f3bf2a5e63fac8ba489
parenta27c227b04e135576052d9a5584abd928ea1f080 (diff)
Add some more graphs
-rw-r--r--src/task-report.html42
1 files changed, 42 insertions, 0 deletions
diff --git a/src/task-report.html b/src/task-report.html
index d2c6081..bc5842c 100644
--- a/src/task-report.html
+++ b/src/task-report.html
@@ -45,6 +45,11 @@ providers = [
45 'ovh' 45 'ovh'
46] 46]
47 47
48jobs = [
49 'gate-tempest-dsvm-full',
50 'gate-tempest-dsvm-neutron-full'
51]
52
48for(i=0; i<tasks.length; ++i) { 53for(i=0; i<tasks.length; ++i) {
49 54
50 $("#graph-container").append($(new Image()).addClass('graph').graphite({ 55 $("#graph-container").append($(new Image()).addClass('graph').graphite({
@@ -85,6 +90,24 @@ for(i=0; i<float_tasks.length; ++i) {
85 90
86} 91}
87 92
93 $("#graph-container").append($(new Image()).addClass('graph').graphite({
94 from: "-72hours",
95 width: 885,
96 height: 495,
97 bgcolor: 'ffffff',
98 fgcolor: '000000',
99 lineMode: 'connected',
100 title: 'Time to SSH Ready',
101 target: [
102 "alias(averageSeries(stats.timers.nodepool.launch.provider.hpcloud-b*.ready.mean), 'HP')",
103 "alias(averageSeries(stats.timers.nodepool.launch.provider.rax-dfw.ready.mean), 'RAX DFW')",
104 "alias(averageSeries(stats.timers.nodepool.launch.provider.rax-iad.ready.mean), 'RAX IAD')",
105 "alias(averageSeries(stats.timers.nodepool.launch.provider.rax-ord.ready.mean), 'RAX ORD')",
106 "alias(averageSeries(stats.timers.nodepool.launch.provider.tripleo-test-cloud-rh1.ready.mean), 'TripleO')"
107 ]
108 }));
109
110
88for(i=0; i<providers.length; ++i) { 111for(i=0; i<providers.length; ++i) {
89 $("#graph-container").append($(new Image()).addClass('graph').graphite({ 112 $("#graph-container").append($(new Image()).addClass('graph').graphite({
90 from: "-72hours", 113 from: "-72hours",
@@ -101,6 +124,25 @@ for(i=0; i<providers.length; ++i) {
101 })); 124 }));
102 125
103} 126}
127
128for(i=0; i<jobs.length; ++i) {
129 $("#graph-container").append($(new Image()).addClass('graph').graphite({
130 from: "-72hours",
131 width: 885,
132 height: 495,
133 bgcolor: 'ffffff',
134 fgcolor: '000000',
135 lineMode: 'connected',
136 title: jobs[i] + ' job runtime',
137 target: [
138 "alias(averageSeries(stats.timers.nodepool.job." + jobs[i] + ".master.*.hpcloud-b*.runtime.mean), 'HP')",
139 "alias(averageSeries(stats.timers.nodepool.job." + jobs[i] + ".master.*.rax-dfw.runtime.mean), 'RAX DFW')",
140 "alias(averageSeries(stats.timers.nodepool.job." + jobs[i] + ".master.*.rax-iad.runtime.mean), 'RAX IAD')",
141 "alias(averageSeries(stats.timers.nodepool.job." + jobs[i] + ".master.*.rax-ord.runtime.mean), 'RAX ORD')"
142 ]
143 }));
144}
145
104 </script> 146 </script>
105 </div> 147 </div>
106 148