{"id":391,"date":"2011-09-14T14:15:11","date_gmt":"2011-09-14T14:15:11","guid":{"rendered":"http:\/\/psyphi.net\/blog\/?p=391"},"modified":"2011-09-14T14:18:41","modified_gmt":"2011-09-14T14:18:41","slug":"jenkins-dashboard","status":"publish","type":"post","link":"https:\/\/psyphi.net\/blog\/2011\/09\/jenkins-dashboard\/","title":{"rendered":"A Simple Continuous Integration (Jenkins) Dashboard"},"content":{"rendered":"<p>I had 15 minutes today to produce a wall-mounted-screen-compatible dashboard for showing the latest build statuses from our Jenkins continuous integration manager. It&#8217;s written in Perl and uses a few CPAN modules &#8211; <a href=\"http:\/\/search.cpan.org\/~grantm\/XML-Simple\/\" title=\"XML::Simple\" target=\"_blank\">XML::Simple<\/a>, <a href=\"http:\/\/search.cpan.org\/~gaas\/libwww-perl\/\" title=\"libwww-perl\" target=\"_blank\">LWP::Simple<\/a> and <a href=\"http:\/\/search.cpan.org\/~roode\/Readonly\/\" title=\"Readonly\" target=\"_blank\">Readonly<\/a>.<\/p>\n<p>This is what it looks like:<\/p>\n<p style=\"text-align: center;\"><img loading=\"lazy\" decoding=\"async\" class=\"size-full wp-image-393 aligncenter\" title=\"ci-hud\" src=\"http:\/\/psyphi.net\/wp-uploads\/2011\/09\/ci-hud.png\" alt=\"\" width=\"716\" height=\"461\" \/><\/p>\n<p>and here&#8217;s the code:<\/p>\n<pre>#!\/usr\/local\/bin\/perl -T\r\nuse strict;\r\nuse warnings;\r\nuse XML::Simple;\r\nuse LWP::Simple qw(get);\r\nuse Carp;\r\nuse English qw(-no_match_vars);\r\nuse Readonly;\r\n\r\nReadonly::Scalar our $CI      =&gt; q[http:\/\/my.ci.server\/rssLatest];\r\nReadonly::Scalar our $COLUMNS =&gt; 6;\r\n\r\nmy $str     = get($CI);\r\nmy $xml     = XMLin($str);\r\nmy @entries = map { $xml-&gt;{entry}-&gt;{$_} } sort keys %{$xml-&gt;{entry}};\r\n\r\nprint &lt;&lt;\"EOT\" or croak qq[Error printing: $ERRNO];\r\nContent-type: text\/html\r\n\r\n&lt;html&gt;\r\n &lt;head&gt;\r\n  &lt;title&gt;Continuous Integration HUD&lt;\/title&gt;\r\n  &lt;meta http-equiv=\"refresh\" content=\"120; url=$ENV{SCRIPT_NAME}\"\/&gt;\r\n  &lt;style type=\"text\/css\"&gt;\r\n.stable { background-color: green }\r\n.unstable { background-color: yellow }\r\n.broken { background-color: red }\r\ntable { margin: 0 auto; }\r\na { font-size: bigger; text-decoration: none; color: black; }\r\n  &lt;\/style&gt;\r\n  &lt;script src=\"http:\/\/ajax.googleapis.com\/ajax\/libs\/jquery\/1.6.4\/jquery.min.js\"&gt;&lt;\/script&gt;\r\n  &lt;script type=\"text\/javascript\"&gt;\r\n\\$(document).ready(redraw);\r\n\\$(window).resize(redraw);\r\n\r\nfunction redraw() {\r\n   \\$('tr').height((\\$(window).height()-60)\/\\$('tr').size());\r\n   \\$('td').width((\\$(window).width()-60)\/\\$('tr').first().find('td').size());\r\n}\r\n  &lt;\/script&gt;\r\n &lt;\/head&gt;\r\n &lt;body&gt;\r\nEOT\r\n\r\nprint qq[&lt;table&gt;\\n] or croak qq[Error printing: $ERRNO];\r\nwhile(scalar @entries) {\r\n  print qq[ &lt;tr&gt;\\n] or croak qq[Error printing: $ERRNO];\r\n  for my $j (1..$COLUMNS) {\r\n    my $entry = shift @entries;\r\n    if(!$entry) {\r\n      last;\r\n    }\r\n\r\n    my $title = $entry-&gt;{title};\r\n    my $class = q[stable];\r\n    $class    = ($title =~ \/unstable\/smx) ? 'unstable' : $class;\r\n    $class    = ($title =~ \/broken\/smx)   ? 'broken'   : $class;\r\n    $title    =~ s{\\s+[(].*?$}{}smx;\r\n\r\n    my $href = $entry-&gt;{link}-&gt;{href};\r\n    print qq[  &lt;td class=\"$class\"&gt;&lt;a href=\"$href\"&gt;$title&lt;\/a&gt;&lt;\/td&gt;] or croak qq[Error printing: $ERRNO];\r\n  }\r\n  print qq[ &lt;\/tr&gt;\\n] or croak qq[Error printing: $ERRNO];\r\n}\r\nprint qq[&lt;\/table&gt;\\n] or croak qq[Error printing: $ERRNO];\r\n\r\nprint &lt;&lt;'EOT' or croak qq[Error printing: $ERRNO];\r\n &lt;\/body&gt;\r\n&lt;\/html&gt;\r\nEOT<\/pre>\n","protected":false},"excerpt":{"rendered":"<p>I had 15 minutes today to produce a wall-mounted-screen-compatible dashboard for showing the latest build statuses from our Jenkins continuous integration manager. It&#8217;s written in Perl and uses a few CPAN modules &#8211; XML::Simple, LWP::Simple and Readonly. This is what it looks like: and here&#8217;s the code: #!\/usr\/local\/bin\/perl -T use strict; use warnings; use XML::Simple; &hellip; <a href=\"https:\/\/psyphi.net\/blog\/2011\/09\/jenkins-dashboard\/\" class=\"more-link\">Continue reading<span class=\"screen-reader-text\"> &#8220;A Simple Continuous Integration (Jenkins) Dashboard&#8221;<\/span><\/a><\/p>\n","protected":false},"author":2,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"om_disable_all_campaigns":false,"_monsterinsights_skip_tracking":false,"_uf_show_specific_survey":0,"_uf_disable_surveys":false,"footnotes":""},"categories":[11,17],"tags":[424,664],"class_list":["post-391","post","type-post","status-publish","format-standard","hentry","category-programming","category-sysadmin","tag-dashboard","tag-jenkins"],"aioseo_notices":[],"aioseo_head":"\n\t\t<!-- All in One SEO 5.0.0.1 - aioseo.com -->\n\t<meta name=\"description\" content=\"I had 15 minutes today to produce a wall-mounted-screen-compatible dashboard for showing the latest build statuses from our Jenkins continuous integration manager. It&#039;s written in Perl and uses a few CPAN modules - XML::Simple, LWP::Simple and Readonly. This is what it looks like: and here&#039;s the code: #!\/usr\/local\/bin\/perl -T use strict; use warnings; use XML::Simple;\" \/>\n\t<meta name=\"robots\" content=\"max-image-preview:large\" \/>\n\t<meta name=\"author\" content=\"Roger Pettett\"\/>\n\t<link rel=\"canonical\" href=\"https:\/\/psyphi.net\/blog\/2011\/09\/jenkins-dashboard\/\" \/>\n\t<meta name=\"generator\" content=\"All in One SEO (AIOSEO) 5.0.0.1\" \/>\n\t\t<meta property=\"og:locale\" content=\"en_US\" \/>\n\t\t<meta property=\"og:site_name\" content=\"psyphi.net blog - Another collection of braingunk and technolint\" \/>\n\t\t<meta property=\"og:type\" content=\"article\" \/>\n\t\t<meta property=\"og:title\" content=\"A Simple Continuous Integration (Jenkins) Dashboard - psyphi.net blog\" \/>\n\t\t<meta property=\"og:description\" content=\"I had 15 minutes today to produce a wall-mounted-screen-compatible dashboard for showing the latest build statuses from our Jenkins continuous integration manager. It&#039;s written in Perl and uses a few CPAN modules - XML::Simple, LWP::Simple and Readonly. This is what it looks like: and here&#039;s the code: #!\/usr\/local\/bin\/perl -T use strict; use warnings; use XML::Simple;\" \/>\n\t\t<meta property=\"og:url\" content=\"https:\/\/psyphi.net\/blog\/2011\/09\/jenkins-dashboard\/\" \/>\n\t\t<meta property=\"article:published_time\" content=\"2011-09-14T14:15:11+00:00\" \/>\n\t\t<meta property=\"article:modified_time\" content=\"2011-09-14T14:18:41+00:00\" \/>\n\t\t<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n\t\t<meta name=\"twitter:title\" content=\"A Simple Continuous Integration (Jenkins) Dashboard - psyphi.net blog\" \/>\n\t\t<meta name=\"twitter:description\" content=\"I had 15 minutes today to produce a wall-mounted-screen-compatible dashboard for showing the latest build statuses from our Jenkins continuous integration manager. It&#039;s written in Perl and uses a few CPAN modules - XML::Simple, LWP::Simple and Readonly. This is what it looks like: and here&#039;s the code: #!\/usr\/local\/bin\/perl -T use strict; use warnings; use XML::Simple;\" \/>\n\t\t<script type=\"application\/ld+json\" class=\"aioseo-schema\">\n\t\t\t{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"BlogPosting\",\"@id\":\"https:\\\/\\\/psyphi.net\\\/blog\\\/2011\\\/09\\\/jenkins-dashboard\\\/#blogposting\",\"name\":\"A Simple Continuous Integration (Jenkins) Dashboard - psyphi.net blog\",\"headline\":\"A Simple Continuous Integration (Jenkins) Dashboard\",\"author\":{\"@id\":\"https:\\\/\\\/psyphi.net\\\/blog\\\/author\\\/rmp\\\/#author\"},\"publisher\":{\"@id\":\"https:\\\/\\\/psyphi.net\\\/blog\\\/#organization\"},\"image\":{\"@type\":\"ImageObject\",\"url\":\"https:\\\/\\\/psyphi.net\\\/wp-uploads\\\/2011\\\/09\\\/ci-hud.png\",\"@id\":\"https:\\\/\\\/psyphi.net\\\/blog\\\/2011\\\/09\\\/jenkins-dashboard\\\/#articleImage\",\"width\":1194,\"height\":768},\"datePublished\":\"2011-09-14T14:15:11+00:00\",\"dateModified\":\"2011-09-14T14:18:41+00:00\",\"inLanguage\":\"en-US\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/psyphi.net\\\/blog\\\/2011\\\/09\\\/jenkins-dashboard\\\/#webpage\"},\"isPartOf\":{\"@id\":\"https:\\\/\\\/psyphi.net\\\/blog\\\/2011\\\/09\\\/jenkins-dashboard\\\/#webpage\"},\"articleSection\":\"programming, sysadmin, dashboard, jenkins\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/psyphi.net\\\/blog\\\/2011\\\/09\\\/jenkins-dashboard\\\/#breadcrumblist\",\"itemListElement\":[{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/psyphi.net\\\/blog#listItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/psyphi.net\\\/blog\",\"nextItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/psyphi.net\\\/blog\\\/category\\\/programming\\\/#listItem\",\"name\":\"programming\"}},{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/psyphi.net\\\/blog\\\/category\\\/programming\\\/#listItem\",\"position\":2,\"name\":\"programming\",\"item\":\"https:\\\/\\\/psyphi.net\\\/blog\\\/category\\\/programming\\\/\",\"nextItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/psyphi.net\\\/blog\\\/2011\\\/09\\\/jenkins-dashboard\\\/#listItem\",\"name\":\"A Simple Continuous Integration (Jenkins) Dashboard\"},\"previousItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/psyphi.net\\\/blog#listItem\",\"name\":\"Home\"}},{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/psyphi.net\\\/blog\\\/2011\\\/09\\\/jenkins-dashboard\\\/#listItem\",\"position\":3,\"name\":\"A Simple Continuous Integration (Jenkins) Dashboard\",\"previousItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/psyphi.net\\\/blog\\\/category\\\/programming\\\/#listItem\",\"name\":\"programming\"}}]},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/psyphi.net\\\/blog\\\/#organization\",\"name\":\"psyphi.net blog\",\"description\":\"Another collection of braingunk and technolint\",\"url\":\"https:\\\/\\\/psyphi.net\\\/blog\\\/\"},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/psyphi.net\\\/blog\\\/author\\\/rmp\\\/#author\",\"url\":\"https:\\\/\\\/psyphi.net\\\/blog\\\/author\\\/rmp\\\/\",\"name\":\"Roger Pettett\",\"image\":{\"@type\":\"ImageObject\",\"@id\":\"https:\\\/\\\/psyphi.net\\\/blog\\\/2011\\\/09\\\/jenkins-dashboard\\\/#authorImage\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/f715f8335258578c567eb8c22335f1cee22c971c2aff8be27c4d8d934c436503?s=96&d=mm&r=g\",\"width\":96,\"height\":96,\"caption\":\"Roger Pettett\"}},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/psyphi.net\\\/blog\\\/2011\\\/09\\\/jenkins-dashboard\\\/#webpage\",\"url\":\"https:\\\/\\\/psyphi.net\\\/blog\\\/2011\\\/09\\\/jenkins-dashboard\\\/\",\"name\":\"A Simple Continuous Integration (Jenkins) Dashboard - psyphi.net blog\",\"description\":\"I had 15 minutes today to produce a wall-mounted-screen-compatible dashboard for showing the latest build statuses from our Jenkins continuous integration manager. It's written in Perl and uses a few CPAN modules - XML::Simple, LWP::Simple and Readonly. This is what it looks like: and here's the code: #!\\\/usr\\\/local\\\/bin\\\/perl -T use strict; use warnings; use XML::Simple;\",\"inLanguage\":\"en-US\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/psyphi.net\\\/blog\\\/#website\"},\"breadcrumb\":{\"@id\":\"https:\\\/\\\/psyphi.net\\\/blog\\\/2011\\\/09\\\/jenkins-dashboard\\\/#breadcrumblist\"},\"author\":{\"@id\":\"https:\\\/\\\/psyphi.net\\\/blog\\\/author\\\/rmp\\\/#author\"},\"creator\":{\"@id\":\"https:\\\/\\\/psyphi.net\\\/blog\\\/author\\\/rmp\\\/#author\"},\"datePublished\":\"2011-09-14T14:15:11+00:00\",\"dateModified\":\"2011-09-14T14:18:41+00:00\"},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/psyphi.net\\\/blog\\\/#website\",\"url\":\"https:\\\/\\\/psyphi.net\\\/blog\\\/\",\"name\":\"psyphi.net blog\",\"description\":\"Another collection of braingunk and technolint\",\"inLanguage\":\"en-US\",\"publisher\":{\"@id\":\"https:\\\/\\\/psyphi.net\\\/blog\\\/#organization\"}}]}\n\t\t<\/script>\n\t\t<!-- All in One SEO -->\n\n","aioseo_head_json":{"title":"A Simple Continuous Integration (Jenkins) Dashboard - psyphi.net blog","description":"I had 15 minutes today to produce a wall-mounted-screen-compatible dashboard for showing the latest build statuses from our Jenkins continuous integration manager. It's written in Perl and uses a few CPAN modules - XML::Simple, LWP::Simple and Readonly. This is what it looks like: and here's the code: #!\/usr\/local\/bin\/perl -T use strict; use warnings; use XML::Simple;","canonical_url":"https:\/\/psyphi.net\/blog\/2011\/09\/jenkins-dashboard\/","robots":"max-image-preview:large","keywords":"","webmasterTools":{"miscellaneous":""},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"BlogPosting","@id":"https:\/\/psyphi.net\/blog\/2011\/09\/jenkins-dashboard\/#blogposting","name":"A Simple Continuous Integration (Jenkins) Dashboard - psyphi.net blog","headline":"A Simple Continuous Integration (Jenkins) Dashboard","author":{"@id":"https:\/\/psyphi.net\/blog\/author\/rmp\/#author"},"publisher":{"@id":"https:\/\/psyphi.net\/blog\/#organization"},"image":{"@type":"ImageObject","url":"https:\/\/psyphi.net\/wp-uploads\/2011\/09\/ci-hud.png","@id":"https:\/\/psyphi.net\/blog\/2011\/09\/jenkins-dashboard\/#articleImage","width":1194,"height":768},"datePublished":"2011-09-14T14:15:11+00:00","dateModified":"2011-09-14T14:18:41+00:00","inLanguage":"en-US","mainEntityOfPage":{"@id":"https:\/\/psyphi.net\/blog\/2011\/09\/jenkins-dashboard\/#webpage"},"isPartOf":{"@id":"https:\/\/psyphi.net\/blog\/2011\/09\/jenkins-dashboard\/#webpage"},"articleSection":"programming, sysadmin, dashboard, jenkins"},{"@type":"BreadcrumbList","@id":"https:\/\/psyphi.net\/blog\/2011\/09\/jenkins-dashboard\/#breadcrumblist","itemListElement":[{"@type":"ListItem","@id":"https:\/\/psyphi.net\/blog#listItem","position":1,"name":"Home","item":"https:\/\/psyphi.net\/blog","nextItem":{"@type":"ListItem","@id":"https:\/\/psyphi.net\/blog\/category\/programming\/#listItem","name":"programming"}},{"@type":"ListItem","@id":"https:\/\/psyphi.net\/blog\/category\/programming\/#listItem","position":2,"name":"programming","item":"https:\/\/psyphi.net\/blog\/category\/programming\/","nextItem":{"@type":"ListItem","@id":"https:\/\/psyphi.net\/blog\/2011\/09\/jenkins-dashboard\/#listItem","name":"A Simple Continuous Integration (Jenkins) Dashboard"},"previousItem":{"@type":"ListItem","@id":"https:\/\/psyphi.net\/blog#listItem","name":"Home"}},{"@type":"ListItem","@id":"https:\/\/psyphi.net\/blog\/2011\/09\/jenkins-dashboard\/#listItem","position":3,"name":"A Simple Continuous Integration (Jenkins) Dashboard","previousItem":{"@type":"ListItem","@id":"https:\/\/psyphi.net\/blog\/category\/programming\/#listItem","name":"programming"}}]},{"@type":"Organization","@id":"https:\/\/psyphi.net\/blog\/#organization","name":"psyphi.net blog","description":"Another collection of braingunk and technolint","url":"https:\/\/psyphi.net\/blog\/"},{"@type":"Person","@id":"https:\/\/psyphi.net\/blog\/author\/rmp\/#author","url":"https:\/\/psyphi.net\/blog\/author\/rmp\/","name":"Roger Pettett","image":{"@type":"ImageObject","@id":"https:\/\/psyphi.net\/blog\/2011\/09\/jenkins-dashboard\/#authorImage","url":"https:\/\/secure.gravatar.com\/avatar\/f715f8335258578c567eb8c22335f1cee22c971c2aff8be27c4d8d934c436503?s=96&d=mm&r=g","width":96,"height":96,"caption":"Roger Pettett"}},{"@type":"WebPage","@id":"https:\/\/psyphi.net\/blog\/2011\/09\/jenkins-dashboard\/#webpage","url":"https:\/\/psyphi.net\/blog\/2011\/09\/jenkins-dashboard\/","name":"A Simple Continuous Integration (Jenkins) Dashboard - psyphi.net blog","description":"I had 15 minutes today to produce a wall-mounted-screen-compatible dashboard for showing the latest build statuses from our Jenkins continuous integration manager. It's written in Perl and uses a few CPAN modules - XML::Simple, LWP::Simple and Readonly. This is what it looks like: and here's the code: #!\/usr\/local\/bin\/perl -T use strict; use warnings; use XML::Simple;","inLanguage":"en-US","isPartOf":{"@id":"https:\/\/psyphi.net\/blog\/#website"},"breadcrumb":{"@id":"https:\/\/psyphi.net\/blog\/2011\/09\/jenkins-dashboard\/#breadcrumblist"},"author":{"@id":"https:\/\/psyphi.net\/blog\/author\/rmp\/#author"},"creator":{"@id":"https:\/\/psyphi.net\/blog\/author\/rmp\/#author"},"datePublished":"2011-09-14T14:15:11+00:00","dateModified":"2011-09-14T14:18:41+00:00"},{"@type":"WebSite","@id":"https:\/\/psyphi.net\/blog\/#website","url":"https:\/\/psyphi.net\/blog\/","name":"psyphi.net blog","description":"Another collection of braingunk and technolint","inLanguage":"en-US","publisher":{"@id":"https:\/\/psyphi.net\/blog\/#organization"}}]},"og:locale":"en_US","og:site_name":"psyphi.net blog - Another collection of braingunk and technolint","og:type":"article","og:title":"A Simple Continuous Integration (Jenkins) Dashboard - psyphi.net blog","og:description":"I had 15 minutes today to produce a wall-mounted-screen-compatible dashboard for showing the latest build statuses from our Jenkins continuous integration manager. It's written in Perl and uses a few CPAN modules - XML::Simple, LWP::Simple and Readonly. This is what it looks like: and here's the code: #!\/usr\/local\/bin\/perl -T use strict; use warnings; use XML::Simple;","og:url":"https:\/\/psyphi.net\/blog\/2011\/09\/jenkins-dashboard\/","article:published_time":"2011-09-14T14:15:11+00:00","article:modified_time":"2011-09-14T14:18:41+00:00","twitter:card":"summary_large_image","twitter:title":"A Simple Continuous Integration (Jenkins) Dashboard - psyphi.net blog","twitter:description":"I had 15 minutes today to produce a wall-mounted-screen-compatible dashboard for showing the latest build statuses from our Jenkins continuous integration manager. It's written in Perl and uses a few CPAN modules - XML::Simple, LWP::Simple and Readonly. This is what it looks like: and here's the code: #!\/usr\/local\/bin\/perl -T use strict; use warnings; use XML::Simple;"},"aioseo_meta_data":{"post_id":"391","title":null,"description":null,"keywords":null,"keyphrases":null,"primary_term":null,"canonical_url":null,"og_title":null,"og_description":null,"og_object_type":"default","og_image_type":"default","og_image_url":null,"og_image_width":null,"og_image_height":null,"og_image_custom_url":null,"og_image_custom_fields":null,"og_video":null,"og_custom_url":null,"og_article_section":null,"og_article_tags":null,"twitter_use_og":false,"twitter_card":"default","twitter_image_type":"default","twitter_image_url":null,"twitter_image_custom_url":null,"twitter_image_custom_fields":null,"twitter_title":null,"twitter_description":null,"schema":{"blockGraphs":[],"customGraphs":[],"default":{"data":{"Article":[],"Course":[],"Dataset":[],"FAQPage":[],"Movie":[],"Person":[],"Product":[],"ProductReview":[],"Car":[],"Recipe":[],"Service":[],"SoftwareApplication":[],"WebPage":[]},"graphName":"","isEnabled":true},"graphs":[]},"schema_type":"default","schema_type_options":null,"pillar_content":false,"robots_default":true,"robots_noindex":false,"robots_noarchive":false,"robots_nosnippet":false,"robots_nofollow":false,"robots_noimageindex":false,"robots_noodp":false,"robots_notranslate":false,"robots_max_snippet":null,"robots_max_videopreview":null,"robots_max_imagepreview":"large","priority":null,"frequency":null,"local_seo":null,"breadcrumb_settings":null,"limit_modified_date":false,"ai":null,"created":"2024-05-16 15:00:02","updated":"2025-08-15 17:28:43","focus_keyword":null,"additional_keywords":null,"truseo_locale":null,"seo_analyzer_scan_date":null},"aioseo_breadcrumb":"<div class=\"aioseo-breadcrumbs\"><span class=\"aioseo-breadcrumb\">\n\t\t\t<a href=\"https:\/\/psyphi.net\/blog\" title=\"Home\">Home<\/a>\n\t\t<\/span><span class=\"aioseo-breadcrumb-separator\">&raquo;<\/span><span class=\"aioseo-breadcrumb\">\n\t\t\t<a href=\"https:\/\/psyphi.net\/blog\/category\/programming\/\" title=\"programming\">programming<\/a>\n\t\t<\/span><span class=\"aioseo-breadcrumb-separator\">&raquo;<\/span><span class=\"aioseo-breadcrumb\">\n\t\t\tA Simple Continuous Integration (Jenkins) Dashboard\n\t\t<\/span><\/div>","aioseo_breadcrumb_json":[{"label":"Home","link":"https:\/\/psyphi.net\/blog"},{"label":"programming","link":"https:\/\/psyphi.net\/blog\/category\/programming\/"},{"label":"A Simple Continuous Integration (Jenkins) Dashboard","link":"https:\/\/psyphi.net\/blog\/2011\/09\/jenkins-dashboard\/"}],"_links":{"self":[{"href":"https:\/\/psyphi.net\/blog\/wp-json\/wp\/v2\/posts\/391","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/psyphi.net\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/psyphi.net\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/psyphi.net\/blog\/wp-json\/wp\/v2\/users\/2"}],"replies":[{"embeddable":true,"href":"https:\/\/psyphi.net\/blog\/wp-json\/wp\/v2\/comments?post=391"}],"version-history":[{"count":9,"href":"https:\/\/psyphi.net\/blog\/wp-json\/wp\/v2\/posts\/391\/revisions"}],"predecessor-version":[{"id":401,"href":"https:\/\/psyphi.net\/blog\/wp-json\/wp\/v2\/posts\/391\/revisions\/401"}],"wp:attachment":[{"href":"https:\/\/psyphi.net\/blog\/wp-json\/wp\/v2\/media?parent=391"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/psyphi.net\/blog\/wp-json\/wp\/v2\/categories?post=391"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/psyphi.net\/blog\/wp-json\/wp\/v2\/tags?post=391"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}