diff options
author | Holger Levsen <holger@layer-acht.org> | 2017-06-15 15:40:56 +0200 |
---|---|---|
committer | Holger Levsen <holger@layer-acht.org> | 2017-06-15 15:40:56 +0200 |
commit | 5733372ce16786f8cc51afc1482dc7392274d978 (patch) | |
tree | 8ec0a2fe9087193a91fa99887de0cecb0be9dc68 | |
parent | 78556a405a033804249b0fc46079ad438304b26d (diff) | |
download | jenkins.debian.net-5733372ce16786f8cc51afc1482dc7392274d978.tar.xz |
reproducible: also include profitbricks 3+4+7 in munin graph overview
Signed-off-by: Holger Levsen <holger@layer-acht.org>
-rwxr-xr-x | bin/reproducible_html_nodes_info.sh | 25 |
1 files changed, 15 insertions, 10 deletions
diff --git a/bin/reproducible_html_nodes_info.sh b/bin/reproducible_html_nodes_info.sh index 7f7d6d0b..36cb4129 100755 --- a/bin/reproducible_html_nodes_info.sh +++ b/bin/reproducible_html_nodes_info.sh @@ -130,7 +130,7 @@ for TYPE in daily weekly ; do write_page "<table>" write_page "<tr><th>Name</th><th colspan='6'></th>" write_page "</tr>" - for NODE in jenkins $BUILD_NODES ; do + for NODE in $REPRODUCIBLE_NODES ; do if [ -z "$(echo $NODE | grep $ARCH || true)" ] && [ "$NODE" != "jenkins" ] ; then continue elif [ "$NODE" = "jenkins" ] && [ "$ARCH" != "amd64" ] ; then @@ -148,17 +148,22 @@ for TYPE in daily weekly ; do fi write_page "<tr><td>$JENKINS_NODENAME</td>" for GRAPH in jenkins_reproducible_builds cpu memory df swap load ; do - if [ "$JENKINS_NODENAME" = "jenkins" ] && [ "$GRAPH" = "jenkins_reproducible_builds" ] ; then - write_page "<td></td>" + if [ "$GRAPH" = "jenkins_reproducible_builds" ] ; then + case $JENKINS_NODENAME in + jenkins) write_page "<td></td>" ; continue ;; + profitbricks3) write_page "<td></td>" ; continue ;; + profitbricks4) write_page "<td></td>" ; continue ;; + profitbricks7) write_page "<td></td>" ; continue ;; + *) ;; + esac + fi + write_page "<td><a href='https://jenkins.debian.net/munin/debian.net/$NODE/$GRAPH.html'>" + if [ "$TYPE" = "daily" ] ; then + IMG=day.png else - write_page "<td><a href='https://jenkins.debian.net/munin/debian.net/$NODE/$GRAPH.html'>" - if [ "$TYPE" = "daily" ] ; then - IMG=day.png - else - IMG=week.png - fi - write_page "<img src='https://jenkins.debian.net/munin/debian.net/$NODE/${GRAPH}-${IMG}' width='150' /></a></td>" + IMG=week.png fi + write_page "<img src='https://jenkins.debian.net/munin/debian.net/$NODE/${GRAPH}-${IMG}' width='150' /></a></td>" done write_page "</tr>" |