From ac4eaab80e8398f6bf5b6aad707bf2fd0c50843d Mon Sep 17 00:00:00 2001 From: Dolph Mathews Date: Tue, 25 Nov 2014 22:46:31 +0000 Subject: [PATCH] add CLI command for executing elastic-recheck queries This is an upstreaming of: https://github.com/dolph/spandex https://pypi.python.org/pypi/spandex ... which I'll nuke if this is merged. I use this tool to write, test, and look for patterns in the results of elastic recheck queries. I never use logstash.openstack.org anymore. Change-Id: I864b22c05b398f6ad8ccb9009b5866f36b46789d --- README.rst | 20 + elastic_recheck/cmd/query.py | 156 + .../tests/unit/logstash/1284371.analysis | 48 + .../tests/unit/logstash/1284371.json | 12683 ++++++++++++++++ .../tests/unit/queries/1284371.yaml | 4 + elastic_recheck/tests/unit/test_query.py | 51 + setup.cfg | 1 + 7 files changed, 12963 insertions(+) create mode 100755 elastic_recheck/cmd/query.py create mode 100644 elastic_recheck/tests/unit/logstash/1284371.analysis create mode 100644 elastic_recheck/tests/unit/logstash/1284371.json create mode 100644 elastic_recheck/tests/unit/queries/1284371.yaml create mode 100644 elastic_recheck/tests/unit/test_query.py diff --git a/README.rst b/README.rst index 26ca383e..885b3725 100644 --- a/README.rst +++ b/README.rst @@ -172,6 +172,26 @@ Steps: then remove the related query. +Running Queries Locally +----------------------- + +You can execute an individual query locally and analyze the search results:: + + $ elastic-recheck-query queries/1331274.yaml + total hits: 133 + build_status + 100% FAILURE + build_name + 48% check-grenade-dsvm + 15% check-grenade-dsvm-partial-ncpu + 13% gate-grenade-dsvm + 9% check-grenade-dsvm-icehouse + 9% check-grenade-dsvm-partial-ncpu-icehouse + build_branch + 95% master + 4% stable/icehouse + + Future Work ----------- diff --git a/elastic_recheck/cmd/query.py b/elastic_recheck/cmd/query.py new file mode 100755 index 00000000..f310a054 --- /dev/null +++ b/elastic_recheck/cmd/query.py @@ -0,0 +1,156 @@ +#!/usr/bin/env python + +# All Rights Reserved. +# +# Licensed under the Apache License, Version 2.0 (the "License"); you may +# not use this file except in compliance with the License. You may obtain +# a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT +# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the +# License for the specific language governing permissions and limitations +# under the License. + +import argparse +import base64 +import itertools +import json +import time + +import requests +import yaml + +from elastic_recheck import log as logging + + +LOG = logging.getLogger('erquery') + +ENDPOINT = 'http://logstash.openstack.org/api' +DEFAULT_NUMBER_OF_DAYS = 10 +DEFAULT_MAX_QUANTITY = 5 +IGNORED_ATTRIBUTES = [ + 'build_master', + 'build_patchset', + 'build_ref', + 'build_short_uuid', + 'build_uuid', + 'error_pr', + 'host', + 'received_at', + 'type', +] + + +def _GET(path): + r = requests.get(ENDPOINT + path) + + if r.status_code != requests.codes.ok: + LOG.info('Got HTTP %s, retrying...' % r.status_code) + # retry once + r = requests.get(ENDPOINT + path) + + try: + return r.json() + except Exception: + raise SystemExit(r.text) + + +def _encode(q): + """Encode a JSON dict for inclusion in a URL.""" + return base64.b64encode(json.dumps(q)) + + +def _unix_time_in_microseconds(): + return int(time.time() * 1000) + + +def search(q, days): + search = { + 'search': q, + 'fields': [], + 'offset': 0, + 'timeframe': str(days * 86400), + 'graphmode': 'count', + 'time': { + 'user_interval': 0}, + 'stamp': _unix_time_in_microseconds()} + return _GET('/search/%s' % _encode(search)) + + +def analyze_attributes(attributes): + analysis = {} + for attribute, values in attributes.iteritems(): + if attribute[0] == '@' or attribute == 'message': + # skip meta attributes and raw messages + continue + + analysis[attribute] = [] + + total_hits = sum(values.values()) + for value_hash, hits in values.iteritems(): + value = json.loads(value_hash) + analysis[attribute].append((100.0 * hits / total_hits, value)) + + # sort by hit percentage descending, and then by value ascending + analysis[attribute] = sorted( + analysis[attribute], + key=lambda x: (1 - x[0], x[1])) + + return analysis + + +def query(query_file_name, days=DEFAULT_NUMBER_OF_DAYS, + quantity=DEFAULT_MAX_QUANTITY, verbose=False): + with open(query_file_name) as f: + query_file = yaml.load(f.read()) + query = query_file['query'] + + r = search(q=query, days=days) + print('total hits: %s' % r['hits']['total']) + + attributes = {} + for hit in r['hits']['hits']: + for key, value in hit['_source'].iteritems(): + value_hash = json.dumps(value) + attributes.setdefault(key, {}).setdefault(value_hash, 0) + attributes[key][value_hash] += 1 + + analysis = analyze_attributes(attributes) + for attribute, results in sorted(analysis.iteritems()): + if not verbose and attribute in IGNORED_ATTRIBUTES: + # skip less-than-useful attributes to reduce noise in the report + continue + + print(attribute) + for percentage, value in itertools.islice(results, None, quantity): + if isinstance(value, list): + value = ' '.join(unicode(x) for x in value) + print(' %d%% %s' % (percentage, value)) + + +def main(): + parser = argparse.ArgumentParser( + description='Execute elastic-recheck query files and analyze the ' + 'results.') + parser.add_argument( + 'query_file', type=argparse.FileType('r'), + help='Path to an elastic-recheck YAML query file.') + parser.add_argument( + '--quantity', '-q', type=int, default=DEFAULT_MAX_QUANTITY, + help='Maximum quantity of values to show for each attribute.') + parser.add_argument( + '--days', '-d', type=float, default=DEFAULT_NUMBER_OF_DAYS, + help='Timespan to query, in days (may be a decimal).') + parser.add_argument( + '--verbose', '-v', action='store_true', default=False, + help='Report on additional query metadata.') + args = parser.parse_args() + + query(args.query_file.name, args.days, args.quantity, args.verbose) + + +if __name__ == "__main__": + main() diff --git a/elastic_recheck/tests/unit/logstash/1284371.analysis b/elastic_recheck/tests/unit/logstash/1284371.analysis new file mode 100644 index 00000000..b08bd5ca --- /dev/null +++ b/elastic_recheck/tests/unit/logstash/1284371.analysis @@ -0,0 +1,48 @@ +total hits: 353 +build_branch + 86% master + 6% feature/lbaasv2 + 4% stable/icehouse + 3% stable/juno +build_change + 5% 136792 + 4% 123485 + 3% 128258 + 2% 136511 + 1% 126244 +build_name + 6% check-tempest-dsvm-full + 6% check-tempest-dsvm-postgres-full + 5% check-tempest-dsvm-neutron-full + 5% check-grenade-dsvm + 5% check-tempest-dsvm-neutron-heat-slow +build_node + 0% bare-centos6-rax-dfw-35738 + 0% bare-centos6-rax-dfw-35823 + 0% bare-centos6-rax-iad-36267 + 0% bare-precise-rax-iad-35805 + 0% bare-precise-rax-iad-36349 +build_queue + 72% check + 21% gate + 4% check-tripleo + 0% experimental + 0% experimental-tripleo +build_status + 100% FAILURE +filename + 100% console.html +log_url + 0% http://logs.openstack.org/00/123000/8/check/check-neutron-dsvm-functional/da1210d/console.html + 0% http://logs.openstack.org/00/123000/8/check/check-tempest-dsvm-neutron-full-2/78d5bf3/console.html + 0% http://logs.openstack.org/00/123000/8/check/check-tempest-dsvm-neutron-heat-slow/caa6dc9/console.html + 0% http://logs.openstack.org/00/123000/8/check/gate-rally-dsvm-neutron-neutron/58a4e58/console.html + 0% http://logs.openstack.org/00/123000/8/check/gate-tempest-dsvm-neutron-large-ops/8faa759/console.html +project + 30% openstack/neutron + 20% openstack/nova + 6% openstack/cinder + 6% openstack/tempest + 5% openstack/swift +tags + 100% console.html console diff --git a/elastic_recheck/tests/unit/logstash/1284371.json b/elastic_recheck/tests/unit/logstash/1284371.json new file mode 100644 index 00000000..6be1c3d1 --- /dev/null +++ b/elastic_recheck/tests/unit/logstash/1284371.json @@ -0,0 +1,12683 @@ +{ + "_shards": { + "failed": 0, + "successful": 5, + "total": 5 + }, + "hits": { + "hits": [ + { + "_id": "kY_XRtRFQXivpv1FIaSk1w", + "_index": "logstash-2014.11.25", + "_score": null, + "_source": { + "@timestamp": "2014-11-25T00:49:21.685+00:00", + "@version": "1", + "build_branch": "master", + "build_change": "135639", + "build_master": "jenkins06.openstack.org", + "build_name": "check-tempest-dsvm-postgres-full", + "build_node": "devstack-trusty-rax-ord-36314", + "build_patchset": "3", + "build_queue": "check", + "build_ref": "refs/zuul/master/Zb4212273ec084f549a5aec9568fbe725", + "build_short_uuid": "4f440b7", + "build_status": "FAILURE", + "build_uuid": "4f440b7e8c4b493c81ddf709d8a54076", + "error_pr": -7.9718, + "filename": "console.html", + "host": "127.0.0.1:56890", + "log_url": "http://logs.openstack.org/39/135639/3/check/check-tempest-dsvm-postgres-full/4f440b7/console.html", + "message": "Looks like the node went offline during the build. Check the slave log for the details.FATAL: /var/lib/jenkins/logs/slaves/devstack-trusty-rax-ord-36314/slave.log (No such file or directory)", + "project": "openstack/ceilometer", + "received_at": "2014-11-25 00:51:33 UTC", + "tags": [ + "console.html", + "console" + ], + "type": "jenkins" + }, + "_type": "jenkins", + "sort": [ + 1416876561685 + ] + }, + { + "_id": "KZykyA2AQ4Ov06iEmLoaVA", + "_index": "logstash-2014.11.25", + "_score": null, + "_source": { + "@timestamp": "2014-11-25T00:48:38.086+00:00", + "@version": "1", + "build_branch": "master", + "build_change": "135639", + "build_master": "jenkins04.openstack.org", + "build_name": "check-tempest-dsvm-full", + "build_node": "devstack-trusty-rax-ord-36326", + "build_patchset": "3", + "build_queue": "check", + "build_ref": "refs/zuul/master/Zb4212273ec084f549a5aec9568fbe725", + "build_short_uuid": "df8e589", + "build_status": "FAILURE", + "build_uuid": "df8e5898f73c463fbeb19d40cbae272b", + "error_pr": -7.9745, + "filename": "console.html", + "host": "127.0.0.1:56890", + "log_url": "http://logs.openstack.org/39/135639/3/check/check-tempest-dsvm-full/df8e589/console.html", + "message": "Looks like the node went offline during the build. Check the slave log for the details.FATAL: /var/lib/jenkins/logs/slaves/devstack-trusty-rax-ord-36326/slave.log (No such file or directory)", + "project": "openstack/ceilometer", + "received_at": "2014-11-25 00:50:23 UTC", + "tags": [ + "console.html", + "console" + ], + "type": "jenkins" + }, + "_type": "jenkins", + "sort": [ + 1416876518086 + ] + }, + { + "_id": "rIlKz2RNSj6Foi0q1JZ-_A", + "_index": "logstash-2014.11.25", + "_score": null, + "_source": { + "@timestamp": "2014-11-25T00:44:56.922+00:00", + "@version": "1", + "build_branch": "master", + "build_change": "136035", + "build_master": "jenkins01.openstack.org", + "build_name": "gate-tempest-dsvm-neutron-pg-full", + "build_node": "devstack-trusty-rax-ord-36286", + "build_patchset": "4", + "build_queue": "gate", + "build_ref": "refs/zuul/master/Z829cc876fbe0440e9f3b593a81d3dc28", + "build_short_uuid": "1acf7b9", + "build_status": "FAILURE", + "build_uuid": "1acf7b9a070944e882187f4172e70e27", + "filename": "console.html", + "host": "127.0.0.1:56890", + "log_url": "http://logs.openstack.org/35/136035/4/gate/gate-tempest-dsvm-neutron-pg-full/1acf7b9/console.html", + "message": "Looks like the node went offline during the build. Check the slave log for the details.FATAL: /var/lib/jenkins/logs/slaves/devstack-trusty-rax-ord-36286/slave.log (No such file or directory)", + "project": "openstack/neutron", + "received_at": "2014-11-25 00:46:18 UTC", + "tags": [ + "console.html", + "console" + ], + "type": "jenkins" + }, + "_type": "jenkins", + "sort": [ + 1416876296922 + ] + }, + { + "_id": "uK6NmFI9Q1ieNV4aC3-ZCQ", + "_index": "logstash-2014.11.25", + "_score": null, + "_source": { + "@timestamp": "2014-11-25T00:39:42.200+00:00", + "@version": "1", + "build_branch": "master", + "build_change": "135944", + "build_master": "jenkins01.openstack.org", + "build_name": "check-grenade-dsvm", + "build_node": "devstack-trusty-rax-dfw-36362", + "build_patchset": "10", + "build_queue": "check", + "build_ref": "refs/zuul/master/Z2e2878cea69546a4ac837bfa60568f01", + "build_short_uuid": "ef20095", + "build_status": "FAILURE", + "build_uuid": "ef20095618874595aec14d9ef385a643", + "filename": "console.html", + "host": "127.0.0.1:56890", + "log_url": "http://logs.openstack.org/44/135944/10/check/check-grenade-dsvm/ef20095/console.html", + "message": "Looks like the node went offline during the build. Check the slave log for the details.FATAL: /var/lib/jenkins/logs/slaves/devstack-trusty-rax-dfw-36362/slave.log (No such file or directory)", + "project": "openstack/nova", + "received_at": "2014-11-25 00:40:11 UTC", + "tags": [ + "console.html", + "console" + ], + "type": "jenkins" + }, + "_type": "jenkins", + "sort": [ + 1416875982200 + ] + }, + { + "_id": "Ytfqq9vtS1CAYl2RR1aOMQ", + "_index": "logstash-2014.11.25", + "_score": null, + "_source": { + "@timestamp": "2014-11-25T00:32:58.892+00:00", + "@version": "1", + "build_branch": "master", + "build_change": "136800", + "build_master": "jenkins07.openstack.org", + "build_name": "gate-tempest-dsvm-src-python-ceilometerclient-juno", + "build_node": "devstack-trusty-rax-dfw-36265", + "build_patchset": "1", + "build_queue": "check", + "build_ref": "refs/zuul/master/Z1f132819d96f4e658b2250665eed8adf", + "build_short_uuid": "1df8500", + "build_status": "FAILURE", + "build_uuid": "1df8500258e14d898d599a816f845765", + "filename": "console.html", + "host": "127.0.0.1:56890", + "log_url": "http://logs.openstack.org/00/136800/1/check/gate-tempest-dsvm-src-python-ceilometerclient-juno/1df8500/console.html", + "message": "Looks like the node went offline during the build. Check the slave log for the details.FATAL: /var/lib/jenkins/logs/slaves/devstack-trusty-rax-dfw-36265/slave.log (No such file or directory)", + "project": "openstack/python-ceilometerclient", + "received_at": "2014-11-25 00:33:46 UTC", + "tags": [ + "console.html", + "console" + ], + "type": "jenkins" + }, + "_type": "jenkins", + "sort": [ + 1416875578892 + ] + }, + { + "_id": "0U3diDQYSUOi_oKqAz70Ng", + "_index": "logstash-2014.11.25", + "_score": null, + "_source": { + "@timestamp": "2014-11-25T00:27:37.220+00:00", + "@version": "1", + "build_branch": "master", + "build_change": "135699", + "build_master": "jenkins01.openstack.org", + "build_name": "check-grenade-dsvm", + "build_node": "devstack-trusty-hpcloud-b4-36244", + "build_patchset": "5", + "build_queue": "check", + "build_ref": "refs/zuul/master/Z230d2690308d423c99670ed9ec699102", + "build_short_uuid": "ba2dd12", + "build_status": "FAILURE", + "build_uuid": "ba2dd12d186e47ada8e247d02861906b", + "filename": "console.html", + "host": "127.0.0.1:56890", + "log_url": "http://logs.openstack.org/99/135699/5/check/check-grenade-dsvm/ba2dd12/console.html", + "message": "Looks like the node went offline during the build. Check the slave log for the details.FATAL: /var/lib/jenkins/logs/slaves/devstack-trusty-hpcloud-b4-36244/slave.log (No such file or directory)", + "project": "openstack/nova", + "received_at": "2014-11-25 00:28:46 UTC", + "tags": [ + "console.html", + "console" + ], + "type": "jenkins" + }, + "_type": "jenkins", + "sort": [ + 1416875257220 + ] + }, + { + "_id": "i5Pu1ZjhRzSFPozbfBU6Xg", + "_index": "logstash-2014.11.25", + "_score": null, + "_source": { + "@timestamp": "2014-11-25T00:26:57.305+00:00", + "@version": "1", + "build_branch": "master", + "build_change": "135944", + "build_master": "jenkins02.openstack.org", + "build_name": "gate-tempest-dsvm-large-ops", + "build_node": "devstack-trusty-rax-dfw-36361", + "build_patchset": "10", + "build_queue": "check", + "build_ref": "refs/zuul/master/Z2e2878cea69546a4ac837bfa60568f01", + "build_short_uuid": "e95d77b", + "build_status": "FAILURE", + "build_uuid": "e95d77b0d5f446c581c4b1640c7cb883", + "error_pr": -7.9928, + "filename": "console.html", + "host": "127.0.0.1:56890", + "log_url": "http://logs.openstack.org/44/135944/10/check/gate-tempest-dsvm-large-ops/e95d77b/console.html", + "message": "Looks like the node went offline during the build. Check the slave log for the details.FATAL: /var/lib/jenkins/logs/slaves/devstack-trusty-rax-dfw-36361/slave.log (No such file or directory)", + "project": "openstack/nova", + "received_at": "2014-11-25 00:27:06 UTC", + "tags": [ + "console.html", + "console" + ], + "type": "jenkins" + }, + "_type": "jenkins", + "sort": [ + 1416875217305 + ] + }, + { + "_id": "4yNWbq6-SXiBdsXAdxeoHQ", + "_index": "logstash-2014.11.25", + "_score": null, + "_source": { + "@timestamp": "2014-11-25T00:25:54.033+00:00", + "@version": "1", + "build_branch": "feature/lbaasv2", + "build_change": "123485", + "build_master": "jenkins03.openstack.org", + "build_name": "gate-tempest-dsvm-neutron-full", + "build_node": "devstack-trusty-hpcloud-b4-36150", + "build_patchset": "9", + "build_queue": "gate", + "build_ref": "refs/zuul/feature/lbaasv2/Zd1b987c3d3be4e4988dfee463dded5c9", + "build_short_uuid": "5a2d89d", + "build_status": "FAILURE", + "build_uuid": "5a2d89d5611f4c938007f94eed00749c", + "error_pr": -7.9626, + "filename": "console.html", + "host": "127.0.0.1:56890", + "log_url": "http://logs.openstack.org/85/123485/9/gate/gate-tempest-dsvm-neutron-full/5a2d89d/console.html", + "message": "Looks like the node went offline during the build. Check the slave log for the details.FATAL: /var/lib/jenkins/logs/slaves/devstack-trusty-hpcloud-b4-36150/slave.log (No such file or directory)", + "project": "openstack/neutron", + "received_at": "2014-11-25 00:27:01 UTC", + "tags": [ + "console.html", + "console" + ], + "type": "jenkins" + }, + "_type": "jenkins", + "sort": [ + 1416875154033 + ] + }, + { + "_id": "FIVzu-HiSrmAmgVzHlLGXQ", + "_index": "logstash-2014.11.25", + "_score": null, + "_source": { + "@timestamp": "2014-11-25T00:25:38.282+00:00", + "@version": "1", + "build_branch": "master", + "build_change": "112129", + "build_master": "jenkins01.openstack.org", + "build_name": "gate-tempest-dsvm-neutron-large-ops", + "build_node": "devstack-trusty-hpcloud-b4-36339", + "build_patchset": "25", + "build_queue": "check", + "build_ref": "refs/zuul/master/Zacaf6a2ee21e4547aff1354e265d78f7", + "build_short_uuid": "d819328", + "build_status": "FAILURE", + "build_uuid": "d819328c55804d3c8b4eb106a6abaf1a", + "error_pr": -7.9975, + "filename": "console.html", + "host": "127.0.0.1:56886", + "log_url": "http://logs.openstack.org/29/112129/25/check/gate-tempest-dsvm-neutron-large-ops/d819328/console.html", + "message": "Looks like the node went offline during the build. Check the slave log for the details.FATAL: /var/lib/jenkins/logs/slaves/devstack-trusty-hpcloud-b4-36339/slave.log (No such file or directory)", + "project": "openstack/neutron", + "received_at": "2014-11-25 00:26:01 UTC", + "tags": [ + "console.html", + "console" + ], + "type": "jenkins" + }, + "_type": "jenkins", + "sort": [ + 1416875138282 + ] + }, + { + "_id": "VicmJlOXRFqxpu_8R0ri8Q", + "_index": "logstash-2014.11.25", + "_score": null, + "_source": { + "@timestamp": "2014-11-25T00:25:27.203+00:00", + "@version": "1", + "build_branch": "master", + "build_change": "135699", + "build_master": "jenkins01.openstack.org", + "build_name": "check-tempest-dsvm-ironic-pxe_ssh", + "build_node": "devstack-trusty-rax-ord-36248", + "build_patchset": "5", + "build_queue": "check", + "build_ref": "refs/zuul/master/Z230d2690308d423c99670ed9ec699102", + "build_short_uuid": "4fdf4d9", + "build_status": "FAILURE", + "build_uuid": "4fdf4d9de885435bbce988c201c8ea95", + "error_pr": -7.1868, + "filename": "console.html", + "host": "127.0.0.1:35477", + "log_url": "http://logs.openstack.org/99/135699/5/check/check-tempest-dsvm-ironic-pxe_ssh/4fdf4d9/console.html", + "message": "Looks like the node went offline during the build. Check the slave log for the details.FATAL: /var/lib/jenkins/logs/slaves/devstack-trusty-rax-ord-36248/slave.log (No such file or directory)", + "project": "openstack/nova", + "received_at": "2014-11-25 00:25:57 UTC", + "tags": [ + "console.html", + "console" + ], + "type": "jenkins" + }, + "_type": "jenkins", + "sort": [ + 1416875127203 + ] + }, + { + "_id": "HYKBaojETyaAZSxBiRRQ-w", + "_index": "logstash-2014.11.25", + "_score": null, + "_source": { + "@timestamp": "2014-11-25T00:25:10.269+00:00", + "@version": "1", + "build_branch": "master", + "build_change": "135944", + "build_master": "jenkins03.openstack.org", + "build_name": "check-tempest-dsvm-neutron-heat-slow", + "build_node": "devstack-trusty-rax-dfw-36360", + "build_patchset": "10", + "build_queue": "check", + "build_ref": "refs/zuul/master/Z2e2878cea69546a4ac837bfa60568f01", + "build_short_uuid": "f348751", + "build_status": "FAILURE", + "build_uuid": "f3487516446b4ae7ac2aab1d0470dce8", + "error_pr": -7.7121, + "filename": "console.html", + "host": "127.0.0.1:36517", + "log_url": "http://logs.openstack.org/44/135944/10/check/check-tempest-dsvm-neutron-heat-slow/f348751/console.html", + "message": "Looks like the node went offline during the build. Check the slave log for the details.FATAL: /var/lib/jenkins/logs/slaves/devstack-trusty-rax-dfw-36360/slave.log (No such file or directory)", + "project": "openstack/nova", + "received_at": "2014-11-25 00:25:23 UTC", + "tags": [ + "console.html", + "console" + ], + "type": "jenkins" + }, + "_type": "jenkins", + "sort": [ + 1416875110269 + ] + }, + { + "_id": "T7e8DKk_QziWnvGtgTnTkA", + "_index": "logstash-2014.11.25", + "_score": null, + "_source": { + "@timestamp": "2014-11-25T00:25:09.744+00:00", + "@version": "1", + "build_branch": "master", + "build_change": "136013", + "build_master": "jenkins06.openstack.org", + "build_name": "gate-tempest-dsvm-full", + "build_node": "devstack-trusty-hpcloud-b5-36212", + "build_patchset": "2", + "build_queue": "gate", + "build_ref": "refs/zuul/master/Zdf0ac818973d4c91bbf6d104da6aeeeb", + "build_short_uuid": "bb153f4", + "build_status": "FAILURE", + "build_uuid": "bb153f42b521438093fe6e921d32d881", + "error_pr": -8.7136, + "filename": "console.html", + "host": "127.0.0.1:42355", + "log_url": "http://logs.openstack.org/13/136013/2/gate/gate-tempest-dsvm-full/bb153f4/console.html", + "message": "Looks like the node went offline during the build. Check the slave log for the details.FATAL: /var/lib/jenkins/logs/slaves/devstack-trusty-hpcloud-b5-36212/slave.log (No such file or directory)", + "project": "openstack/nova", + "received_at": "2014-11-25 00:25:59 UTC", + "tags": [ + "console.html", + "console" + ], + "type": "jenkins" + }, + "_type": "jenkins", + "sort": [ + 1416875109744 + ] + }, + { + "_id": "q_pO8urwRwS8rlYXSi9ZHA", + "_index": "logstash-2014.11.25", + "_score": null, + "_source": { + "@timestamp": "2014-11-25T00:24:51.522+00:00", + "@version": "1", + "build_branch": "feature/lbaasv2", + "build_change": "123485", + "build_master": "jenkins04.openstack.org", + "build_name": "gate-tempest-dsvm-neutron-pg", + "build_node": "devstack-trusty-hpcloud-b5-36155", + "build_patchset": "9", + "build_queue": "gate", + "build_ref": "refs/zuul/feature/lbaasv2/Zd1b987c3d3be4e4988dfee463dded5c9", + "build_short_uuid": "30b007b", + "build_status": "FAILURE", + "build_uuid": "30b007b7b88f4f76af112b5abbddec7c", + "error_pr": -7.713, + "filename": "console.html", + "host": "127.0.0.1:36508", + "log_url": "http://logs.openstack.org/85/123485/9/gate/gate-tempest-dsvm-neutron-pg/30b007b/console.html", + "message": "Looks like the node went offline during the build. Check the slave log for the details.FATAL: /var/lib/jenkins/logs/slaves/devstack-trusty-hpcloud-b5-36155/slave.log (No such file or directory)", + "project": "openstack/neutron", + "received_at": "2014-11-25 00:25:37 UTC", + "tags": [ + "console.html", + "console" + ], + "type": "jenkins" + }, + "_type": "jenkins", + "sort": [ + 1416875091522 + ] + }, + { + "_id": "pvaTUpvRTOmSSs8MEdhLnw", + "_index": "logstash-2014.11.25", + "_score": null, + "_source": { + "@timestamp": "2014-11-25T00:24:13.479+00:00", + "@version": "1", + "build_branch": "master", + "build_change": "136013", + "build_master": "jenkins07.openstack.org", + "build_name": "gate-tempest-dsvm-neutron-full", + "build_node": "devstack-trusty-rax-iad-36199", + "build_patchset": "2", + "build_queue": "gate", + "build_ref": "refs/zuul/master/Zdf0ac818973d4c91bbf6d104da6aeeeb", + "build_short_uuid": "7a547f6", + "build_status": "FAILURE", + "build_uuid": "7a547f6ad1d744d69d2e7d959f1f586a", + "filename": "console.html", + "host": "127.0.0.1:56886", + "log_url": "http://logs.openstack.org/13/136013/2/gate/gate-tempest-dsvm-neutron-full/7a547f6/console.html", + "message": "Looks like the node went offline during the build. Check the slave log for the details.FATAL: /var/lib/jenkins/logs/slaves/devstack-trusty-rax-iad-36199/slave.log (No such file or directory)", + "project": "openstack/nova", + "received_at": "2014-11-25 00:25:27 UTC", + "tags": [ + "console.html", + "console" + ], + "type": "jenkins" + }, + "_type": "jenkins", + "sort": [ + 1416875053479 + ] + }, + { + "_id": "vOcNrS67RyO4GgfwIPOzzA", + "_index": "logstash-2014.11.25", + "_score": null, + "_source": { + "@timestamp": "2014-11-25T00:23:50.802+00:00", + "@version": "1", + "build_branch": "master", + "build_change": "136843", + "build_master": "jenkins02.openstack.org", + "build_name": "check-tempest-dsvm-postgres-full", + "build_node": "devstack-trusty-rax-dfw-36220", + "build_patchset": "2", + "build_queue": "check", + "build_ref": "refs/zuul/master/Z4e79cfff507d45a4919ec6484670dc38", + "build_short_uuid": "321e6fe", + "build_status": "FAILURE", + "build_uuid": "321e6fe0002248ac862baf89d7fb1e58", + "filename": "console.html", + "host": "127.0.0.1:51048", + "log_url": "http://logs.openstack.org/43/136843/2/check/check-tempest-dsvm-postgres-full/321e6fe/console.html", + "message": "Looks like the node went offline during the build. Check the slave log for the details.FATAL: /var/lib/jenkins/logs/slaves/devstack-trusty-rax-dfw-36220/slave.log (No such file or directory)", + "project": "openstack/sahara", + "received_at": "2014-11-25 00:24:59 UTC", + "tags": [ + "console.html", + "console" + ], + "type": "jenkins" + }, + "_type": "jenkins", + "sort": [ + 1416875030802 + ] + }, + { + "_id": "13MC_DrgRm6nW5m1L3yvHw", + "_index": "logstash-2014.11.25", + "_score": null, + "_source": { + "@timestamp": "2014-11-25T00:23:46.583+00:00", + "@version": "1", + "build_branch": "master", + "build_change": "135639", + "build_master": "jenkins07.openstack.org", + "build_name": "gate-tempest-dsvm-ceilometer-mongodb", + "build_node": "devstack-trusty-rax-iad-36329", + "build_patchset": "3", + "build_queue": "check", + "build_ref": "refs/zuul/master/Zb4212273ec084f549a5aec9568fbe725", + "build_short_uuid": "7f0c4a1", + "build_status": "FAILURE", + "build_uuid": "7f0c4a1488544805a82f2dc7475af24f", + "error_pr": -8.4748, + "filename": "console.html", + "host": "127.0.0.1:45748", + "log_url": "http://logs.openstack.org/39/135639/3/check/gate-tempest-dsvm-ceilometer-mongodb/7f0c4a1/console.html", + "message": "Looks like the node went offline during the build. Check the slave log for the details.FATAL: /var/lib/jenkins/logs/slaves/devstack-trusty-rax-iad-36329/slave.log (No such file or directory)", + "project": "openstack/ceilometer", + "received_at": "2014-11-25 00:24:41 UTC", + "tags": [ + "console.html", + "console" + ], + "type": "jenkins" + }, + "_type": "jenkins", + "sort": [ + 1416875026583 + ] + }, + { + "_id": "voxJlebKRUqw0hDX4PwDfQ", + "_index": "logstash-2014.11.25", + "_score": null, + "_source": { + "@timestamp": "2014-11-25T00:23:22.286+00:00", + "@version": "1", + "build_branch": "feature/lbaasv2", + "build_change": "123485", + "build_master": "jenkins07.openstack.org", + "build_name": "gate-tempest-dsvm-neutron-pg-full-2", + "build_node": "devstack-trusty-rax-dfw-36180", + "build_patchset": "9", + "build_queue": "gate", + "build_ref": "refs/zuul/feature/lbaasv2/Zd1b987c3d3be4e4988dfee463dded5c9", + "build_short_uuid": "7591e5b", + "build_status": "FAILURE", + "build_uuid": "7591e5b59ea54e0cba4f71ad16da7a31", + "filename": "console.html", + "host": "127.0.0.1:51078", + "log_url": "http://logs.openstack.org/85/123485/9/gate/gate-tempest-dsvm-neutron-pg-full-2/7591e5b/console.html", + "message": "Looks like the node went offline during the build. Check the slave log for the details.FATAL: /var/lib/jenkins/logs/slaves/devstack-trusty-rax-dfw-36180/slave.log (No such file or directory)", + "project": "openstack/neutron", + "received_at": "2014-11-25 00:24:43 UTC", + "tags": [ + "console.html", + "console" + ], + "type": "jenkins" + }, + "_type": "jenkins", + "sort": [ + 1416875002286 + ] + }, + { + "_id": "xFgW5astSmW_grwOznss9g", + "_index": "logstash-2014.11.25", + "_score": null, + "_source": { + "@timestamp": "2014-11-25T00:22:55.365+00:00", + "@version": "1", + "build_branch": "master", + "build_change": "135699", + "build_master": "jenkins02.openstack.org", + "build_name": "check-tempest-dsvm-docker", + "build_node": "devstack-trusty-rax-dfw-36258", + "build_patchset": "5", + "build_queue": "check", + "build_ref": "refs/zuul/master/Z230d2690308d423c99670ed9ec699102", + "build_short_uuid": "f8fcb23", + "build_status": "FAILURE", + "build_uuid": "f8fcb23fe4894a29a3d0f1c5c5305747", + "error_pr": -7.9852, + "filename": "console.html", + "host": "127.0.0.1:56890", + "log_url": "http://logs.openstack.org/99/135699/5/check/check-tempest-dsvm-docker/f8fcb23/console.html", + "message": "Looks like the node went offline during the build. Check the slave log for the details.FATAL: /var/lib/jenkins/logs/slaves/devstack-trusty-rax-dfw-36258/slave.log (No such file or directory)", + "project": "openstack/nova", + "received_at": "2014-11-25 00:23:12 UTC", + "tags": [ + "console.html", + "console" + ], + "type": "jenkins" + }, + "_type": "jenkins", + "sort": [ + 1416874975365 + ] + }, + { + "_id": "Roxa9VcmTS6PertXDcb-bA", + "_index": "logstash-2014.11.25", + "_score": null, + "_source": { + "@timestamp": "2014-11-25T00:22:51.511+00:00", + "@version": "1", + "build_branch": "master", + "build_change": "134388", + "build_master": "jenkins03.openstack.org", + "build_name": "gate-tempest-dsvm-full", + "build_node": "devstack-trusty-hpcloud-b1-36142", + "build_patchset": "3", + "build_queue": "gate", + "build_ref": "refs/zuul/master/Ze33b4b859ea0447a8aea20a550c70bde", + "build_short_uuid": "e505d37", + "build_status": "FAILURE", + "build_uuid": "e505d37a6aea4c1f9e530c851fcfca43", + "error_pr": -7.518, + "filename": "console.html", + "host": "127.0.0.1:39167", + "log_url": "http://logs.openstack.org/88/134388/3/gate/gate-tempest-dsvm-full/e505d37/console.html", + "message": "Looks like the node went offline during the build. Check the slave log for the details.FATAL: /var/lib/jenkins/logs/slaves/devstack-trusty-hpcloud-b1-36142/slave.log (No such file or directory)", + "project": "openstack/keystone", + "received_at": "2014-11-25 00:24:39 UTC", + "tags": [ + "console.html", + "console" + ], + "type": "jenkins" + }, + "_type": "jenkins", + "sort": [ + 1416874971511 + ] + }, + { + "_id": "77oV_jS1SGya_XJJYlZ9yw", + "_index": "logstash-2014.11.25", + "_score": null, + "_source": { + "@timestamp": "2014-11-25T00:22:46.364+00:00", + "@version": "1", + "build_branch": "master", + "build_change": "135944", + "build_master": "jenkins05.openstack.org", + "build_name": "check-devstack-dsvm-cells", + "build_node": "devstack-trusty-hpcloud-b1-36369", + "build_patchset": "10", + "build_queue": "check", + "build_ref": "refs/zuul/master/Z2e2878cea69546a4ac837bfa60568f01", + "build_short_uuid": "def8214", + "build_status": "FAILURE", + "build_uuid": "def82143ca5b4dd2b286f258af998cea", + "error_pr": -8.0009, + "filename": "console.html", + "host": "127.0.0.1:56886", + "log_url": "http://logs.openstack.org/44/135944/10/check/check-devstack-dsvm-cells/def8214/console.html", + "message": "Looks like the node went offline during the build. Check the slave log for the details.FATAL: /var/lib/jenkins/logs/slaves/devstack-trusty-hpcloud-b1-36369/slave.log (No such file or directory)", + "project": "openstack/nova", + "received_at": "2014-11-25 00:23:15 UTC", + "tags": [ + "console.html", + "console" + ], + "type": "jenkins" + }, + "_type": "jenkins", + "sort": [ + 1416874966364 + ] + }, + { + "_id": "Kj6GpO66SG2LAkDRLyA08g", + "_index": "logstash-2014.11.25", + "_score": null, + "_source": { + "@timestamp": "2014-11-25T00:22:30.476+00:00", + "@version": "1", + "build_branch": "master", + "build_change": "112129", + "build_master": "jenkins04.openstack.org", + "build_name": "check-tempest-dsvm-neutron-heat-slow", + "build_node": "devstack-trusty-hpcloud-b3-36330", + "build_patchset": "25", + "build_queue": "check", + "build_ref": "refs/zuul/master/Zacaf6a2ee21e4547aff1354e265d78f7", + "build_short_uuid": "7b5b760", + "build_status": "FAILURE", + "build_uuid": "7b5b7607fe90498cb36140aa848c5cf2", + "error_pr": -8.0002, + "filename": "console.html", + "host": "127.0.0.1:56890", + "log_url": "http://logs.openstack.org/29/112129/25/check/check-tempest-dsvm-neutron-heat-slow/7b5b760/console.html", + "message": "Looks like the node went offline during the build. Check the slave log for the details.FATAL: /var/lib/jenkins/logs/slaves/devstack-trusty-hpcloud-b3-36330/slave.log (No such file or directory)", + "project": "openstack/neutron", + "received_at": "2014-11-25 00:22:59 UTC", + "tags": [ + "console.html", + "console" + ], + "type": "jenkins" + }, + "_type": "jenkins", + "sort": [ + 1416874950476 + ] + }, + { + "_id": "mTYcU5klR6uSlcLNPmtdwg", + "_index": "logstash-2014.11.25", + "_score": null, + "_source": { + "@timestamp": "2014-11-25T00:20:21.815+00:00", + "@version": "1", + "build_branch": "master", + "build_change": "117994", + "build_master": "jenkins03.openstack.org", + "build_name": "gate-tempest-dsvm-neutron-pg", + "build_node": "devstack-trusty-rax-dfw-36183", + "build_patchset": "25", + "build_queue": "gate", + "build_ref": "refs/zuul/master/Z50ccfd650c7740d2b67b1cbc3036f58e", + "build_short_uuid": "3cf437c", + "build_status": "FAILURE", + "build_uuid": "3cf437cb069e48158c6ed99486ebac0a", + "error_pr": -7.9795, + "filename": "console.html", + "host": "127.0.0.1:56902", + "log_url": "http://logs.openstack.org/94/117994/25/gate/gate-tempest-dsvm-neutron-pg/3cf437c/console.html", + "message": "Looks like the node went offline during the build. Check the slave log for the details.FATAL: /var/lib/jenkins/logs/slaves/devstack-trusty-rax-dfw-36183/slave.log (No such file or directory)", + "project": "openstack/neutron", + "received_at": "2014-11-25 00:20:40 UTC", + "tags": [ + "console.html", + "console" + ], + "type": "jenkins" + }, + "_type": "jenkins", + "sort": [ + 1416874821815 + ] + }, + { + "_id": "QDpf4RkbQ5KzalmZdc55wg", + "_index": "logstash-2014.11.25", + "_score": null, + "_source": { + "@timestamp": "2014-11-25T00:19:55.777+00:00", + "@version": "1", + "build_branch": "master", + "build_change": "112129", + "build_master": "jenkins02.openstack.org", + "build_name": "gate-rally-dsvm-neutron-neutron", + "build_node": "devstack-trusty-hpcloud-b2-36337", + "build_patchset": "25", + "build_queue": "check", + "build_ref": "refs/zuul/master/Zacaf6a2ee21e4547aff1354e265d78f7", + "build_short_uuid": "b12f21d", + "build_status": "FAILURE", + "build_uuid": "b12f21d63b39463491711c2d991f8e1b", + "error_pr": -7.9917, + "filename": "console.html", + "host": "127.0.0.1:56890", + "log_url": "http://logs.openstack.org/29/112129/25/check/gate-rally-dsvm-neutron-neutron/b12f21d/console.html", + "message": "Looks like the node went offline during the build. Check the slave log for the details.FATAL: /var/lib/jenkins/logs/slaves/devstack-trusty-hpcloud-b2-36337/slave.log (No such file or directory)", + "project": "openstack/neutron", + "received_at": "2014-11-25 00:20:44 UTC", + "tags": [ + "console.html", + "console" + ], + "type": "jenkins" + }, + "_type": "jenkins", + "sort": [ + 1416874795777 + ] + }, + { + "_id": "qJVtZQkXS8SoxjryNOuBkg", + "_index": "logstash-2014.11.25", + "_score": null, + "_source": { + "@timestamp": "2014-11-25T00:18:56.943+00:00", + "@version": "1", + "build_branch": "master", + "build_change": "135639", + "build_master": "jenkins06.openstack.org", + "build_name": "check-tempest-dsvm-neutron-heat-slow", + "build_node": "devstack-trusty-rax-dfw-36328", + "build_patchset": "3", + "build_queue": "check", + "build_ref": "refs/zuul/master/Zb4212273ec084f549a5aec9568fbe725", + "build_short_uuid": "fb345d4", + "build_status": "FAILURE", + "build_uuid": "fb345d483d5d4ca7bdd261211065ddbe", + "error_pr": -7.9982, + "filename": "console.html", + "host": "127.0.0.1:56890", + "log_url": "http://logs.openstack.org/39/135639/3/check/check-tempest-dsvm-neutron-heat-slow/fb345d4/console.html", + "message": "Looks like the node went offline during the build. Check the slave log for the details.FATAL: /var/lib/jenkins/logs/slaves/devstack-trusty-rax-dfw-36328/slave.log (No such file or directory)", + "project": "openstack/ceilometer", + "received_at": "2014-11-25 00:19:09 UTC", + "tags": [ + "console.html", + "console" + ], + "type": "jenkins" + }, + "_type": "jenkins", + "sort": [ + 1416874736943 + ] + }, + { + "_id": "3FO00rs1TMWBks0MQpyIqQ", + "_index": "logstash-2014.11.25", + "_score": null, + "_source": { + "@timestamp": "2014-11-25T00:18:54.543+00:00", + "@version": "1", + "build_branch": "master", + "build_change": "117994", + "build_master": "jenkins03.openstack.org", + "build_name": "gate-tempest-dsvm-neutron-pg-full-2", + "build_node": "devstack-trusty-rax-iad-36194", + "build_patchset": "25", + "build_queue": "gate", + "build_ref": "refs/zuul/master/Z50ccfd650c7740d2b67b1cbc3036f58e", + "build_short_uuid": "c5de8d9", + "build_status": "FAILURE", + "build_uuid": "c5de8d99a9b940f28c508c7fc351f5d8", + "error_pr": -7.9638, + "filename": "console.html", + "host": "127.0.0.1:56890", + "log_url": "http://logs.openstack.org/94/117994/25/gate/gate-tempest-dsvm-neutron-pg-full-2/c5de8d9/console.html", + "message": "Looks like the node went offline during the build. Check the slave log for the details.FATAL: /var/lib/jenkins/logs/slaves/devstack-trusty-rax-iad-36194/slave.log (No such file or directory)", + "project": "openstack/neutron", + "received_at": "2014-11-25 00:19:50 UTC", + "tags": [ + "console.html", + "console" + ], + "type": "jenkins" + }, + "_type": "jenkins", + "sort": [ + 1416874734543 + ] + }, + { + "_id": "HUi6-M3NScmMrUgYMiCNhw", + "_index": "logstash-2014.11.25", + "_score": null, + "_source": { + "@timestamp": "2014-11-25T00:18:47.442+00:00", + "@version": "1", + "build_branch": "master", + "build_change": "135639", + "build_master": "jenkins06.openstack.org", + "build_name": "check-swift-dsvm-functional", + "build_node": "devstack-trusty-hpcloud-b5-36332", + "build_patchset": "3", + "build_queue": "check", + "build_ref": "refs/zuul/master/Zb4212273ec084f549a5aec9568fbe725", + "build_short_uuid": "37f4cbe", + "build_status": "FAILURE", + "build_uuid": "37f4cbed3c6447bda4fbcfa02a3185ab", + "error_pr": -7.9787, + "filename": "console.html", + "host": "127.0.0.1:56890", + "log_url": "http://logs.openstack.org/39/135639/3/check/check-swift-dsvm-functional/37f4cbe/console.html", + "message": "Looks like the node went offline during the build. Check the slave log for the details.FATAL: /var/lib/jenkins/logs/slaves/devstack-trusty-hpcloud-b5-36332/slave.log (No such file or directory)", + "project": "openstack/ceilometer", + "received_at": "2014-11-25 00:19:11 UTC", + "tags": [ + "console.html", + "console" + ], + "type": "jenkins" + }, + "_type": "jenkins", + "sort": [ + 1416874727442 + ] + }, + { + "_id": "aTQihFT0RamuEp5To8P2yw", + "_index": "logstash-2014.11.25", + "_score": null, + "_source": { + "@timestamp": "2014-11-25T00:18:37.217+00:00", + "@version": "1", + "build_branch": "master", + "build_change": "112129", + "build_master": "jenkins04.openstack.org", + "build_name": "check-neutron-dsvm-functional", + "build_node": "devstack-trusty-rax-ord-36342", + "build_patchset": "25", + "build_queue": "check", + "build_ref": "refs/zuul/master/Zacaf6a2ee21e4547aff1354e265d78f7", + "build_short_uuid": "8cb05c5", + "build_status": "FAILURE", + "build_uuid": "8cb05c5028e44e9c824998c7e05fa98c", + "error_pr": -7.9963, + "filename": "console.html", + "host": "127.0.0.1:56890", + "log_url": "http://logs.openstack.org/29/112129/25/check/check-neutron-dsvm-functional/8cb05c5/console.html", + "message": "Looks like the node went offline during the build. Check the slave log for the details.FATAL: /var/lib/jenkins/logs/slaves/devstack-trusty-rax-ord-36342/slave.log (No such file or directory)", + "project": "openstack/neutron", + "received_at": "2014-11-25 00:19:13 UTC", + "tags": [ + "console.html", + "console" + ], + "type": "jenkins" + }, + "_type": "jenkins", + "sort": [ + 1416874717217 + ] + }, + { + "_id": "UpL2c0TKQwqPgcbuTx2nvw", + "_index": "logstash-2014.11.25", + "_score": null, + "_source": { + "@timestamp": "2014-11-25T00:18:25.241+00:00", + "@version": "1", + "build_branch": "feature/lbaasv2", + "build_change": "123485", + "build_master": "jenkins03.openstack.org", + "build_name": "gate-tempest-dsvm-neutron-pg-2", + "build_node": "devstack-trusty-rax-dfw-36184", + "build_patchset": "9", + "build_queue": "gate", + "build_ref": "refs/zuul/feature/lbaasv2/Zd1b987c3d3be4e4988dfee463dded5c9", + "build_short_uuid": "862444f", + "build_status": "FAILURE", + "build_uuid": "862444fb5342421bbc21c5f9cf9076ac", + "error_pr": -7.9876, + "filename": "console.html", + "host": "127.0.0.1:56890", + "log_url": "http://logs.openstack.org/85/123485/9/gate/gate-tempest-dsvm-neutron-pg-2/862444f/console.html", + "message": "Looks like the node went offline during the build. Check the slave log for the details.FATAL: /var/lib/jenkins/logs/slaves/devstack-trusty-rax-dfw-36184/slave.log (No such file or directory)", + "project": "openstack/neutron", + "received_at": "2014-11-25 00:19:09 UTC", + "tags": [ + "console.html", + "console" + ], + "type": "jenkins" + }, + "_type": "jenkins", + "sort": [ + 1416874705241 + ] + }, + { + "_id": "nEzL-32DRhyJUIkjomWWhg", + "_index": "logstash-2014.11.25", + "_score": null, + "_source": { + "@timestamp": "2014-11-25T00:18:03.975+00:00", + "@version": "1", + "build_branch": "master", + "build_change": "117994", + "build_master": "jenkins01.openstack.org", + "build_name": "gate-tempest-dsvm-neutron-pg-full", + "build_node": "devstack-trusty-rax-dfw-36185", + "build_patchset": "25", + "build_queue": "gate", + "build_ref": "refs/zuul/master/Z50ccfd650c7740d2b67b1cbc3036f58e", + "build_short_uuid": "24b0a23", + "build_status": "FAILURE", + "build_uuid": "24b0a23ec5d94f618662a10a38117d63", + "error_pr": -7.9836, + "filename": "console.html", + "host": "127.0.0.1:56902", + "log_url": "http://logs.openstack.org/94/117994/25/gate/gate-tempest-dsvm-neutron-pg-full/24b0a23/console.html", + "message": "Looks like the node went offline during the build. Check the slave log for the details.FATAL: /var/lib/jenkins/logs/slaves/devstack-trusty-rax-dfw-36185/slave.log (No such file or directory)", + "project": "openstack/neutron", + "received_at": "2014-11-25 00:19:16 UTC", + "tags": [ + "console.html", + "console" + ], + "type": "jenkins" + }, + "_type": "jenkins", + "sort": [ + 1416874683975 + ] + }, + { + "_id": "9cqRxtttRjG440QTe5C40A", + "_index": "logstash-2014.11.25", + "_score": null, + "_source": { + "@timestamp": "2014-11-25T00:17:51.938+00:00", + "@version": "1", + "build_branch": "master", + "build_change": "136843", + "build_master": "jenkins05.openstack.org", + "build_name": "check-grenade-dsvm", + "build_node": "devstack-trusty-rax-dfw-36232", + "build_patchset": "2", + "build_queue": "check", + "build_ref": "refs/zuul/master/Z4e79cfff507d45a4919ec6484670dc38", + "build_short_uuid": "768f642", + "build_status": "FAILURE", + "build_uuid": "768f642b45f0487e84466062dbfc6a4b", + "error_pr": -7.9734, + "filename": "console.html", + "host": "127.0.0.1:56902", + "log_url": "http://logs.openstack.org/43/136843/2/check/check-grenade-dsvm/768f642/console.html", + "message": "Looks like the node went offline during the build. Check the slave log for the details.FATAL: /var/lib/jenkins/logs/slaves/devstack-trusty-rax-dfw-36232/slave.log (No such file or directory)", + "project": "openstack/sahara", + "received_at": "2014-11-25 00:19:09 UTC", + "tags": [ + "console.html", + "console" + ], + "type": "jenkins" + }, + "_type": "jenkins", + "sort": [ + 1416874671938 + ] + }, + { + "_id": "xLrpgyAvQYO1_OkAYzdfLA", + "_index": "logstash-2014.11.25", + "_score": null, + "_source": { + "@timestamp": "2014-11-25T00:17:47.730+00:00", + "@version": "1", + "build_branch": "master", + "build_change": "135533", + "build_master": "jenkins07.openstack.org", + "build_name": "gate-neutron-python27", + "build_node": "bare-trusty-hpcloud-b5-36324", + "build_patchset": "4", + "build_queue": "gate", + "build_ref": "refs/zuul/master/Z5ffc2853efbb46649380249ea0aa04be", + "build_short_uuid": "94ac5a4", + "build_status": "FAILURE", + "build_uuid": "94ac5a48452341b79f3073552abab440", + "filename": "console.html", + "host": "127.0.0.1:33962", + "log_url": "http://logs.openstack.org/33/135533/4/gate/gate-neutron-python27/94ac5a4/console.html", + "message": "Looks like the node went offline during the build. Check the slave log for the details.FATAL: /var/lib/jenkins/logs/slaves/bare-trusty-hpcloud-b5-36324/slave.log (No such file or directory)", + "project": "openstack/neutron", + "received_at": "2014-11-25 00:19:15 UTC", + "tags": [ + "console.html", + "console" + ], + "type": "jenkins" + }, + "_type": "jenkins", + "sort": [ + 1416874667730 + ] + }, + { + "_id": "n44z_RYUSrm4x_oRyTFvPg", + "_index": "logstash-2014.11.25", + "_score": null, + "_source": { + "@timestamp": "2014-11-25T00:17:21.838+00:00", + "@version": "1", + "build_branch": "master", + "build_change": "136013", + "build_master": "jenkins04.openstack.org", + "build_name": "gate-grenade-dsvm", + "build_node": "devstack-trusty-hpcloud-b3-36207", + "build_patchset": "2", + "build_queue": "gate", + "build_ref": "refs/zuul/master/Zdf0ac818973d4c91bbf6d104da6aeeeb", + "build_short_uuid": "f5fc34f", + "build_status": "FAILURE", + "build_uuid": "f5fc34f50b2843d59daf06d7226c67d9", + "error_pr": -7.9964, + "filename": "console.html", + "host": "127.0.0.1:56902", + "log_url": "http://logs.openstack.org/13/136013/2/gate/gate-grenade-dsvm/f5fc34f/console.html", + "message": "Looks like the node went offline during the build. Check the slave log for the details.FATAL: /var/lib/jenkins/logs/slaves/devstack-trusty-hpcloud-b3-36207/slave.log (No such file or directory)", + "project": "openstack/nova", + "received_at": "2014-11-25 00:18:10 UTC", + "tags": [ + "console.html", + "console" + ], + "type": "jenkins" + }, + "_type": "jenkins", + "sort": [ + 1416874641838 + ] + }, + { + "_id": "JNhCMHhkTJi63BDODFs3QQ", + "_index": "logstash-2014.11.25", + "_score": null, + "_source": { + "@timestamp": "2014-11-25T00:17:17.694+00:00", + "@version": "1", + "build_branch": "master", + "build_change": "135533", + "build_master": "jenkins01.openstack.org", + "build_name": "gate-tempest-dsvm-neutron-large-ops", + "build_node": "devstack-trusty-hpcloud-b3-36309", + "build_patchset": "4", + "build_queue": "gate", + "build_ref": "refs/zuul/master/Z5ffc2853efbb46649380249ea0aa04be", + "build_short_uuid": "e720093", + "build_status": "FAILURE", + "build_uuid": "e720093735704eadbd0ecd3c4427faf3", + "error_pr": -8.3839, + "filename": "console.html", + "host": "127.0.0.1:41029", + "log_url": "http://logs.openstack.org/33/135533/4/gate/gate-tempest-dsvm-neutron-large-ops/e720093/console.html", + "message": "Looks like the node went offline during the build. Check the slave log for the details.FATAL: /var/lib/jenkins/logs/slaves/devstack-trusty-hpcloud-b3-36309/slave.log (No such file or directory)", + "project": "openstack/neutron", + "received_at": "2014-11-25 00:17:43 UTC", + "tags": [ + "console.html", + "console" + ], + "type": "jenkins" + }, + "_type": "jenkins", + "sort": [ + 1416874637694 + ] + }, + { + "_id": "xB-pyv4bTduyzJMidruLsg", + "_index": "logstash-2014.11.25", + "_score": null, + "_source": { + "@timestamp": "2014-11-25T00:17:01.747+00:00", + "@version": "1", + "build_branch": "feature/lbaasv2", + "build_change": "123485", + "build_master": "jenkins05.openstack.org", + "build_name": "gate-tempest-dsvm-neutron-full-2", + "build_node": "devstack-trusty-rax-iad-36193", + "build_patchset": "9", + "build_queue": "gate", + "build_ref": "refs/zuul/feature/lbaasv2/Zd1b987c3d3be4e4988dfee463dded5c9", + "build_short_uuid": "627595d", + "build_status": "FAILURE", + "build_uuid": "627595de96f745abbc28f737b0c6df02", + "error_pr": -7.9576, + "filename": "console.html", + "host": "127.0.0.1:56890", + "log_url": "http://logs.openstack.org/85/123485/9/gate/gate-tempest-dsvm-neutron-full-2/627595d/console.html", + "message": "Looks like the node went offline during the build. Check the slave log for the details.FATAL: /var/lib/jenkins/logs/slaves/devstack-trusty-rax-iad-36193/slave.log (No such file or directory)", + "project": "openstack/neutron", + "received_at": "2014-11-25 00:19:08 UTC", + "tags": [ + "console.html", + "console" + ], + "type": "jenkins" + }, + "_type": "jenkins", + "sort": [ + 1416874621747 + ] + }, + { + "_id": "15i3H2LDQxmoacH6gaMA2g", + "_index": "logstash-2014.11.25", + "_score": null, + "_source": { + "@timestamp": "2014-11-25T00:15:33.308+00:00", + "@version": "1", + "build_branch": "master", + "build_change": "135699", + "build_master": "jenkins05.openstack.org", + "build_name": "gate-nova-pylint", + "build_node": "bare-trusty-hpcloud-b1-36271", + "build_patchset": "5", + "build_queue": "check", + "build_ref": "refs/zuul/master/Z230d2690308d423c99670ed9ec699102", + "build_short_uuid": "8cffc61", + "build_status": "FAILURE", + "build_uuid": "8cffc6180eb64e9db247b0e1f43a0423", + "error_pr": -7.9852, + "filename": "console.html", + "host": "127.0.0.1:56890", + "log_url": "http://logs.openstack.org/99/135699/5/check/gate-nova-pylint/8cffc61/console.html", + "message": "Looks like the node went offline during the build. Check the slave log for the details.FATAL: /var/lib/jenkins/logs/slaves/bare-trusty-hpcloud-b1-36271/slave.log (No such file or directory)", + "project": "openstack/nova", + "received_at": "2014-11-25 00:15:53 UTC", + "tags": [ + "console.html", + "console" + ], + "type": "jenkins" + }, + "_type": "jenkins", + "sort": [ + 1416874533308 + ] + }, + { + "_id": "3ac3GSLbT0y3N1S_FPnN2w", + "_index": "logstash-2014.11.25", + "_score": null, + "_source": { + "@timestamp": "2014-11-25T00:14:36.422+00:00", + "@version": "1", + "build_branch": "master", + "build_change": "135639", + "build_master": "jenkins03.openstack.org", + "build_name": "check-devstack-dsvm-cells", + "build_node": "devstack-trusty-rax-iad-36318", + "build_patchset": "3", + "build_queue": "check", + "build_ref": "refs/zuul/master/Zb4212273ec084f549a5aec9568fbe725", + "build_short_uuid": "87b2cc4", + "build_status": "FAILURE", + "build_uuid": "87b2cc4ebf694e0faf1615cbd93e781f", + "filename": "console.html", + "host": "127.0.0.1:56902", + "log_url": "http://logs.openstack.org/39/135639/3/check/check-devstack-dsvm-cells/87b2cc4/console.html", + "message": "Looks like the node went offline during the build. Check the slave log for the details.FATAL: /var/lib/jenkins/logs/slaves/devstack-trusty-rax-iad-36318/slave.log (No such file or directory)", + "project": "openstack/ceilometer", + "received_at": "2014-11-25 00:15:26 UTC", + "tags": [ + "console.html", + "console" + ], + "type": "jenkins" + }, + "_type": "jenkins", + "sort": [ + 1416874476422 + ] + }, + { + "_id": "2QQ57chVTkS5K5dmCL_yjg", + "_index": "logstash-2014.11.25", + "_score": null, + "_source": { + "@timestamp": "2014-11-25T00:14:35.747+00:00", + "@version": "1", + "build_branch": "master", + "build_change": "136035", + "build_master": "jenkins06.openstack.org", + "build_name": "gate-neutron-python27", + "build_node": "bare-trusty-hpcloud-b3-36300", + "build_patchset": "4", + "build_queue": "gate", + "build_ref": "refs/zuul/master/Z829cc876fbe0440e9f3b593a81d3dc28", + "build_short_uuid": "4a914c5", + "build_status": "FAILURE", + "build_uuid": "4a914c5ff206414d8249d4bcbfb5a173", + "filename": "console.html", + "host": "127.0.0.1:56890", + "log_url": "http://logs.openstack.org/35/136035/4/gate/gate-neutron-python27/4a914c5/console.html", + "message": "Looks like the node went offline during the build. Check the slave log for the details.FATAL: /var/lib/jenkins/logs/slaves/bare-trusty-hpcloud-b3-36300/slave.log (No such file or directory)", + "project": "openstack/neutron", + "received_at": "2014-11-25 00:15:53 UTC", + "tags": [ + "console.html", + "console" + ], + "type": "jenkins" + }, + "_type": "jenkins", + "sort": [ + 1416874475747 + ] + }, + { + "_id": "mhTtLcAjSsC9KsSid6TGew", + "_index": "logstash-2014.11.25", + "_score": null, + "_source": { + "@timestamp": "2014-11-25T00:14:24.589+00:00", + "@version": "1", + "build_branch": "stable/icehouse", + "build_change": "135903", + "build_master": "jenkins06.openstack.org", + "build_name": "gate-neutron-python26", + "build_node": "bare-centos6-rax-iad-36267", + "build_patchset": "1", + "build_queue": "gate", + "build_ref": "refs/zuul/stable/icehouse/Z49e08ce07996491dae5bdfc4917f47ba", + "build_short_uuid": "1bac76f", + "build_status": "FAILURE", + "build_uuid": "1bac76f740e7419e843752f933aaff39", + "error_pr": -8.0009, + "filename": "console.html", + "host": "127.0.0.1:56890", + "log_url": "http://logs.openstack.org/03/135903/1/gate/gate-neutron-python26/1bac76f/console.html", + "message": "Looks like the node went offline during the build. Check the slave log for the details.FATAL: /var/lib/jenkins/logs/slaves/bare-centos6-rax-iad-36267/slave.log (No such file or directory)", + "project": "openstack/neutron", + "received_at": "2014-11-25 00:14:31 UTC", + "tags": [ + "console.html", + "console" + ], + "type": "jenkins" + }, + "_type": "jenkins", + "sort": [ + 1416874464589 + ] + }, + { + "_id": "K3hR37TpTAOrplbWbl1kLQ", + "_index": "logstash-2014.11.25", + "_score": null, + "_source": { + "@timestamp": "2014-11-25T00:14:18.386+00:00", + "@version": "1", + "build_branch": "master", + "build_change": "116186", + "build_master": "jenkins04.openstack.org", + "build_name": "gate-cinder-pylint", + "build_node": "bare-trusty-hpcloud-b5-36347", + "build_patchset": "31", + "build_queue": "check", + "build_ref": "refs/zuul/master/Zcf7ceed90f634964b401cf4bf323cf4b", + "build_short_uuid": "4312152", + "build_status": "FAILURE", + "build_uuid": "431215277ef34f0b9e32e48d40377e93", + "error_pr": -7.8924, + "filename": "console.html", + "host": "127.0.0.1:56890", + "log_url": "http://logs.openstack.org/86/116186/31/check/gate-cinder-pylint/4312152/console.html", + "message": "Looks like the node went offline during the build. Check the slave log for the details.FATAL: /var/lib/jenkins/logs/slaves/bare-trusty-hpcloud-b5-36347/slave.log (No such file or directory)", + "project": "openstack/cinder", + "received_at": "2014-11-25 00:14:20 UTC", + "tags": [ + "console.html", + "console" + ], + "type": "jenkins" + }, + "_type": "jenkins", + "sort": [ + 1416874458386 + ] + }, + { + "_id": "PFuT5e6KRdKJJllmrmt7fA", + "_index": "logstash-2014.11.25", + "_score": null, + "_source": { + "@timestamp": "2014-11-25T00:12:57.875+00:00", + "@version": "1", + "build_branch": "master", + "build_change": "135533", + "build_master": "jenkins04.openstack.org", + "build_name": "gate-tempest-dsvm-neutron-heat-slow", + "build_node": "devstack-trusty-rax-dfw-36302", + "build_patchset": "4", + "build_queue": "gate", + "build_ref": "refs/zuul/master/Z5ffc2853efbb46649380249ea0aa04be", + "build_short_uuid": "72f9989", + "build_status": "FAILURE", + "build_uuid": "72f9989ffa334743b07dc10336b78adf", + "error_pr": -7.9954, + "filename": "console.html", + "host": "127.0.0.1:56890", + "log_url": "http://logs.openstack.org/33/135533/4/gate/gate-tempest-dsvm-neutron-heat-slow/72f9989/console.html", + "message": "Looks like the node went offline during the build. Check the slave log for the details.FATAL: /var/lib/jenkins/logs/slaves/devstack-trusty-rax-dfw-36302/slave.log (No such file or directory)", + "project": "openstack/neutron", + "received_at": "2014-11-25 00:13:04 UTC", + "tags": [ + "console.html", + "console" + ], + "type": "jenkins" + }, + "_type": "jenkins", + "sort": [ + 1416874377875 + ] + }, + { + "_id": "XPx5L8j2TquOrvjRyjIzIQ", + "_index": "logstash-2014.11.25", + "_score": null, + "_source": { + "@timestamp": "2014-11-25T00:12:09.850+00:00", + "@version": "1", + "build_branch": "master", + "build_change": "136687", + "build_master": "jenkins05.openstack.org", + "build_name": "gate-tempest-dsvm-neutron-large-ops", + "build_node": "devstack-trusty-hpcloud-b1-36277", + "build_patchset": "1", + "build_queue": "gate", + "build_ref": "refs/zuul/master/Z13faea4c65884293ba52592824ccd9d8", + "build_short_uuid": "981613e", + "build_status": "FAILURE", + "build_uuid": "981613e27c1b416c9bfb5b1f57853ed0", + "error_pr": -7.9907, + "filename": "console.html", + "host": "127.0.0.1:56890", + "log_url": "http://logs.openstack.org/87/136687/1/gate/gate-tempest-dsvm-neutron-large-ops/981613e/console.html", + "message": "Looks like the node went offline during the build. Check the slave log for the details.FATAL: /var/lib/jenkins/logs/slaves/devstack-trusty-hpcloud-b1-36277/slave.log (No such file or directory)", + "project": "openstack/neutron", + "received_at": "2014-11-25 00:12:32 UTC", + "tags": [ + "console.html", + "console" + ], + "type": "jenkins" + }, + "_type": "jenkins", + "sort": [ + 1416874329850 + ] + }, + { + "_id": "cgJoiVxnSnCxRy56FbFjmw", + "_index": "logstash-2014.11.25", + "_score": null, + "_source": { + "@timestamp": "2014-11-25T00:11:32.950+00:00", + "@version": "1", + "build_branch": "master", + "build_change": "116186", + "build_master": "jenkins01.openstack.org", + "build_name": "gate-cinder-python27", + "build_node": "bare-trusty-rax-dfw-36333", + "build_patchset": "31", + "build_queue": "check", + "build_ref": "refs/zuul/master/Zcf7ceed90f634964b401cf4bf323cf4b", + "build_short_uuid": "e1e36e6", + "build_status": "FAILURE", + "build_uuid": "e1e36e6cf7c048b4bef72cbb6defdbf3", + "error_pr": -7.9887, + "filename": "console.html", + "host": "127.0.0.1:56890", + "log_url": "http://logs.openstack.org/86/116186/31/check/gate-cinder-python27/e1e36e6/console.html", + "message": "Looks like the node went offline during the build. Check the slave log for the details.FATAL: /var/lib/jenkins/logs/slaves/bare-trusty-rax-dfw-36333/slave.log (No such file or directory)", + "project": "openstack/cinder", + "received_at": "2014-11-25 00:11:47 UTC", + "tags": [ + "console.html", + "console" + ], + "type": "jenkins" + }, + "_type": "jenkins", + "sort": [ + 1416874292950 + ] + }, + { + "_id": "RXAa5-N_QD6H4Ts77KOUWQ", + "_index": "logstash-2014.11.25", + "_score": null, + "_source": { + "@timestamp": "2014-11-25T00:11:13.034+00:00", + "@version": "1", + "build_branch": "master", + "build_change": "136687", + "build_master": "jenkins03.openstack.org", + "build_name": "gate-tempest-dsvm-neutron-heat-slow", + "build_node": "devstack-trusty-hpcloud-b2-36278", + "build_patchset": "1", + "build_queue": "gate", + "build_ref": "refs/zuul/master/Z13faea4c65884293ba52592824ccd9d8", + "build_short_uuid": "cfc90e5", + "build_status": "FAILURE", + "build_uuid": "cfc90e5659a94da4b4e00053b1cb4681", + "error_pr": -7.9816, + "filename": "console.html", + "host": "127.0.0.1:56890", + "log_url": "http://logs.openstack.org/87/136687/1/gate/gate-tempest-dsvm-neutron-heat-slow/cfc90e5/console.html", + "message": "Looks like the node went offline during the build. Check the slave log for the details.FATAL: /var/lib/jenkins/logs/slaves/devstack-trusty-hpcloud-b2-36278/slave.log (No such file or directory)", + "project": "openstack/neutron", + "received_at": "2014-11-25 00:11:46 UTC", + "tags": [ + "console.html", + "console" + ], + "type": "jenkins" + }, + "_type": "jenkins", + "sort": [ + 1416874273034 + ] + }, + { + "_id": "y3aa2ZBkQmuORx8VdGsPgg", + "_index": "logstash-2014.11.25", + "_score": null, + "_source": { + "@timestamp": "2014-11-25T00:11:12.416+00:00", + "@version": "1", + "build_branch": "master", + "build_change": "136013", + "build_master": "jenkins02.openstack.org", + "build_name": "gate-grenade-dsvm-partial-ncpu", + "build_node": "devstack-trusty-rax-dfw-36219", + "build_patchset": "2", + "build_queue": "gate", + "build_ref": "refs/zuul/master/Zdf0ac818973d4c91bbf6d104da6aeeeb", + "build_short_uuid": "aef5cff", + "build_status": "FAILURE", + "build_uuid": "aef5cff30a7b4f1490946dd51f905590", + "error_pr": -7.9663, + "filename": "console.html", + "host": "127.0.0.1:56890", + "log_url": "http://logs.openstack.org/13/136013/2/gate/gate-grenade-dsvm-partial-ncpu/aef5cff/console.html", + "message": "Looks like the node went offline during the build. Check the slave log for the details.FATAL: /var/lib/jenkins/logs/slaves/devstack-trusty-rax-dfw-36219/slave.log (No such file or directory)", + "project": "openstack/nova", + "received_at": "2014-11-25 00:11:29 UTC", + "tags": [ + "console.html", + "console" + ], + "type": "jenkins" + }, + "_type": "jenkins", + "sort": [ + 1416874272416 + ] + }, + { + "_id": "BKsla6PhScWpj16oTMcBtg", + "_index": "logstash-2014.11.25", + "_score": null, + "_source": { + "@timestamp": "2014-11-25T00:11:11.815+00:00", + "@version": "1", + "build_branch": "master", + "build_change": "135533", + "build_master": "jenkins04.openstack.org", + "build_name": "gate-neutron-dsvm-functional", + "build_node": "devstack-trusty-hpcloud-b5-36313", + "build_patchset": "4", + "build_queue": "gate", + "build_ref": "refs/zuul/master/Z5ffc2853efbb46649380249ea0aa04be", + "build_short_uuid": "00be9e3", + "build_status": "FAILURE", + "build_uuid": "00be9e3b44bd42c4902c1486d8e580ea", + "error_pr": -8.1316, + "filename": "console.html", + "host": "127.0.0.1:47661", + "log_url": "http://logs.openstack.org/33/135533/4/gate/gate-neutron-dsvm-functional/00be9e3/console.html", + "message": "Looks like the node went offline during the build. Check the slave log for the details.FATAL: /var/lib/jenkins/logs/slaves/devstack-trusty-hpcloud-b5-36313/slave.log (No such file or directory)", + "project": "openstack/neutron", + "received_at": "2014-11-25 00:11:36 UTC", + "tags": [ + "console.html", + "console" + ], + "type": "jenkins" + }, + "_type": "jenkins", + "sort": [ + 1416874271815 + ] + }, + { + "_id": "0VEfyN4gQtOL0wlOHAazgw", + "_index": "logstash-2014.11.25", + "_score": null, + "_source": { + "@timestamp": "2014-11-25T00:10:51.927+00:00", + "@version": "1", + "build_branch": "stable/icehouse", + "build_change": "136715", + "build_master": "jenkins04.openstack.org", + "build_name": "gate-neutron-pep8", + "build_node": "bare-precise-rax-iad-36349", + "build_patchset": "1", + "build_queue": "gate", + "build_ref": "refs/zuul/stable/icehouse/Z4094f90b60914ed7bae8a2525e2b3eb7", + "build_short_uuid": "301711c", + "build_status": "FAILURE", + "build_uuid": "301711cefea4487b9197f1b37fc4ca03", + "error_pr": -7.968, + "filename": "console.html", + "host": "127.0.0.1:56890", + "log_url": "http://logs.openstack.org/15/136715/1/gate/gate-neutron-pep8/301711c/console.html", + "message": "Looks like the node went offline during the build. Check the slave log for the details.FATAL: /var/lib/jenkins/logs/slaves/bare-precise-rax-iad-36349/slave.log (No such file or directory)", + "project": "openstack/neutron", + "received_at": "2014-11-25 00:10:54 UTC", + "tags": [ + "console.html", + "console" + ], + "type": "jenkins" + }, + "_type": "jenkins", + "sort": [ + 1416874251927 + ] + }, + { + "_id": "TOqCtL5hQ7mAIZyKydZnow", + "_index": "logstash-2014.11.24", + "_score": null, + "_source": { + "@timestamp": "2014-11-24T23:08:04.779+00:00", + "@version": "1", + "build_branch": "feature/lbaasv2", + "build_change": "123485", + "build_master": "jenkins02.openstack.org", + "build_name": "gate-tempest-dsvm-neutron-large-ops", + "build_node": "devstack-trusty-rax-dfw-35746", + "build_patchset": "9", + "build_queue": "gate", + "build_ref": "refs/zuul/feature/lbaasv2/Z730ffe434cd8417c96d512a21be309c3", + "build_short_uuid": "1e1c4c2", + "build_status": "FAILURE", + "build_uuid": "1e1c4c269ea849efa733444d7cb907a5", + "error_pr": -9.1817, + "filename": "console.html", + "host": "127.0.0.1:56185", + "log_url": "http://logs.openstack.org/85/123485/9/gate/gate-tempest-dsvm-neutron-large-ops/1e1c4c2/console.html", + "message": "Looks like the node went offline during the build. Check the slave log for the details.FATAL: /var/lib/jenkins/logs/slaves/devstack-trusty-rax-dfw-35746/slave.log (No such file or directory)", + "project": "openstack/neutron", + "received_at": "2014-11-24 23:14:07 UTC", + "tags": [ + "console.html", + "console" + ], + "type": "jenkins" + }, + "_type": "jenkins", + "sort": [ + 1416870484779 + ] + }, + { + "_id": "SZ9g5cXqQeCF9DTUnDebCQ", + "_index": "logstash-2014.11.24", + "_score": null, + "_source": { + "@timestamp": "2014-11-24T23:07:15.587+00:00", + "@version": "1", + "build_branch": "master", + "build_change": "135874", + "build_master": "jenkins03.openstack.org", + "build_name": "check-tempest-dsvm-neutron-full", + "build_node": "devstack-trusty-rax-dfw-35598", + "build_patchset": "6", + "build_queue": "check", + "build_ref": "refs/zuul/master/Zb148d3e42df5471f9efc37067107cfa1", + "build_short_uuid": "9c9a59f", + "build_status": "FAILURE", + "build_uuid": "9c9a59fcc2384f1da7d320edd5e0a50c", + "filename": "console.html", + "host": "127.0.0.1:36511", + "log_url": "http://logs.openstack.org/74/135874/6/check/check-tempest-dsvm-neutron-full/9c9a59f/console.html", + "message": "Looks like the node went offline during the build. Check the slave log for the details.FATAL: /var/lib/jenkins/logs/slaves/devstack-trusty-rax-dfw-35598/slave.log (No such file or directory)", + "project": "openstack/cinder", + "received_at": "2014-11-24 23:12:15 UTC", + "tags": [ + "console.html", + "console" + ], + "type": "jenkins" + }, + "_type": "jenkins", + "sort": [ + 1416870435587 + ] + }, + { + "_id": "eQYixxeTTS-4PEGWnk1s6w", + "_index": "logstash-2014.11.24", + "_score": null, + "_source": { + "@timestamp": "2014-11-24T23:07:15.526+00:00", + "@version": "1", + "build_branch": "feature/lbaasv2", + "build_change": "123485", + "build_master": "jenkins06.openstack.org", + "build_name": "gate-tempest-dsvm-neutron-heat-slow", + "build_node": "devstack-trusty-rax-dfw-35739", + "build_patchset": "9", + "build_queue": "gate", + "build_ref": "refs/zuul/feature/lbaasv2/Z730ffe434cd8417c96d512a21be309c3", + "build_short_uuid": "9076e36", + "build_status": "FAILURE", + "build_uuid": "9076e36c7cab479aa4ea7679135eb37d", + "error_pr": -7.6027, + "filename": "console.html", + "host": "127.0.0.1:51048", + "log_url": "http://logs.openstack.org/85/123485/9/gate/gate-tempest-dsvm-neutron-heat-slow/9076e36/console.html", + "message": "Looks like the node went offline during the build. Check the slave log for the details.FATAL: /var/lib/jenkins/logs/slaves/devstack-trusty-rax-dfw-35739/slave.log (No such file or directory)", + "project": "openstack/neutron", + "received_at": "2014-11-24 23:11:48 UTC", + "tags": [ + "console.html", + "console" + ], + "type": "jenkins" + }, + "_type": "jenkins", + "sort": [ + 1416870435526 + ] + }, + { + "_id": "EWrf4gafT9CwI5fJpZR1zQ", + "_index": "logstash-2014.11.24", + "_score": null, + "_source": { + "@timestamp": "2014-11-24T23:06:41.499+00:00", + "@version": "1", + "build_branch": "stable/juno", + "build_change": "136497", + "build_master": "jenkins07.openstack.org", + "build_name": "gate-tempest-dsvm-neutron-pg-full", + "build_node": "devstack-trusty-rax-dfw-35557", + "build_patchset": "1", + "build_queue": "gate", + "build_ref": "refs/zuul/stable/juno/Z3cb4d4c28b7148808804bde878d0e9f8", + "build_short_uuid": "a1f8cf2", + "build_status": "FAILURE", + "build_uuid": "a1f8cf24a77a45b7b981322296b26837", + "error_pr": -8.4152, + "filename": "console.html", + "host": "127.0.0.1:45758", + "log_url": "http://logs.openstack.org/97/136497/1/gate/gate-tempest-dsvm-neutron-pg-full/a1f8cf2/console.html", + "message": "Looks like the node went offline during the build. Check the slave log for the details.FATAL: /var/lib/jenkins/logs/slaves/devstack-trusty-rax-dfw-35557/slave.log (No such file or directory)", + "project": "openstack/neutron", + "received_at": "2014-11-24 23:10:14 UTC", + "tags": [ + "console.html", + "console" + ], + "type": "jenkins" + }, + "_type": "jenkins", + "sort": [ + 1416870401499 + ] + }, + { + "_id": "2QZD7avmQDKoX1mvtL4gqg", + "_index": "logstash-2014.11.24", + "_score": null, + "_source": { + "@timestamp": "2014-11-24T23:06:16.809+00:00", + "@version": "1", + "build_branch": "stable/juno", + "build_change": "136497", + "build_master": "jenkins04.openstack.org", + "build_name": "gate-tempest-dsvm-neutron-2", + "build_node": "devstack-trusty-rax-dfw-35583", + "build_patchset": "1", + "build_queue": "gate", + "build_ref": "refs/zuul/stable/juno/Z3cb4d4c28b7148808804bde878d0e9f8", + "build_short_uuid": "c8f9ec7", + "build_status": "FAILURE", + "build_uuid": "c8f9ec7524e94328b19cfcc1c181ca53", + "filename": "console.html", + "host": "127.0.0.1:35471", + "log_url": "http://logs.openstack.org/97/136497/1/gate/gate-tempest-dsvm-neutron-2/c8f9ec7/console.html", + "message": "Looks like the node went offline during the build. Check the slave log for the details.FATAL: /var/lib/jenkins/logs/slaves/devstack-trusty-rax-dfw-35583/slave.log (No such file or directory)", + "project": "openstack/neutron", + "received_at": "2014-11-24 23:08:55 UTC", + "tags": [ + "console.html", + "console" + ], + "type": "jenkins" + }, + "_type": "jenkins", + "sort": [ + 1416870376809 + ] + }, + { + "_id": "RjWgPekmTyayQzIOQtjj0A", + "_index": "logstash-2014.11.24", + "_score": null, + "_source": { + "@timestamp": "2014-11-24T23:06:10.151+00:00", + "@version": "1", + "build_branch": "master", + "build_change": "136891", + "build_master": "jenkins05.openstack.org", + "build_name": "check-tripleo-ironic-overcloud-f20-nonha", + "build_node": "tripleo-f20-tripleo-test-cloud-rh1-34858", + "build_patchset": "1", + "build_queue": "check-tripleo", + "build_ref": "refs/zuul/master/Zbf112501c0a840b9a50043870544d17c", + "build_short_uuid": "b0cf542", + "build_status": "FAILURE", + "build_uuid": "b0cf54269ba8453f938b4b446d38e035", + "filename": "console.html", + "host": "127.0.0.1:36501", + "log_url": "http://logs.openstack.org/91/136891/1/check-tripleo/check-tripleo-ironic-overcloud-f20-nonha/b0cf542/console.html", + "message": "Looks like the node went offline during the build. Check the slave log for the details.FATAL: /var/lib/jenkins/logs/slaves/tripleo-f20-tripleo-test-cloud-rh1-34858/slave.log (No such file or directory)", + "project": "openstack/tripleo-heat-templates", + "received_at": "2014-11-24 23:11:11 UTC", + "tags": [ + "console.html", + "console" + ], + "type": "jenkins" + }, + "_type": "jenkins", + "sort": [ + 1416870370151 + ] + }, + { + "_id": "368eWmgFQqi4vEkMB4peLg", + "_index": "logstash-2014.11.24", + "_score": null, + "_source": { + "@timestamp": "2014-11-24T23:05:54.941+00:00", + "@version": "1", + "build_branch": "master", + "build_change": "136876", + "build_master": "jenkins05.openstack.org", + "build_name": "check-tempest-dsvm-postgres-full", + "build_node": "devstack-trusty-hpcloud-b2-35397", + "build_patchset": "1", + "build_queue": "check", + "build_ref": "refs/zuul/master/Zf6e92450e7924dab94bbecaa66ac3872", + "build_short_uuid": "f49d063", + "build_status": "FAILURE", + "build_uuid": "f49d063a8f794fa39e46196736a4dea8", + "error_pr": -7.6286, + "filename": "console.html", + "host": "127.0.0.1:56890", + "log_url": "http://logs.openstack.org/76/136876/1/check/check-tempest-dsvm-postgres-full/f49d063/console.html", + "message": "Looks like the node went offline during the build. Check the slave log for the details.FATAL: /var/lib/jenkins/logs/slaves/devstack-trusty-hpcloud-b2-35397/slave.log (No such file or directory)", + "project": "openstack/horizon", + "received_at": "2014-11-24 23:08:55 UTC", + "tags": [ + "console.html", + "console" + ], + "type": "jenkins" + }, + "_type": "jenkins", + "sort": [ + 1416870354941 + ] + }, + { + "_id": "fuy8gpHIRiW-CQi1TKajUQ", + "_index": "logstash-2014.11.24", + "_score": null, + "_source": { + "@timestamp": "2014-11-24T23:05:52.125+00:00", + "@version": "1", + "build_branch": "stable/juno", + "build_change": "131780", + "build_master": "jenkins01.openstack.org", + "build_name": "check-tempest-dsvm-neutron-full", + "build_node": "devstack-trusty-rax-dfw-35695", + "build_patchset": "3", + "build_queue": "check", + "build_ref": "refs/zuul/stable/juno/Z207131a43e2e42ae864a3e3e5ebdf058", + "build_short_uuid": "4570167", + "build_status": "FAILURE", + "build_uuid": "4570167295184dda9ebe07359e99ae61", + "error_pr": -7.9455, + "filename": "console.html", + "host": "127.0.0.1:56886", + "log_url": "http://logs.openstack.org/80/131780/3/check/check-tempest-dsvm-neutron-full/4570167/console.html", + "message": "Looks like the node went offline during the build. Check the slave log for the details.FATAL: /var/lib/jenkins/logs/slaves/devstack-trusty-rax-dfw-35695/slave.log (No such file or directory)", + "project": "openstack/horizon", + "received_at": "2014-11-24 23:11:50 UTC", + "tags": [ + "console.html", + "console" + ], + "type": "jenkins" + }, + "_type": "jenkins", + "sort": [ + 1416870352125 + ] + }, + { + "_id": "5S4_YsbMQvCIXDFSGCpUbQ", + "_index": "logstash-2014.11.24", + "_score": null, + "_source": { + "@timestamp": "2014-11-24T23:05:41.704+00:00", + "@version": "1", + "build_branch": "feature/lbaasv2", + "build_change": "123485", + "build_master": "jenkins07.openstack.org", + "build_name": "gate-tempest-dsvm-neutron-heat-slow", + "build_node": "devstack-trusty-rax-iad-35630", + "build_patchset": "9", + "build_queue": "gate", + "build_ref": "refs/zuul/feature/lbaasv2/Zbac151662e1e4ac888c5792d6bf350ea", + "build_short_uuid": "e9cbac7", + "build_status": "FAILURE", + "build_uuid": "e9cbac7da709429d85f1d6c379155128", + "error_pr": -8.1262, + "filename": "console.html", + "host": "127.0.0.1:47688", + "log_url": "http://logs.openstack.org/85/123485/9/gate/gate-tempest-dsvm-neutron-heat-slow/e9cbac7/console.html", + "message": "Looks like the node went offline during the build. Check the slave log for the details.FATAL: /var/lib/jenkins/logs/slaves/devstack-trusty-rax-iad-35630/slave.log (No such file or directory)", + "project": "openstack/neutron", + "received_at": "2014-11-24 23:07:39 UTC", + "tags": [ + "console.html", + "console" + ], + "type": "jenkins" + }, + "_type": "jenkins", + "sort": [ + 1416870341704 + ] + }, + { + "_id": "eLTv50znS86Eh-hoGHQtmg", + "_index": "logstash-2014.11.24", + "_score": null, + "_source": { + "@timestamp": "2014-11-24T23:05:34.442+00:00", + "@version": "1", + "build_branch": "master", + "build_change": "135186", + "build_master": "jenkins02.openstack.org", + "build_name": "check-tempest-dsvm-neutron-full", + "build_node": "devstack-trusty-hpcloud-b5-35118", + "build_patchset": "5", + "build_queue": "check", + "build_ref": "refs/zuul/master/Z51535d76fb074c88b719a135c45e3ad4", + "build_short_uuid": "a575678", + "build_status": "FAILURE", + "build_uuid": "a5756782087344db876946dac05a442b", + "error_pr": -8.9975, + "filename": "console.html", + "host": "127.0.0.1:44751", + "log_url": "http://logs.openstack.org/86/135186/5/check/check-tempest-dsvm-neutron-full/a575678/console.html", + "message": "Looks like the node went offline during the build. Check the slave log for the details.FATAL: /var/lib/jenkins/logs/slaves/devstack-trusty-hpcloud-b5-35118/slave.log (No such file or directory)", + "project": "openstack/ceilometer", + "received_at": "2014-11-24 23:08:55 UTC", + "tags": [ + "console.html", + "console" + ], + "type": "jenkins" + }, + "_type": "jenkins", + "sort": [ + 1416870334442 + ] + }, + { + "_id": "ktrxHyz4SoSDX9XE7NOz6w", + "_index": "logstash-2014.11.24", + "_score": null, + "_source": { + "@timestamp": "2014-11-24T23:05:33.177+00:00", + "@version": "1", + "build_branch": "master", + "build_change": "136219", + "build_master": "jenkins03.openstack.org", + "build_name": "gate-grenade-dsvm", + "build_node": "devstack-trusty-hpcloud-b4-35471", + "build_patchset": "1", + "build_queue": "gate", + "build_ref": "refs/zuul/master/Z64b0ade0e57b469191e3ed86fe3dc47e", + "build_short_uuid": "2d870ed", + "build_status": "FAILURE", + "build_uuid": "2d870ed036a745098fce802a99e2d583", + "error_pr": -7.1576, + "filename": "console.html", + "host": "127.0.0.1:35466", + "log_url": "http://logs.openstack.org/19/136219/1/gate/gate-grenade-dsvm/2d870ed/console.html", + "message": "Looks like the node went offline during the build. Check the slave log for the details.FATAL: /var/lib/jenkins/logs/slaves/devstack-trusty-hpcloud-b4-35471/slave.log (No such file or directory)", + "project": "openstack/trove", + "received_at": "2014-11-24 23:07:49 UTC", + "tags": [ + "console.html", + "console" + ], + "type": "jenkins" + }, + "_type": "jenkins", + "sort": [ + 1416870333177 + ] + }, + { + "_id": "qU-mvgthSV-XN1cmTSrGsg", + "_index": "logstash-2014.11.24", + "_score": null, + "_source": { + "@timestamp": "2014-11-24T23:05:25.320+00:00", + "@version": "1", + "build_branch": "master", + "build_change": "136772", + "build_master": "jenkins06.openstack.org", + "build_name": "check-tempest-dsvm-neutron-full", + "build_node": "devstack-trusty-rax-dfw-35564", + "build_patchset": "2", + "build_queue": "check", + "build_ref": "refs/zuul/master/Z208e92672b8146bb8300fb2e1199effe", + "build_short_uuid": "2b214e2", + "build_status": "FAILURE", + "build_uuid": "2b214e244afe4bca8fbc7eebffedde31", + "error_pr": -8.3698, + "filename": "console.html", + "host": "127.0.0.1:54433", + "log_url": "http://logs.openstack.org/72/136772/2/check/check-tempest-dsvm-neutron-full/2b214e2/console.html", + "message": "Looks like the node went offline during the build. Check the slave log for the details.FATAL: /var/lib/jenkins/logs/slaves/devstack-trusty-rax-dfw-35564/slave.log (No such file or directory)", + "project": "openstack/nova", + "received_at": "2014-11-24 23:17:28 UTC", + "tags": [ + "console.html", + "console" + ], + "type": "jenkins" + }, + "_type": "jenkins", + "sort": [ + 1416870325320 + ] + }, + { + "_id": "b-mdCbjfTFye6CVNqsn3bA", + "_index": "logstash-2014.11.24", + "_score": null, + "_source": { + "@timestamp": "2014-11-24T23:05:21.335+00:00", + "@version": "1", + "build_branch": "master", + "build_change": "136815", + "build_master": "jenkins03.openstack.org", + "build_name": "gate-tempest-dsvm-large-ops", + "build_node": "devstack-trusty-hpcloud-b5-35512", + "build_patchset": "2", + "build_queue": "check", + "build_ref": "refs/zuul/master/Z4c4f5c2ab55745baa73a69105706da02", + "build_short_uuid": "8f9d545", + "build_status": "FAILURE", + "build_uuid": "8f9d5458065d438b96bbd7f4d05908df", + "error_pr": -8.8167, + "filename": "console.html", + "host": "127.0.0.1:33978", + "log_url": "http://logs.openstack.org/15/136815/2/check/gate-tempest-dsvm-large-ops/8f9d545/console.html", + "message": "Looks like the node went offline during the build. Check the slave log for the details.FATAL: /var/lib/jenkins/logs/slaves/devstack-trusty-hpcloud-b5-35512/slave.log (No such file or directory)", + "project": "openstack/tempest", + "received_at": "2014-11-24 23:06:27 UTC", + "tags": [ + "console.html", + "console" + ], + "type": "jenkins" + }, + "_type": "jenkins", + "sort": [ + 1416870321335 + ] + }, + { + "_id": "09oBUO5HSOatPt8-XdaCZw", + "_index": "logstash-2014.11.24", + "_score": null, + "_source": { + "@timestamp": "2014-11-24T23:05:07.452+00:00", + "@version": "1", + "build_branch": "feature/lbaasv2", + "build_change": "126244", + "build_master": "jenkins03.openstack.org", + "build_name": "check-tempest-dsvm-neutron-pg-full", + "build_node": "devstack-trusty-rax-dfw-35596", + "build_patchset": "4", + "build_queue": "check", + "build_ref": "refs/zuul/feature/lbaasv2/Z37a2fcfdd54a431b8797c891a108673d", + "build_short_uuid": "8773dfe", + "build_status": "FAILURE", + "build_uuid": "8773dfe6301d4ce093992e33a51343e2", + "filename": "console.html", + "host": "127.0.0.1:56902", + "log_url": "http://logs.openstack.org/44/126244/4/check/check-tempest-dsvm-neutron-pg-full/8773dfe/console.html", + "message": "Looks like the node went offline during the build. Check the slave log for the details.FATAL: /var/lib/jenkins/logs/slaves/devstack-trusty-rax-dfw-35596/slave.log (No such file or directory)", + "project": "openstack/neutron", + "received_at": "2014-11-24 23:11:47 UTC", + "tags": [ + "console.html", + "console" + ], + "type": "jenkins" + }, + "_type": "jenkins", + "sort": [ + 1416870307452 + ] + }, + { + "_id": "xZLXFtvNStCyFMVgTUPAaw", + "_index": "logstash-2014.11.24", + "_score": null, + "_source": { + "@timestamp": "2014-11-24T23:05:05.213+00:00", + "@version": "1", + "build_branch": "master", + "build_change": "136772", + "build_master": "jenkins03.openstack.org", + "build_name": "check-tempest-dsvm-postgres-full", + "build_node": "devstack-trusty-rax-dfw-35600", + "build_patchset": "2", + "build_queue": "check", + "build_ref": "refs/zuul/master/Z208e92672b8146bb8300fb2e1199effe", + "build_short_uuid": "3d3b659", + "build_status": "FAILURE", + "build_uuid": "3d3b659fb0d846dbb9c6788bc8a9e548", + "error_pr": -7.9398, + "filename": "console.html", + "host": "127.0.0.1:56890", + "log_url": "http://logs.openstack.org/72/136772/2/check/check-tempest-dsvm-postgres-full/3d3b659/console.html", + "message": "Looks like the node went offline during the build. Check the slave log for the details.FATAL: /var/lib/jenkins/logs/slaves/devstack-trusty-rax-dfw-35600/slave.log (No such file or directory)", + "project": "openstack/nova", + "received_at": "2014-11-24 23:06:48 UTC", + "tags": [ + "console.html", + "console" + ], + "type": "jenkins" + }, + "_type": "jenkins", + "sort": [ + 1416870305213 + ] + }, + { + "_id": "iKrYwDTJRkKuk2E7IDf0Hw", + "_index": "logstash-2014.11.24", + "_score": null, + "_source": { + "@timestamp": "2014-11-24T23:04:51.715+00:00", + "@version": "1", + "build_branch": "feature/lbaasv2", + "build_change": "126244", + "build_master": "jenkins04.openstack.org", + "build_name": "check-tempest-dsvm-neutron-pg", + "build_node": "devstack-trusty-rax-dfw-35593", + "build_patchset": "4", + "build_queue": "check", + "build_ref": "refs/zuul/feature/lbaasv2/Z37a2fcfdd54a431b8797c891a108673d", + "build_short_uuid": "fd67002", + "build_status": "FAILURE", + "build_uuid": "fd67002f7f654fe7b3f5b8df18f3079f", + "error_pr": -7.7391, + "filename": "console.html", + "host": "127.0.0.1:56905", + "log_url": "http://logs.openstack.org/44/126244/4/check/check-tempest-dsvm-neutron-pg/fd67002/console.html", + "message": "Looks like the node went offline during the build. Check the slave log for the details.FATAL: /var/lib/jenkins/logs/slaves/devstack-trusty-rax-dfw-35593/slave.log (No such file or directory)", + "project": "openstack/neutron", + "received_at": "2014-11-24 23:05:00 UTC", + "tags": [ + "console.html", + "console" + ], + "type": "jenkins" + }, + "_type": "jenkins", + "sort": [ + 1416870291715 + ] + }, + { + "_id": "bCqdG0zQTi-C82y8Maz_zQ", + "_index": "logstash-2014.11.24", + "_score": null, + "_source": { + "@timestamp": "2014-11-24T23:04:50.009+00:00", + "@version": "1", + "build_branch": "master", + "build_change": "134623", + "build_master": "jenkins07.openstack.org", + "build_name": "check-tempest-dsvm-docker", + "build_node": "devstack-trusty-hpcloud-b4-35451", + "build_patchset": "3", + "build_queue": "check", + "build_ref": "refs/zuul/master/Z34fe4766c66d411db29e8e85d8373bb0", + "build_short_uuid": "964bb0e", + "build_status": "FAILURE", + "build_uuid": "964bb0edc1cb44d5a190b5e45fe971ae", + "error_pr": -7.9649, + "filename": "console.html", + "host": "127.0.0.1:56902", + "log_url": "http://logs.openstack.org/23/134623/3/check/check-tempest-dsvm-docker/964bb0e/console.html", + "message": "Looks like the node went offline during the build. Check the slave log for the details.FATAL: /var/lib/jenkins/logs/slaves/devstack-trusty-hpcloud-b4-35451/slave.log (No such file or directory)", + "project": "openstack/nova", + "received_at": "2014-11-24 23:11:43 UTC", + "tags": [ + "console.html", + "console" + ], + "type": "jenkins" + }, + "_type": "jenkins", + "sort": [ + 1416870290009 + ] + }, + { + "_id": "qaWn-RdZS5WG9Q4q2XRXlg", + "_index": "logstash-2014.11.24", + "_score": null, + "_source": { + "@timestamp": "2014-11-24T23:04:43.950+00:00", + "@version": "1", + "build_branch": "master", + "build_change": "135503", + "build_master": "jenkins01.openstack.org", + "build_name": "check-tempest-dsvm-neutron-full", + "build_node": "devstack-trusty-hpcloud-b5-34924", + "build_patchset": "2", + "build_queue": "check", + "build_ref": "refs/zuul/master/Z6c7812a87041416296aba4ce8cf9a22b", + "build_short_uuid": "bf247cf", + "build_status": "FAILURE", + "build_uuid": "bf247cf4cff746ae92472f1d91ba80b9", + "error_pr": -8.3676, + "filename": "console.html", + "host": "127.0.0.1:54442", + "log_url": "http://logs.openstack.org/03/135503/2/check/check-tempest-dsvm-neutron-full/bf247cf/console.html", + "message": "Looks like the node went offline during the build. Check the slave log for the details.FATAL: /var/lib/jenkins/logs/slaves/devstack-trusty-hpcloud-b5-34924/slave.log (No such file or directory)", + "project": "openstack-dev/devstack", + "received_at": "2014-11-24 23:18:27 UTC", + "tags": [ + "console.html", + "console" + ], + "type": "jenkins" + }, + "_type": "jenkins", + "sort": [ + 1416870283950 + ] + }, + { + "_id": "G-xthF2aS5Cb4QTVoyRSVg", + "_index": "logstash-2014.11.24", + "_score": null, + "_source": { + "@timestamp": "2014-11-24T23:04:40.286+00:00", + "@version": "1", + "build_branch": "stable/juno", + "build_change": "131780", + "build_master": "jenkins04.openstack.org", + "build_name": "check-tempest-dsvm-neutron", + "build_node": "devstack-trusty-rax-iad-35644", + "build_patchset": "3", + "build_queue": "check", + "build_ref": "refs/zuul/stable/juno/Z207131a43e2e42ae864a3e3e5ebdf058", + "build_short_uuid": "fe3986c", + "build_status": "FAILURE", + "build_uuid": "fe3986cd35e54eccae04a323293f37f2", + "error_pr": -7.6222, + "filename": "console.html", + "host": "127.0.0.1:56890", + "log_url": "http://logs.openstack.org/80/131780/3/check/check-tempest-dsvm-neutron/fe3986c/console.html", + "message": "Looks like the node went offline during the build. Check the slave log for the details.FATAL: /var/lib/jenkins/logs/slaves/devstack-trusty-rax-iad-35644/slave.log (No such file or directory)", + "project": "openstack/horizon", + "received_at": "2014-11-24 23:06:47 UTC", + "tags": [ + "console.html", + "console" + ], + "type": "jenkins" + }, + "_type": "jenkins", + "sort": [ + 1416870280286 + ] + }, + { + "_id": "q1X_Kd33SrOzKRGrLYXMCA", + "_index": "logstash-2014.11.24", + "_score": null, + "_source": { + "@timestamp": "2014-11-24T23:04:25.561+00:00", + "@version": "1", + "build_branch": "master", + "build_change": "136587", + "build_master": "jenkins07.openstack.org", + "build_name": "check-tempest-dsvm-postgres-full", + "build_node": "devstack-trusty-rax-ord-35530", + "build_patchset": "3", + "build_queue": "check", + "build_ref": "refs/zuul/master/Z741b93ad6d374bd3921c22e149b59a47", + "build_short_uuid": "19073a6", + "build_status": "FAILURE", + "build_uuid": "19073a64ddc548dc8c11e7938a0fbf6c", + "error_pr": -7.9456, + "filename": "console.html", + "host": "127.0.0.1:56902", + "log_url": "http://logs.openstack.org/87/136587/3/check/check-tempest-dsvm-postgres-full/19073a6/console.html", + "message": "Looks like the node went offline during the build. Check the slave log for the details.FATAL: /var/lib/jenkins/logs/slaves/devstack-trusty-rax-ord-35530/slave.log (No such file or directory)", + "project": "openstack/swift", + "received_at": "2014-11-24 23:11:37 UTC", + "tags": [ + "console.html", + "console" + ], + "type": "jenkins" + }, + "_type": "jenkins", + "sort": [ + 1416870265561 + ] + }, + { + "_id": "uVMm4elKRvaxbfrjYFz3Zw", + "_index": "logstash-2014.11.24", + "_score": null, + "_source": { + "@timestamp": "2014-11-24T23:04:17.397+00:00", + "@version": "1", + "build_branch": "feature/lbaasv2", + "build_change": "123485", + "build_master": "jenkins03.openstack.org", + "build_name": "gate-neutron-python27", + "build_node": "bare-trusty-rax-dfw-33715", + "build_patchset": "9", + "build_queue": "gate", + "build_ref": "refs/zuul/feature/lbaasv2/Z730ffe434cd8417c96d512a21be309c3", + "build_short_uuid": "39592e2", + "build_status": "FAILURE", + "build_uuid": "39592e2607e04ba7b60e4a649bf1034a", + "error_pr": -7.9607, + "filename": "console.html", + "host": "127.0.0.1:56902", + "log_url": "http://logs.openstack.org/85/123485/9/gate/gate-neutron-python27/39592e2/console.html", + "message": "Looks like the node went offline during the build. Check the slave log for the details.FATAL: /var/lib/jenkins/logs/slaves/bare-trusty-rax-dfw-33715/slave.log (No such file or directory)", + "project": "openstack/neutron", + "received_at": "2014-11-24 23:11:30 UTC", + "tags": [ + "console.html", + "console" + ], + "type": "jenkins" + }, + "_type": "jenkins", + "sort": [ + 1416870257397 + ] + }, + { + "_id": "dpLb3tOPTumm6F2ImfsoLg", + "_index": "logstash-2014.11.24", + "_score": null, + "_source": { + "@timestamp": "2014-11-24T23:04:17.061+00:00", + "@version": "1", + "build_branch": "master", + "build_change": "134347", + "build_master": "jenkins05.openstack.org", + "build_name": "check-tempest-dsvm-neutron-full", + "build_node": "devstack-trusty-hpcloud-b2-35027", + "build_patchset": "4", + "build_queue": "check", + "build_ref": "refs/zuul/master/Z2232d6fc83bb43589e1d3d99c265e6fa", + "build_short_uuid": "aaadb13", + "build_status": "FAILURE", + "build_uuid": "aaadb1340de3439f97c99158ab6f9b41", + "error_pr": -7.9433, + "filename": "console.html", + "host": "127.0.0.1:56890", + "log_url": "http://logs.openstack.org/47/134347/4/check/check-tempest-dsvm-neutron-full/aaadb13/console.html", + "message": "Looks like the node went offline during the build. Check the slave log for the details.FATAL: /var/lib/jenkins/logs/slaves/devstack-trusty-hpcloud-b2-35027/slave.log (No such file or directory)", + "project": "openstack/swift", + "received_at": "2014-11-24 23:06:44 UTC", + "tags": [ + "console.html", + "console" + ], + "type": "jenkins" + }, + "_type": "jenkins", + "sort": [ + 1416870257061 + ] + }, + { + "_id": "ju9ByWYFSj-ZCJDV_RqAzA", + "_index": "logstash-2014.11.24", + "_score": null, + "_source": { + "@timestamp": "2014-11-24T23:03:57.513+00:00", + "@version": "1", + "build_branch": "master", + "build_change": "135874", + "build_master": "jenkins03.openstack.org", + "build_name": "check-tempest-dsvm-full", + "build_node": "devstack-trusty-rax-dfw-35604", + "build_patchset": "6", + "build_queue": "check", + "build_ref": "refs/zuul/master/Zb148d3e42df5471f9efc37067107cfa1", + "build_short_uuid": "c664328", + "build_status": "FAILURE", + "build_uuid": "c6643282efda4a24a2e2f944ac342999", + "error_pr": -7.9247, + "filename": "console.html", + "host": "127.0.0.1:56902", + "log_url": "http://logs.openstack.org/74/135874/6/check/check-tempest-dsvm-full/c664328/console.html", + "message": "Looks like the node went offline during the build. Check the slave log for the details.FATAL: /var/lib/jenkins/logs/slaves/devstack-trusty-rax-dfw-35604/slave.log (No such file or directory)", + "project": "openstack/cinder", + "received_at": "2014-11-24 23:11:29 UTC", + "tags": [ + "console.html", + "console" + ], + "type": "jenkins" + }, + "_type": "jenkins", + "sort": [ + 1416870237513 + ] + }, + { + "_id": "7qV0mP6YSDePGDi88YlQ3w", + "_index": "logstash-2014.11.24", + "_score": null, + "_source": { + "@timestamp": "2014-11-24T23:03:56.110+00:00", + "@version": "1", + "build_branch": "master", + "build_change": "136511", + "build_master": "jenkins03.openstack.org", + "build_name": "check-grenade-dsvm-neutron", + "build_node": "devstack-trusty-hpcloud-b3-35061", + "build_patchset": "4", + "build_queue": "check", + "build_ref": "refs/zuul/master/Z9e1b73a6bd4840d7919d7871967d3e43", + "build_short_uuid": "76ee0bd", + "build_status": "FAILURE", + "build_uuid": "76ee0bd78bd246178795a35d5654f8c9", + "filename": "console.html", + "host": "127.0.0.1:56890", + "log_url": "http://logs.openstack.org/11/136511/4/check/check-grenade-dsvm-neutron/76ee0bd/console.html", + "message": "Looks like the node went offline during the build. Check the slave log for the details.FATAL: /var/lib/jenkins/logs/slaves/devstack-trusty-hpcloud-b3-35061/slave.log (No such file or directory)", + "project": "openstack/neutron", + "received_at": "2014-11-24 23:06:41 UTC", + "tags": [ + "console.html", + "console" + ], + "type": "jenkins" + }, + "_type": "jenkins", + "sort": [ + 1416870236110 + ] + }, + { + "_id": "RoV7PsEaSl-AIFwDVtPLrw", + "_index": "logstash-2014.11.24", + "_score": null, + "_source": { + "@timestamp": "2014-11-24T23:03:41.869+00:00", + "@version": "1", + "build_branch": "master", + "build_change": "135798", + "build_master": "jenkins06.openstack.org", + "build_name": "check-tempest-dsvm-neutron-full", + "build_node": "devstack-trusty-rax-dfw-35562", + "build_patchset": "3", + "build_queue": "check", + "build_ref": "refs/zuul/master/Z4860175ffb384093a7e70c7d19f72e0b", + "build_short_uuid": "5e0b6ee", + "build_status": "FAILURE", + "build_uuid": "5e0b6ee9315f4041bfdfdeb73fb6fb06", + "filename": "console.html", + "host": "127.0.0.1:56890", + "log_url": "http://logs.openstack.org/98/135798/3/check/check-tempest-dsvm-neutron-full/5e0b6ee/console.html", + "message": "Looks like the node went offline during the build. Check the slave log for the details.FATAL: /var/lib/jenkins/logs/slaves/devstack-trusty-rax-dfw-35562/slave.log (No such file or directory)", + "project": "openstack/nova", + "received_at": "2014-11-24 23:06:24 UTC", + "tags": [ + "console.html", + "console" + ], + "type": "jenkins" + }, + "_type": "jenkins", + "sort": [ + 1416870221869 + ] + }, + { + "_id": "qsrnL67wS5CIYn5cf89jtg", + "_index": "logstash-2014.11.24", + "_score": null, + "_source": { + "@timestamp": "2014-11-24T23:03:31.641+00:00", + "@version": "1", + "build_branch": "stable/juno", + "build_change": "136497", + "build_master": "jenkins06.openstack.org", + "build_name": "gate-tempest-dsvm-neutron-pg", + "build_node": "devstack-trusty-rax-dfw-35569", + "build_patchset": "1", + "build_queue": "gate", + "build_ref": "refs/zuul/stable/juno/Z3cb4d4c28b7148808804bde878d0e9f8", + "build_short_uuid": "ada236c", + "build_status": "FAILURE", + "build_uuid": "ada236ca753b409693defc819bae809d", + "error_pr": -7.9586, + "filename": "console.html", + "host": "127.0.0.1:56890", + "log_url": "http://logs.openstack.org/97/136497/1/gate/gate-tempest-dsvm-neutron-pg/ada236c/console.html", + "message": "Looks like the node went offline during the build. Check the slave log for the details.FATAL: /var/lib/jenkins/logs/slaves/devstack-trusty-rax-dfw-35569/slave.log (No such file or directory)", + "project": "openstack/neutron", + "received_at": "2014-11-24 23:06:03 UTC", + "tags": [ + "console.html", + "console" + ], + "type": "jenkins" + }, + "_type": "jenkins", + "sort": [ + 1416870211641 + ] + }, + { + "_id": "__oDIqkRRoSJBBGFRmnjog", + "_index": "logstash-2014.11.24", + "_score": null, + "_source": { + "@timestamp": "2014-11-24T23:03:29.849+00:00", + "@version": "1", + "build_branch": "stable/juno", + "build_change": "136497", + "build_master": "jenkins05.openstack.org", + "build_name": "gate-tempest-dsvm-neutron", + "build_node": "devstack-trusty-rax-iad-35641", + "build_patchset": "1", + "build_queue": "gate", + "build_ref": "refs/zuul/stable/juno/Z3cb4d4c28b7148808804bde878d0e9f8", + "build_short_uuid": "e451276", + "build_status": "FAILURE", + "build_uuid": "e45127660c484883ab93423bcc8d5fbd", + "error_pr": -7.9675, + "filename": "console.html", + "host": "127.0.0.1:56902", + "log_url": "http://logs.openstack.org/97/136497/1/gate/gate-tempest-dsvm-neutron/e451276/console.html", + "message": "Looks like the node went offline during the build. Check the slave log for the details.FATAL: /var/lib/jenkins/logs/slaves/devstack-trusty-rax-iad-35641/slave.log (No such file or directory)", + "project": "openstack/neutron", + "received_at": "2014-11-24 23:11:25 UTC", + "tags": [ + "console.html", + "console" + ], + "type": "jenkins" + }, + "_type": "jenkins", + "sort": [ + 1416870209849 + ] + }, + { + "_id": "6x_T2jakQUSu10brZg04gg", + "_index": "logstash-2014.11.24", + "_score": null, + "_source": { + "@timestamp": "2014-11-24T23:03:13.817+00:00", + "@version": "1", + "build_branch": "master", + "build_change": "136054", + "build_master": "jenkins03.openstack.org", + "build_name": "check-tempest-dsvm-neutron-full", + "build_node": "devstack-trusty-hpcloud-b4-35089", + "build_patchset": "3", + "build_queue": "check", + "build_ref": "refs/zuul/master/Za753b29b1c424960b2ca90b90964e694", + "build_short_uuid": "31cdd6f", + "build_status": "FAILURE", + "build_uuid": "31cdd6fbedd142d5ab5e8986d281b44c", + "error_pr": -7.592, + "filename": "console.html", + "host": "127.0.0.1:56890", + "log_url": "http://logs.openstack.org/54/136054/3/check/check-tempest-dsvm-neutron-full/31cdd6f/console.html", + "message": "Looks like the node went offline during the build. Check the slave log for the details.FATAL: /var/lib/jenkins/logs/slaves/devstack-trusty-hpcloud-b4-35089/slave.log (No such file or directory)", + "project": "openstack/nova", + "received_at": "2014-11-24 23:04:19 UTC", + "tags": [ + "console.html", + "console" + ], + "type": "jenkins" + }, + "_type": "jenkins", + "sort": [ + 1416870193817 + ] + }, + { + "_id": "RvErb_d2Sc-njY9wGH8Kfg", + "_index": "logstash-2014.11.24", + "_score": null, + "_source": { + "@timestamp": "2014-11-24T23:03:10.236+00:00", + "@version": "1", + "build_branch": "master", + "build_change": "134133", + "build_master": "jenkins02.openstack.org", + "build_name": "gate-tempest-dsvm-neutron-src-python-cinderclient-juno", + "build_node": "devstack-trusty-hpcloud-b3-35064", + "build_patchset": "6", + "build_queue": "check", + "build_ref": "refs/zuul/master/Z0caaa0d14b8246e6b86529a2abc1b73c", + "build_short_uuid": "27d5342", + "build_status": "FAILURE", + "build_uuid": "27d53424973f451cb6b323fe23933093", + "filename": "console.html", + "host": "127.0.0.1:41007", + "log_url": "http://logs.openstack.org/33/134133/6/check/gate-tempest-dsvm-neutron-src-python-cinderclient-juno/27d5342/console.html", + "message": "Looks like the node went offline during the build. Check the slave log for the details.FATAL: /var/lib/jenkins/logs/slaves/devstack-trusty-hpcloud-b3-35064/slave.log (No such file or directory)", + "project": "openstack/python-cinderclient", + "received_at": "2014-11-24 23:04:25 UTC", + "tags": [ + "console.html", + "console" + ], + "type": "jenkins" + }, + "_type": "jenkins", + "sort": [ + 1416870190236 + ] + }, + { + "_id": "0zwmpFpuRlyjr6uRDoeM7g", + "_index": "logstash-2014.11.24", + "_score": null, + "_source": { + "@timestamp": "2014-11-24T23:03:06.866+00:00", + "@version": "1", + "build_branch": "feature/lbaasv2", + "build_change": "123485", + "build_master": "jenkins02.openstack.org", + "build_name": "gate-neutron-dsvm-functional", + "build_node": "devstack-trusty-rax-dfw-35745", + "build_patchset": "9", + "build_queue": "gate", + "build_ref": "refs/zuul/feature/lbaasv2/Z730ffe434cd8417c96d512a21be309c3", + "build_short_uuid": "39bb049", + "build_status": "FAILURE", + "build_uuid": "39bb049418e54c6f80ce10d0d0506bb4", + "error_pr": -8.1219, + "filename": "console.html", + "host": "127.0.0.1:47661", + "log_url": "http://logs.openstack.org/85/123485/9/gate/gate-neutron-dsvm-functional/39bb049/console.html", + "message": "Looks like the node went offline during the build. Check the slave log for the details.FATAL: /var/lib/jenkins/logs/slaves/devstack-trusty-rax-dfw-35745/slave.log (No such file or directory)", + "project": "openstack/neutron", + "received_at": "2014-11-24 23:03:21 UTC", + "tags": [ + "console.html", + "console" + ], + "type": "jenkins" + }, + "_type": "jenkins", + "sort": [ + 1416870186866 + ] + }, + { + "_id": "dVotrS-2SPmC04wNzwMAyg", + "_index": "logstash-2014.11.24", + "_score": null, + "_source": { + "@timestamp": "2014-11-24T23:03:06.247+00:00", + "@version": "1", + "build_branch": "master", + "build_change": "136792", + "build_master": "jenkins01.openstack.org", + "build_name": "check-tempest-dsvm-ironic-pxe_ssh", + "build_node": "devstack-trusty-hpcloud-b5-35526", + "build_patchset": "2", + "build_queue": "check", + "build_ref": "refs/zuul/master/Zc0282d33606c457fb2c1de28140fcad6", + "build_short_uuid": "46c06ef", + "build_status": "FAILURE", + "build_uuid": "46c06ef9fa9140e2a7185a0e1d515b7a", + "error_pr": -7.9575, + "filename": "console.html", + "host": "127.0.0.1:56890", + "log_url": "http://logs.openstack.org/92/136792/2/check/check-tempest-dsvm-ironic-pxe_ssh/46c06ef/console.html", + "message": "Looks like the node went offline during the build. Check the slave log for the details.FATAL: /var/lib/jenkins/logs/slaves/devstack-trusty-hpcloud-b5-35526/slave.log (No such file or directory)", + "project": "openstack/tempest", + "received_at": "2014-11-24 23:05:57 UTC", + "tags": [ + "console.html", + "console" + ], + "type": "jenkins" + }, + "_type": "jenkins", + "sort": [ + 1416870186247 + ] + }, + { + "_id": "Zz4MYHNDRY2dgvl-x8kZRw", + "_index": "logstash-2014.11.24", + "_score": null, + "_source": { + "@timestamp": "2014-11-24T23:02:24.487+00:00", + "@version": "1", + "build_branch": "master", + "build_change": "136511", + "build_master": "jenkins02.openstack.org", + "build_name": "check-tempest-dsvm-neutron-pg-full-2", + "build_node": "devstack-trusty-hpcloud-b5-34921", + "build_patchset": "4", + "build_queue": "check", + "build_ref": "refs/zuul/master/Z9e1b73a6bd4840d7919d7871967d3e43", + "build_short_uuid": "0844f1f", + "build_status": "FAILURE", + "build_uuid": "0844f1fbe880427f8458ce066cfda63c", + "error_pr": -7.9498, + "filename": "console.html", + "host": "127.0.0.1:56902", + "log_url": "http://logs.openstack.org/11/136511/4/check/check-tempest-dsvm-neutron-pg-full-2/0844f1f/console.html", + "message": "Looks like the node went offline during the build. Check the slave log for the details.FATAL: /var/lib/jenkins/logs/slaves/devstack-trusty-hpcloud-b5-34921/slave.log (No such file or directory)", + "project": "openstack/neutron", + "received_at": "2014-11-24 23:11:21 UTC", + "tags": [ + "console.html", + "console" + ], + "type": "jenkins" + }, + "_type": "jenkins", + "sort": [ + 1416870144487 + ] + }, + { + "_id": "3Q5qX0TmQ66GZlJ0w6KeXQ", + "_index": "logstash-2014.11.24", + "_score": null, + "_source": { + "@timestamp": "2014-11-24T23:02:24.486+00:00", + "@version": "1", + "build_branch": "master", + "build_change": "135086", + "build_master": "jenkins01.openstack.org", + "build_name": "gate-tempest-dsvm-neutron-src-python-saharaclient-juno", + "build_node": "devstack-trusty-rax-ord-34936", + "build_patchset": "2", + "build_queue": "check", + "build_ref": "refs/zuul/master/Z8b3e3548fdf8419a85a2f14da8a87620", + "build_short_uuid": "713afad", + "build_status": "FAILURE", + "build_uuid": "713afad15528405686c39b9699514b4b", + "filename": "console.html", + "host": "127.0.0.1:56890", + "log_url": "http://logs.openstack.org/86/135086/2/check/gate-tempest-dsvm-neutron-src-python-saharaclient-juno/713afad/console.html", + "message": "Looks like the node went offline during the build. Check the slave log for the details.FATAL: /var/lib/jenkins/logs/slaves/devstack-trusty-rax-ord-34936/slave.log (No such file or directory)", + "project": "openstack/python-saharaclient", + "received_at": "2014-11-24 23:05:47 UTC", + "tags": [ + "console.html", + "console" + ], + "type": "jenkins" + }, + "_type": "jenkins", + "sort": [ + 1416870144486 + ] + }, + { + "_id": "5T9PrePTTKm6B4Rguz-bbQ", + "_index": "logstash-2014.11.24", + "_score": null, + "_source": { + "@timestamp": "2014-11-24T23:02:20.677+00:00", + "@version": "1", + "build_branch": "feature/lbaasv2", + "build_change": "123485", + "build_master": "jenkins05.openstack.org", + "build_name": "gate-neutron-dsvm-functional", + "build_node": "devstack-trusty-hpcloud-b4-35460", + "build_patchset": "9", + "build_queue": "gate", + "build_ref": "refs/zuul/feature/lbaasv2/Zbac151662e1e4ac888c5792d6bf350ea", + "build_short_uuid": "f06910a", + "build_status": "FAILURE", + "build_uuid": "f06910a1d8e04da6a9de995edf1f3332", + "error_pr": -7.9648, + "filename": "console.html", + "host": "127.0.0.1:56890", + "log_url": "http://logs.openstack.org/85/123485/9/gate/gate-neutron-dsvm-functional/f06910a/console.html", + "message": "Looks like the node went offline during the build. Check the slave log for the details.FATAL: /var/lib/jenkins/logs/slaves/devstack-trusty-hpcloud-b4-35460/slave.log (No such file or directory)", + "project": "openstack/neutron", + "received_at": "2014-11-24 23:05:41 UTC", + "tags": [ + "console.html", + "console" + ], + "type": "jenkins" + }, + "_type": "jenkins", + "sort": [ + 1416870140677 + ] + }, + { + "_id": "nB0kvrf1TyuAt5UBSq7wpA", + "_index": "logstash-2014.11.24", + "_score": null, + "_source": { + "@timestamp": "2014-11-24T23:02:11.271+00:00", + "@version": "1", + "build_branch": "master", + "build_change": "131865", + "build_master": "jenkins02.openstack.org", + "build_name": "check-grenade-dsvm", + "build_node": "devstack-trusty-rax-dfw-35747", + "build_patchset": "6", + "build_queue": "check", + "build_ref": "refs/zuul/master/Z8fa8a837ccec42068bda3ee39ad6290a", + "build_short_uuid": "a23c27c", + "build_status": "FAILURE", + "build_uuid": "a23c27c9707e4f90b63e591beeafd058", + "error_pr": -7.9669, + "filename": "console.html", + "host": "127.0.0.1:56890", + "log_url": "http://logs.openstack.org/65/131865/6/check/check-grenade-dsvm/a23c27c/console.html", + "message": "Looks like the node went offline during the build. Check the slave log for the details.FATAL: /var/lib/jenkins/logs/slaves/devstack-trusty-rax-dfw-35747/slave.log (No such file or directory)", + "project": "openstack/cinder", + "received_at": "2014-11-24 23:05:24 UTC", + "tags": [ + "console.html", + "console" + ], + "type": "jenkins" + }, + "_type": "jenkins", + "sort": [ + 1416870131271 + ] + }, + { + "_id": "BxQxmBE6SRm_7grmvbch2Q", + "_index": "logstash-2014.11.24", + "_score": null, + "_source": { + "@timestamp": "2014-11-24T23:02:10.750+00:00", + "@version": "1", + "build_branch": "master", + "build_change": "136511", + "build_master": "jenkins04.openstack.org", + "build_name": "check-tempest-dsvm-neutron-pg", + "build_node": "devstack-trusty-hpcloud-b4-34908", + "build_patchset": "4", + "build_queue": "check", + "build_ref": "refs/zuul/master/Z9e1b73a6bd4840d7919d7871967d3e43", + "build_short_uuid": "397a1d9", + "build_status": "FAILURE", + "build_uuid": "397a1d946337490a9f5a0927fa963bb4", + "error_pr": -7.9446, + "filename": "console.html", + "host": "127.0.0.1:56890", + "log_url": "http://logs.openstack.org/11/136511/4/check/check-tempest-dsvm-neutron-pg/397a1d9/console.html", + "message": "Looks like the node went offline during the build. Check the slave log for the details.FATAL: /var/lib/jenkins/logs/slaves/devstack-trusty-hpcloud-b4-34908/slave.log (No such file or directory)", + "project": "openstack/neutron", + "received_at": "2014-11-24 23:05:39 UTC", + "tags": [ + "console.html", + "console" + ], + "type": "jenkins" + }, + "_type": "jenkins", + "sort": [ + 1416870130750 + ] + }, + { + "_id": "zVaS8z3ARFWrENfqVrkmXg", + "_index": "logstash-2014.11.24", + "_score": null, + "_source": { + "@timestamp": "2014-11-24T23:01:59.037+00:00", + "@version": "1", + "build_branch": "master", + "build_change": "136511", + "build_master": "jenkins06.openstack.org", + "build_name": "check-tempest-dsvm-neutron-full-2", + "build_node": "devstack-trusty-hpcloud-b2-34883", + "build_patchset": "4", + "build_queue": "check", + "build_ref": "refs/zuul/master/Z9e1b73a6bd4840d7919d7871967d3e43", + "build_short_uuid": "b42dcea", + "build_status": "FAILURE", + "build_uuid": "b42dcea80e534da1b08dac29c78dfda0", + "error_pr": -8.4315, + "filename": "console.html", + "host": "127.0.0.1:45774", + "log_url": "http://logs.openstack.org/11/136511/4/check/check-tempest-dsvm-neutron-full-2/b42dcea/console.html", + "message": "Looks like the node went offline during the build. Check the slave log for the details.FATAL: /var/lib/jenkins/logs/slaves/devstack-trusty-hpcloud-b2-34883/slave.log (No such file or directory)", + "project": "openstack/neutron", + "received_at": "2014-11-24 23:03:14 UTC", + "tags": [ + "console.html", + "console" + ], + "type": "jenkins" + }, + "_type": "jenkins", + "sort": [ + 1416870119037 + ] + }, + { + "_id": "w9HcwSqaRwOTH_FW2OXJaA", + "_index": "logstash-2014.11.24", + "_score": null, + "_source": { + "@timestamp": "2014-11-24T23:01:48.390+00:00", + "@version": "1", + "build_branch": "master", + "build_change": "113467", + "build_master": "jenkins06.openstack.org", + "build_name": "check-tempest-dsvm-neutron-pg-2", + "build_node": "devstack-trusty-rax-ord-34928", + "build_patchset": "5", + "build_queue": "check", + "build_ref": "refs/zuul/master/Z9e458faa25df4a7d983797e14a1ad2c4", + "build_short_uuid": "599d671", + "build_status": "FAILURE", + "build_uuid": "599d6714c78c45e8b274aca8393c2d2a", + "error_pr": -7.9659, + "filename": "console.html", + "host": "127.0.0.1:56890", + "log_url": "http://logs.openstack.org/67/113467/5/check/check-tempest-dsvm-neutron-pg-2/599d671/console.html", + "message": "Looks like the node went offline during the build. Check the slave log for the details.FATAL: /var/lib/jenkins/logs/slaves/devstack-trusty-rax-ord-34928/slave.log (No such file or directory)", + "project": "openstack/neutron", + "received_at": "2014-11-24 23:05:22 UTC", + "tags": [ + "console.html", + "console" + ], + "type": "jenkins" + }, + "_type": "jenkins", + "sort": [ + 1416870108390 + ] + }, + { + "_id": "MF3cj2d7QYG3ArlPb8P_yQ", + "_index": "logstash-2014.11.24", + "_score": null, + "_source": { + "@timestamp": "2014-11-24T23:01:41.875+00:00", + "@version": "1", + "build_branch": "master", + "build_change": "129718", + "build_master": "jenkins06.openstack.org", + "build_name": "gate-tempest-dsvm-neutron-pg-2", + "build_node": "devstack-trusty-rax-dfw-35566", + "build_patchset": "10", + "build_queue": "gate", + "build_ref": "refs/zuul/master/Ze05acd5902c94322b52ceba72a203dd0", + "build_short_uuid": "ccb3f01", + "build_status": "FAILURE", + "build_uuid": "ccb3f0182d184a4d838f3c9c5309de6c", + "error_pr": -7.954, + "filename": "console.html", + "host": "127.0.0.1:56893", + "log_url": "http://logs.openstack.org/18/129718/10/gate/gate-tempest-dsvm-neutron-pg-2/ccb3f01/console.html", + "message": "Looks like the node went offline during the build. Check the slave log for the details.FATAL: /var/lib/jenkins/logs/slaves/devstack-trusty-rax-dfw-35566/slave.log (No such file or directory)", + "project": "openstack/neutron", + "received_at": "2014-11-24 23:10:45 UTC", + "tags": [ + "console.html", + "console" + ], + "type": "jenkins" + }, + "_type": "jenkins", + "sort": [ + 1416870101875 + ] + }, + { + "_id": "1opB-F4ETU-LMfB87Qt7zA", + "_index": "logstash-2014.11.24", + "_score": null, + "_source": { + "@timestamp": "2014-11-24T23:01:30.789+00:00", + "@version": "1", + "build_branch": "feature/lbaasv2", + "build_change": "126244", + "build_master": "jenkins01.openstack.org", + "build_name": "check-grenade-dsvm-neutron", + "build_node": "devstack-trusty-rax-dfw-35696", + "build_patchset": "4", + "build_queue": "check", + "build_ref": "refs/zuul/feature/lbaasv2/Z37a2fcfdd54a431b8797c891a108673d", + "build_short_uuid": "ba10706", + "build_status": "FAILURE", + "build_uuid": "ba10706094104308b952fe412c522d46", + "filename": "console.html", + "host": "127.0.0.1:56890", + "log_url": "http://logs.openstack.org/44/126244/4/check/check-grenade-dsvm-neutron/ba10706/console.html", + "message": "Looks like the node went offline during the build. Check the slave log for the details.FATAL: /var/lib/jenkins/logs/slaves/devstack-trusty-rax-dfw-35696/slave.log (No such file or directory)", + "project": "openstack/neutron", + "received_at": "2014-11-24 23:05:19 UTC", + "tags": [ + "console.html", + "console" + ], + "type": "jenkins" + }, + "_type": "jenkins", + "sort": [ + 1416870090789 + ] + }, + { + "_id": "gHtQf6JPS--xuXlfL914VQ", + "_index": "logstash-2014.11.24", + "_score": null, + "_source": { + "@timestamp": "2014-11-24T23:01:05.917+00:00", + "@version": "1", + "build_branch": "stable/icehouse", + "build_change": "136715", + "build_master": "jenkins06.openstack.org", + "build_name": "gate-tempest-dsvm-neutron-pg-2", + "build_node": "devstack-precise-hpcloud-b2-35020", + "build_patchset": "1", + "build_queue": "gate", + "build_ref": "refs/zuul/stable/icehouse/Z405c46e1172d4535a2f0dc072da3984b", + "build_short_uuid": "8150b3d", + "build_status": "FAILURE", + "build_uuid": "8150b3dfd4ae47aca66a0426d4c73a0d", + "error_pr": -7.9401, + "filename": "console.html", + "host": "127.0.0.1:56902", + "log_url": "http://logs.openstack.org/15/136715/1/gate/gate-tempest-dsvm-neutron-pg-2/8150b3d/console.html", + "message": "Looks like the node went offline during the build. Check the slave log for the details.FATAL: /var/lib/jenkins/logs/slaves/devstack-precise-hpcloud-b2-35020/slave.log (No such file or directory)", + "project": "openstack/neutron", + "received_at": "2014-11-24 23:07:40 UTC", + "tags": [ + "console.html", + "console" + ], + "type": "jenkins" + }, + "_type": "jenkins", + "sort": [ + 1416870065917 + ] + }, + { + "_id": "M1IF3QEKSOW2uYI_2xWicg", + "_index": "logstash-2014.11.24", + "_score": null, + "_source": { + "@timestamp": "2014-11-24T23:01:04.980+00:00", + "@version": "1", + "build_branch": "stable/juno", + "build_change": "136497", + "build_master": "jenkins04.openstack.org", + "build_name": "gate-tempest-dsvm-neutron-full", + "build_node": "devstack-trusty-rax-dfw-35588", + "build_patchset": "1", + "build_queue": "gate", + "build_ref": "refs/zuul/stable/juno/Z3cb4d4c28b7148808804bde878d0e9f8", + "build_short_uuid": "a877480", + "build_status": "FAILURE", + "build_uuid": "a877480f5682471d93adee22dccb3d8b", + "error_pr": -7.9225, + "filename": "console.html", + "host": "127.0.0.1:56890", + "log_url": "http://logs.openstack.org/97/136497/1/gate/gate-tempest-dsvm-neutron-full/a877480/console.html", + "message": "Looks like the node went offline during the build. Check the slave log for the details.FATAL: /var/lib/jenkins/logs/slaves/devstack-trusty-rax-dfw-35588/slave.log (No such file or directory)", + "project": "openstack/neutron", + "received_at": "2014-11-24 23:05:03 UTC", + "tags": [ + "console.html", + "console" + ], + "type": "jenkins" + }, + "_type": "jenkins", + "sort": [ + 1416870064980 + ] + }, + { + "_id": "5K-rHSyFTQWalEIYVcm1dQ", + "_index": "logstash-2014.11.24", + "_score": null, + "_source": { + "@timestamp": "2014-11-24T23:00:55.945+00:00", + "@version": "1", + "build_branch": "master", + "build_change": "133626", + "build_master": "jenkins01.openstack.org", + "build_name": "gate-tempest-dsvm-neutron-src-python-cinderclient", + "build_node": "devstack-trusty-hpcloud-b3-34902", + "build_patchset": "5", + "build_queue": "check", + "build_ref": "refs/zuul/master/Z08a38449bcdb44f7b6aaac83f2a3ea72", + "build_short_uuid": "e2bbee2", + "build_status": "FAILURE", + "build_uuid": "e2bbee2f49b64a58951f9adcd829199f", + "error_pr": -8.6454, + "filename": "console.html", + "host": "127.0.0.1:47886", + "log_url": "http://logs.openstack.org/26/133626/5/check/gate-tempest-dsvm-neutron-src-python-cinderclient/e2bbee2/console.html", + "message": "Looks like the node went offline during the build. Check the slave log for the details.FATAL: /var/lib/jenkins/logs/slaves/devstack-trusty-hpcloud-b3-34902/slave.log (No such file or directory)", + "project": "openstack/python-cinderclient", + "received_at": "2014-11-24 23:02:06 UTC", + "tags": [ + "console.html", + "console" + ], + "type": "jenkins" + }, + "_type": "jenkins", + "sort": [ + 1416870055945 + ] + }, + { + "_id": "F_mnH9uYT_mebHm1gC5Nkg", + "_index": "logstash-2014.11.24", + "_score": null, + "_source": { + "@timestamp": "2014-11-24T23:00:18.353+00:00", + "@version": "1", + "build_branch": "master", + "build_change": "131490", + "build_master": "jenkins01.openstack.org", + "build_name": "check-tempest-dsvm-docker", + "build_node": "devstack-trusty-hpcloud-b2-35412", + "build_patchset": "4", + "build_queue": "check", + "build_ref": "refs/zuul/master/Z07c857d520254f1b867114ac520314e0", + "build_short_uuid": "3ecac7c", + "build_status": "FAILURE", + "build_uuid": "3ecac7ccfd084e6bab03f5c592281845", + "error_pr": -7.922, + "filename": "console.html", + "host": "127.0.0.1:56902", + "log_url": "http://logs.openstack.org/90/131490/4/check/check-tempest-dsvm-docker/3ecac7c/console.html", + "message": "Looks like the node went offline during the build. Check the slave log for the details.FATAL: /var/lib/jenkins/logs/slaves/devstack-trusty-hpcloud-b2-35412/slave.log (No such file or directory)", + "project": "openstack/nova", + "received_at": "2014-11-24 23:07:26 UTC", + "tags": [ + "console.html", + "console" + ], + "type": "jenkins" + }, + "_type": "jenkins", + "sort": [ + 1416870018353 + ] + }, + { + "_id": "eMfshuJsTiy6UedZ8_n4Sg", + "_index": "logstash-2014.11.24", + "_score": null, + "_source": { + "@timestamp": "2014-11-24T23:00:07.854+00:00", + "@version": "1", + "build_branch": "master", + "build_change": "136596", + "build_master": "jenkins06.openstack.org", + "build_name": "check-tempest-dsvm-aiopcpu", + "build_node": "devstack-trusty-2-node-rax-iad-35667", + "build_patchset": "6", + "build_queue": "experimental", + "build_ref": "refs/zuul/master/Za65e19a78ea9428da5d5cfaae930d119", + "build_short_uuid": "d793ccf", + "build_status": "FAILURE", + "build_uuid": "d793ccf9adde49279e1b8d9e2bcc23b1", + "error_pr": -7.9223, + "filename": "console.html", + "host": "127.0.0.1:56890", + "log_url": "http://logs.openstack.org/96/136596/6/experimental/check-tempest-dsvm-aiopcpu/d793ccf/console.html", + "message": "Looks like the node went offline during the build. Check the slave log for the details.FATAL: /var/lib/jenkins/logs/slaves/devstack-trusty-2-node-rax-iad-35667/slave.log (No such file or directory)", + "project": "openstack-infra/devstack-gate", + "received_at": "2014-11-24 23:04:57 UTC", + "tags": [ + "console.html", + "console" + ], + "type": "jenkins" + }, + "_type": "jenkins", + "sort": [ + 1416870007854 + ] + }, + { + "_id": "mnx4pJiwSOmCsJ5gaUx3EQ", + "_index": "logstash-2014.11.24", + "_score": null, + "_source": { + "@timestamp": "2014-11-24T23:00:02.916+00:00", + "@version": "1", + "build_branch": "master", + "build_change": "133904", + "build_master": "jenkins06.openstack.org", + "build_name": "check-tempest-dsvm-ironic-pxe_ssh", + "build_node": "devstack-trusty-hpcloud-b1-35357", + "build_patchset": "3", + "build_queue": "check", + "build_ref": "refs/zuul/master/Za5c1598a7f81424a94f6da3ace79847c", + "build_short_uuid": "9aef5d5", + "build_status": "FAILURE", + "build_uuid": "9aef5d5051af49a3b9527eac989ce206", + "error_pr": -7.9577, + "filename": "console.html", + "host": "127.0.0.1:56890", + "log_url": "http://logs.openstack.org/04/133904/3/check/check-tempest-dsvm-ironic-pxe_ssh/9aef5d5/console.html", + "message": "Looks like the node went offline during the build. Check the slave log for the details.FATAL: /var/lib/jenkins/logs/slaves/devstack-trusty-hpcloud-b1-35357/slave.log (No such file or directory)", + "project": "openstack/nova", + "received_at": "2014-11-24 23:03:29 UTC", + "tags": [ + "console.html", + "console" + ], + "type": "jenkins" + }, + "_type": "jenkins", + "sort": [ + 1416870002916 + ] + }, + { + "_id": "IH_87vmCTvqzS6aGvtzY0A", + "_index": "logstash-2014.11.24", + "_score": null, + "_source": { + "@timestamp": "2014-11-24T22:59:59.807+00:00", + "@version": "1", + "build_branch": "master", + "build_change": "129718", + "build_master": "jenkins06.openstack.org", + "build_name": "gate-tempest-dsvm-neutron-pg", + "build_node": "devstack-trusty-rax-dfw-35570", + "build_patchset": "10", + "build_queue": "gate", + "build_ref": "refs/zuul/master/Ze05acd5902c94322b52ceba72a203dd0", + "build_short_uuid": "4121cb9", + "build_status": "FAILURE", + "build_uuid": "4121cb9f0bec4bb8842dccef2ecd4b42", + "error_pr": -7.953, + "filename": "console.html", + "host": "127.0.0.1:56890", + "log_url": "http://logs.openstack.org/18/129718/10/gate/gate-tempest-dsvm-neutron-pg/4121cb9/console.html", + "message": "Looks like the node went offline during the build. Check the slave log for the details.FATAL: /var/lib/jenkins/logs/slaves/devstack-trusty-rax-dfw-35570/slave.log (No such file or directory)", + "project": "openstack/neutron", + "received_at": "2014-11-24 23:03:18 UTC", + "tags": [ + "console.html", + "console" + ], + "type": "jenkins" + }, + "_type": "jenkins", + "sort": [ + 1416869999807 + ] + }, + { + "_id": "ZOY2GXw2QXGcPzh02o-YyQ", + "_index": "logstash-2014.11.24", + "_score": null, + "_source": { + "@timestamp": "2014-11-24T22:59:50.393+00:00", + "@version": "1", + "build_branch": "feature/lbaasv2", + "build_change": "126244", + "build_master": "jenkins01.openstack.org", + "build_name": "gate-neutron-pep8", + "build_node": "bare-trusty-rax-dfw-35843", + "build_patchset": "4", + "build_queue": "check", + "build_ref": "refs/zuul/feature/lbaasv2/Z99cbfe5529c84d8ba99d95c3173537f6", + "build_short_uuid": "9cb918a", + "build_status": "FAILURE", + "build_uuid": "9cb918a7e6f649c584450da2d2e5f9bb", + "error_pr": -7.7409, + "filename": "console.html", + "host": "127.0.0.1:33368", + "log_url": "http://logs.openstack.org/44/126244/4/check/gate-neutron-pep8/9cb918a/console.html", + "message": "Looks like the node went offline during the build. Check the slave log for the details.FATAL: /var/lib/jenkins/logs/slaves/bare-trusty-rax-dfw-35843/slave.log (No such file or directory)", + "project": "openstack/neutron", + "received_at": "2014-11-24 23:01:39 UTC", + "tags": [ + "console.html", + "console" + ], + "type": "jenkins" + }, + "_type": "jenkins", + "sort": [ + 1416869990393 + ] + }, + { + "_id": "kgl04SobQ5-iBc3XBWGnPw", + "_index": "logstash-2014.11.24", + "_score": null, + "_source": { + "@timestamp": "2014-11-24T22:59:31.666+00:00", + "@version": "1", + "build_branch": "master", + "build_change": "136511", + "build_master": "jenkins01.openstack.org", + "build_name": "check-tempest-dsvm-neutron-pg-2", + "build_node": "devstack-trusty-hpcloud-b3-34903", + "build_patchset": "4", + "build_queue": "check", + "build_ref": "refs/zuul/master/Z9e1b73a6bd4840d7919d7871967d3e43", + "build_short_uuid": "76c1f4b", + "build_status": "FAILURE", + "build_uuid": "76c1f4b231c54180af69b82885d5568f", + "error_pr": -7.9559, + "filename": "console.html", + "host": "127.0.0.1:56890", + "log_url": "http://logs.openstack.org/11/136511/4/check/check-tempest-dsvm-neutron-pg-2/76c1f4b/console.html", + "message": "Looks like the node went offline during the build. Check the slave log for the details.FATAL: /var/lib/jenkins/logs/slaves/devstack-trusty-hpcloud-b3-34903/slave.log (No such file or directory)", + "project": "openstack/neutron", + "received_at": "2014-11-24 23:03:15 UTC", + "tags": [ + "console.html", + "console" + ], + "type": "jenkins" + }, + "_type": "jenkins", + "sort": [ + 1416869971666 + ] + }, + { + "_id": "nBd1qjIoTZez6GDIHZ7IgA", + "_index": "logstash-2014.11.24", + "_score": null, + "_source": { + "@timestamp": "2014-11-24T22:59:24.650+00:00", + "@version": "1", + "build_branch": "stable/icehouse", + "build_change": "135903", + "build_master": "jenkins03.openstack.org", + "build_name": "gate-tempest-dsvm-neutron", + "build_node": "devstack-precise-hpcloud-b3-35049", + "build_patchset": "1", + "build_queue": "gate", + "build_ref": "refs/zuul/stable/icehouse/Zbccc4baad50c45e0aebb9653047b7f2a", + "build_short_uuid": "2a4c325", + "build_status": "FAILURE", + "build_uuid": "2a4c325e46c54bf58690914f7ec3eda9", + "error_pr": -8.1104, + "filename": "console.html", + "host": "127.0.0.1:47639", + "log_url": "http://logs.openstack.org/03/135903/1/gate/gate-tempest-dsvm-neutron/2a4c325/console.html", + "message": "Looks like the node went offline during the build. Check the slave log for the details.FATAL: /var/lib/jenkins/logs/slaves/devstack-precise-hpcloud-b3-35049/slave.log (No such file or directory)", + "project": "openstack/neutron", + "received_at": "2014-11-24 23:01:43 UTC", + "tags": [ + "console.html", + "console" + ], + "type": "jenkins" + }, + "_type": "jenkins", + "sort": [ + 1416869964650 + ] + }, + { + "_id": "XWV9TznVS_-dTOQ7rxHO_A", + "_index": "logstash-2014.11.24", + "_score": null, + "_source": { + "@timestamp": "2014-11-24T22:59:23.358+00:00", + "@version": "1", + "build_branch": "master", + "build_change": "129718", + "build_master": "jenkins03.openstack.org", + "build_name": "gate-tempest-dsvm-neutron-pg-full", + "build_node": "devstack-trusty-rax-iad-35648", + "build_patchset": "10", + "build_queue": "gate", + "build_ref": "refs/zuul/master/Ze05acd5902c94322b52ceba72a203dd0", + "build_short_uuid": "778c7eb", + "build_status": "FAILURE", + "build_uuid": "778c7eb56ceb4bc58cb27c82c3e8e04f", + "error_pr": -7.9257, + "filename": "console.html", + "host": "127.0.0.1:56890", + "log_url": "http://logs.openstack.org/18/129718/10/gate/gate-tempest-dsvm-neutron-pg-full/778c7eb/console.html", + "message": "Looks like the node went offline during the build. Check the slave log for the details.FATAL: /var/lib/jenkins/logs/slaves/devstack-trusty-rax-iad-35648/slave.log (No such file or directory)", + "project": "openstack/neutron", + "received_at": "2014-11-24 23:03:55 UTC", + "tags": [ + "console.html", + "console" + ], + "type": "jenkins" + }, + "_type": "jenkins", + "sort": [ + 1416869963358 + ] + }, + { + "_id": "SJ8A0gf3SJuA5UjhyGQXZw", + "_index": "logstash-2014.11.24", + "_score": null, + "_source": { + "@timestamp": "2014-11-24T22:59:05.926+00:00", + "@version": "1", + "build_branch": "master", + "build_change": "131490", + "build_master": "jenkins05.openstack.org", + "build_name": "check-grenade-dsvm", + "build_node": "devstack-trusty-hpcloud-b2-35396", + "build_patchset": "4", + "build_queue": "check", + "build_ref": "refs/zuul/master/Z07c857d520254f1b867114ac520314e0", + "build_short_uuid": "e4ccc2b", + "build_status": "FAILURE", + "build_uuid": "e4ccc2b9f53941f9906db9b60ea0de0d", + "error_pr": -7.9427, + "filename": "console.html", + "host": "127.0.0.1:56902", + "log_url": "http://logs.openstack.org/90/131490/4/check/check-grenade-dsvm/e4ccc2b/console.html", + "message": "Looks like the node went offline during the build. Check the slave log for the details.FATAL: /var/lib/jenkins/logs/slaves/devstack-trusty-hpcloud-b2-35396/slave.log (No such file or directory)", + "project": "openstack/nova", + "received_at": "2014-11-24 23:07:07 UTC", + "tags": [ + "console.html", + "console" + ], + "type": "jenkins" + }, + "_type": "jenkins", + "sort": [ + 1416869945926 + ] + }, + { + "_id": "UR19yybfRQCXg_vd91Rk9g", + "_index": "logstash-2014.11.24", + "_score": null, + "_source": { + "@timestamp": "2014-11-24T22:59:01.537+00:00", + "@version": "1", + "build_branch": "master", + "build_change": "108793", + "build_master": "jenkins01.openstack.org", + "build_name": "check-tempest-dsvm-full", + "build_node": "devstack-trusty-rax-iad-35658", + "build_patchset": "9", + "build_queue": "check", + "build_ref": "refs/zuul/master/Zad0fe9ade78f44739c51d3caaaa21a6c", + "build_short_uuid": "b68ea92", + "build_status": "FAILURE", + "build_uuid": "b68ea9213e2a4906bece7b96a63e3fca", + "error_pr": -7.935, + "filename": "console.html", + "host": "127.0.0.1:56902", + "log_url": "http://logs.openstack.org/93/108793/9/check/check-tempest-dsvm-full/b68ea92/console.html", + "message": "Looks like the node went offline during the build. Check the slave log for the details.FATAL: /var/lib/jenkins/logs/slaves/devstack-trusty-rax-iad-35658/slave.log (No such file or directory)", + "project": "openstack/horizon", + "received_at": "2014-11-24 23:07:03 UTC", + "tags": [ + "console.html", + "console" + ], + "type": "jenkins" + }, + "_type": "jenkins", + "sort": [ + 1416869941537 + ] + }, + { + "_id": "eTtHSqSlRJGdXckrBwk6TQ", + "_index": "logstash-2014.11.24", + "_score": null, + "_source": { + "@timestamp": "2014-11-24T22:58:55.129+00:00", + "@version": "1", + "build_branch": "feature/lbaasv2", + "build_change": "126244", + "build_master": "jenkins04.openstack.org", + "build_name": "gate-neutron-docs", + "build_node": "bare-trusty-rax-dfw-35842", + "build_patchset": "4", + "build_queue": "check", + "build_ref": "refs/zuul/feature/lbaasv2/Z99cbfe5529c84d8ba99d95c3173537f6", + "build_short_uuid": "b8bd41c", + "build_status": "FAILURE", + "build_uuid": "b8bd41c26fc747e4a23633ff7f5064eb", + "error_pr": -8.7423, + "filename": "console.html", + "host": "127.0.0.1:47877", + "log_url": "http://logs.openstack.org/44/126244/4/check/gate-neutron-docs/b8bd41c/console.html", + "message": "Looks like the node went offline during the build. Check the slave log for the details.FATAL: /var/lib/jenkins/logs/slaves/bare-trusty-rax-dfw-35842/slave.log (No such file or directory)", + "project": "openstack/neutron", + "received_at": "2014-11-24 23:00:15 UTC", + "tags": [ + "console.html", + "console" + ], + "type": "jenkins" + }, + "_type": "jenkins", + "sort": [ + 1416869935129 + ] + }, + { + "_id": "lo3gSvD7TPSLqI0riQ7Xkg", + "_index": "logstash-2014.11.24", + "_score": null, + "_source": { + "@timestamp": "2014-11-24T22:58:50.118+00:00", + "@version": "1", + "build_branch": "feature/lbaasv2", + "build_change": "123485", + "build_master": "jenkins02.openstack.org", + "build_name": "gate-neutron-python27", + "build_node": "bare-trusty-rax-dfw-33733", + "build_patchset": "9", + "build_queue": "gate", + "build_ref": "refs/zuul/feature/lbaasv2/Zbac151662e1e4ac888c5792d6bf350ea", + "build_short_uuid": "60d1598", + "build_status": "FAILURE", + "build_uuid": "60d1598460894369a6395f7431eee31b", + "error_pr": -7.7243, + "filename": "console.html", + "host": "127.0.0.1:33351", + "log_url": "http://logs.openstack.org/85/123485/9/gate/gate-neutron-python27/60d1598/console.html", + "message": "Looks like the node went offline during the build. Check the slave log for the details.FATAL: /var/lib/jenkins/logs/slaves/bare-trusty-rax-dfw-33733/slave.log (No such file or directory)", + "project": "openstack/neutron", + "received_at": "2014-11-24 23:03:28 UTC", + "tags": [ + "console.html", + "console" + ], + "type": "jenkins" + }, + "_type": "jenkins", + "sort": [ + 1416869930118 + ] + }, + { + "_id": "zEIum3S5R12jKbU6n_Zodw", + "_index": "logstash-2014.11.24", + "_score": null, + "_source": { + "@timestamp": "2014-11-24T22:58:29.204+00:00", + "@version": "1", + "build_branch": "master", + "build_change": "136792", + "build_master": "jenkins04.openstack.org", + "build_name": "gate-tempest-dsvm-large-ops-juno", + "build_node": "devstack-trusty-hpcloud-b1-35377", + "build_patchset": "2", + "build_queue": "check", + "build_ref": "refs/zuul/master/Zc0282d33606c457fb2c1de28140fcad6", + "build_short_uuid": "b42486a", + "build_status": "FAILURE", + "build_uuid": "b42486af2b7e43ee818d3b5b38f384b5", + "error_pr": -7.6007, + "filename": "console.html", + "host": "127.0.0.1:42420", + "log_url": "http://logs.openstack.org/92/136792/2/check/gate-tempest-dsvm-large-ops-juno/b42486a/console.html", + "message": "Looks like the node went offline during the build. Check the slave log for the details.FATAL: /var/lib/jenkins/logs/slaves/devstack-trusty-hpcloud-b1-35377/slave.log (No such file or directory)", + "project": "openstack/tempest", + "received_at": "2014-11-24 23:04:57 UTC", + "tags": [ + "console.html", + "console" + ], + "type": "jenkins" + }, + "_type": "jenkins", + "sort": [ + 1416869909204 + ] + }, + { + "_id": "psocugjwSMmdXevgIYcmkA", + "_index": "logstash-2014.11.24", + "_score": null, + "_source": { + "@timestamp": "2014-11-24T22:58:27.942+00:00", + "@version": "1", + "build_branch": "stable/icehouse", + "build_change": "135903", + "build_master": "jenkins02.openstack.org", + "build_name": "gate-tempest-dsvm-neutron-pg", + "build_node": "devstack-precise-hpcloud-b3-35050", + "build_patchset": "1", + "build_queue": "gate", + "build_ref": "refs/zuul/stable/icehouse/Zbccc4baad50c45e0aebb9653047b7f2a", + "build_short_uuid": "a034cc0", + "build_status": "FAILURE", + "build_uuid": "a034cc028e8a4fc08393f10dbc2bb086", + "error_pr": -7.6942, + "filename": "console.html", + "host": "127.0.0.1:36511", + "log_url": "http://logs.openstack.org/03/135903/1/gate/gate-tempest-dsvm-neutron-pg/a034cc0/console.html", + "message": "Looks like the node went offline during the build. Check the slave log for the details.FATAL: /var/lib/jenkins/logs/slaves/devstack-precise-hpcloud-b3-35050/slave.log (No such file or directory)", + "project": "openstack/neutron", + "received_at": "2014-11-24 22:59:39 UTC", + "tags": [ + "console.html", + "console" + ], + "type": "jenkins" + }, + "_type": "jenkins", + "sort": [ + 1416869907942 + ] + }, + { + "_id": "vMZvfXJrTF2f2WrUxuhT1w", + "_index": "logstash-2014.11.24", + "_score": null, + "_source": { + "@timestamp": "2014-11-24T22:58:26.276+00:00", + "@version": "1", + "build_branch": "master", + "build_change": "136772", + "build_master": "jenkins03.openstack.org", + "build_name": "check-grenade-dsvm-partial-ncpu", + "build_node": "devstack-trusty-rax-iad-35649", + "build_patchset": "2", + "build_queue": "check", + "build_ref": "refs/zuul/master/Z208e92672b8146bb8300fb2e1199effe", + "build_short_uuid": "77d5669", + "build_status": "FAILURE", + "build_uuid": "77d5669a4832433aa90f32349bfe9504", + "error_pr": -7.9435, + "filename": "console.html", + "host": "127.0.0.1:56902", + "log_url": "http://logs.openstack.org/72/136772/2/check/check-grenade-dsvm-partial-ncpu/77d5669/console.html", + "message": "Looks like the node went offline during the build. Check the slave log for the details.FATAL: /var/lib/jenkins/logs/slaves/devstack-trusty-rax-iad-35649/slave.log (No such file or directory)", + "project": "openstack/nova", + "received_at": "2014-11-24 23:06:49 UTC", + "tags": [ + "console.html", + "console" + ], + "type": "jenkins" + }, + "_type": "jenkins", + "sort": [ + 1416869906276 + ] + }, + { + "_id": "1XbzaJP3Qfi_ZP-GTKyfFQ", + "_index": "logstash-2014.11.24", + "_score": null, + "_source": { + "@timestamp": "2014-11-24T22:58:25.070+00:00", + "@version": "1", + "build_branch": "master", + "build_change": "135874", + "build_master": "jenkins02.openstack.org", + "build_name": "check-tempest-dsvm-postgres-full", + "build_node": "devstack-trusty-rax-dfw-35690", + "build_patchset": "6", + "build_queue": "check", + "build_ref": "refs/zuul/master/Zb148d3e42df5471f9efc37067107cfa1", + "build_short_uuid": "bf02427", + "build_status": "FAILURE", + "build_uuid": "bf024274f5074bc8ac349c2646def8ab", + "error_pr": -7.6231, + "filename": "console.html", + "host": "127.0.0.1:36511", + "log_url": "http://logs.openstack.org/74/135874/6/check/check-tempest-dsvm-postgres-full/bf02427/console.html", + "message": "Looks like the node went offline during the build. Check the slave log for the details.FATAL: /var/lib/jenkins/logs/slaves/devstack-trusty-rax-dfw-35690/slave.log (No such file or directory)", + "project": "openstack/cinder", + "received_at": "2014-11-24 22:59:53 UTC", + "tags": [ + "console.html", + "console" + ], + "type": "jenkins" + }, + "_type": "jenkins", + "sort": [ + 1416869905070 + ] + }, + { + "_id": "RMIAHI0GRAm5EGOcp8y7bQ", + "_index": "logstash-2014.11.24", + "_score": null, + "_source": { + "@timestamp": "2014-11-24T22:58:25.048+00:00", + "@version": "1", + "build_branch": "master", + "build_change": "109853", + "build_master": "jenkins02.openstack.org", + "build_name": "check-tempest-dsvm-postgres-full", + "build_node": "devstack-trusty-hpcloud-b4-35092", + "build_patchset": "16", + "build_queue": "check", + "build_ref": "refs/zuul/master/Z161c1653570645a4a286a17deeb921a4", + "build_short_uuid": "9b07d9a", + "build_status": "FAILURE", + "build_uuid": "9b07d9a6a75a4ec58f142e50659751b4", + "error_pr": -7.6249, + "filename": "console.html", + "host": "127.0.0.1:36501", + "log_url": "http://logs.openstack.org/53/109853/16/check/check-tempest-dsvm-postgres-full/9b07d9a/console.html", + "message": "Looks like the node went offline during the build. Check the slave log for the details.FATAL: /var/lib/jenkins/logs/slaves/devstack-trusty-hpcloud-b4-35092/slave.log (No such file or directory)", + "project": "openstack/ceilometer", + "received_at": "2014-11-24 23:01:38 UTC", + "tags": [ + "console.html", + "console" + ], + "type": "jenkins" + }, + "_type": "jenkins", + "sort": [ + 1416869905048 + ] + }, + { + "_id": "pcZLc6EoQeW2NfACgcEBsw", + "_index": "logstash-2014.11.24", + "_score": null, + "_source": { + "@timestamp": "2014-11-24T22:58:23.839+00:00", + "@version": "1", + "build_branch": "master", + "build_change": "135503", + "build_master": "jenkins06.openstack.org", + "build_name": "check-tempest-dsvm-postgres-full", + "build_node": "devstack-trusty-hpcloud-b2-35024", + "build_patchset": "2", + "build_queue": "check", + "build_ref": "refs/zuul/master/Z6c7812a87041416296aba4ce8cf9a22b", + "build_short_uuid": "805fa96", + "build_status": "FAILURE", + "build_uuid": "805fa96400244a78ba6823829adb4d4f", + "error_pr": -7.6303, + "filename": "console.html", + "host": "127.0.0.1:33338", + "log_url": "http://logs.openstack.org/03/135503/2/check/check-tempest-dsvm-postgres-full/805fa96/console.html", + "message": "Looks like the node went offline during the build. Check the slave log for the details.FATAL: /var/lib/jenkins/logs/slaves/devstack-trusty-hpcloud-b2-35024/slave.log (No such file or directory)", + "project": "openstack-dev/devstack", + "received_at": "2014-11-24 22:59:16 UTC", + "tags": [ + "console.html", + "console" + ], + "type": "jenkins" + }, + "_type": "jenkins", + "sort": [ + 1416869903839 + ] + }, + { + "_id": "IEL4jvJXSNWOt0D8A0dFzw", + "_index": "logstash-2014.11.24", + "_score": null, + "_source": { + "@timestamp": "2014-11-24T22:58:22.889+00:00", + "@version": "1", + "build_branch": "master", + "build_change": "131860", + "build_master": "jenkins05.openstack.org", + "build_name": "check-tempest-dsvm-full", + "build_node": "devstack-trusty-hpcloud-b4-35084", + "build_patchset": "10", + "build_queue": "check", + "build_ref": "refs/zuul/master/Z6a8e17b7995948ac8260cddafed9eddc", + "build_short_uuid": "906e6e6", + "build_status": "FAILURE", + "build_uuid": "906e6e6df8434ca8a0a81081977d6845", + "error_pr": -7.6233, + "filename": "console.html", + "host": "127.0.0.1:36514", + "log_url": "http://logs.openstack.org/60/131860/10/check/check-tempest-dsvm-full/906e6e6/console.html", + "message": "Looks like the node went offline during the build. Check the slave log for the details.FATAL: /var/lib/jenkins/logs/slaves/devstack-trusty-hpcloud-b4-35084/slave.log (No such file or directory)", + "project": "openstack/cinder", + "received_at": "2014-11-24 23:00:38 UTC", + "tags": [ + "console.html", + "console" + ], + "type": "jenkins" + }, + "_type": "jenkins", + "sort": [ + 1416869902889 + ] + }, + { + "_id": "9k5xuGvtSEq7_L4a5JSWeg", + "_index": "logstash-2014.11.24", + "_score": null, + "_source": { + "@timestamp": "2014-11-24T22:58:14.327+00:00", + "@version": "1", + "build_branch": "master", + "build_change": "136891", + "build_master": "jenkins03.openstack.org", + "build_name": "check-tripleo-ironic-overcloud-precise-ha", + "build_node": "tripleo-precise-tripleo-test-cloud-rh1-34175", + "build_patchset": "1", + "build_queue": "check-tripleo", + "build_ref": "refs/zuul/master/Zbf112501c0a840b9a50043870544d17c", + "build_short_uuid": "95d5ff3", + "build_status": "FAILURE", + "build_uuid": "95d5ff3a02fd4173a24b5fb6ec177041", + "filename": "console.html", + "host": "127.0.0.1:56902", + "log_url": "http://logs.openstack.org/91/136891/1/check-tripleo/check-tripleo-ironic-overcloud-precise-ha/95d5ff3/console.html", + "message": "Looks like the node went offline during the build. Check the slave log for the details.FATAL: /var/lib/jenkins/logs/slaves/tripleo-precise-tripleo-test-cloud-rh1-34175/slave.log (No such file or directory)", + "project": "openstack/tripleo-heat-templates", + "received_at": "2014-11-24 23:11:12 UTC", + "tags": [ + "console.html", + "console" + ], + "type": "jenkins" + }, + "_type": "jenkins", + "sort": [ + 1416869894327 + ] + }, + { + "_id": "MoGUzR-aS_GfXy9FUesKwg", + "_index": "logstash-2014.11.24", + "_score": null, + "_source": { + "@timestamp": "2014-11-24T22:58:11.360+00:00", + "@version": "1", + "build_branch": "feature/lbaasv2", + "build_change": "126244", + "build_master": "jenkins05.openstack.org", + "build_name": "check-tempest-dsvm-neutron-full-2", + "build_node": "devstack-trusty-rax-iad-35640", + "build_patchset": "4", + "build_queue": "check", + "build_ref": "refs/zuul/feature/lbaasv2/Z37a2fcfdd54a431b8797c891a108673d", + "build_short_uuid": "52c6668", + "build_status": "FAILURE", + "build_uuid": "52c666862c3d4b70a0bfc297bd9924eb", + "error_pr": -7.915, + "filename": "console.html", + "host": "127.0.0.1:56890", + "log_url": "http://logs.openstack.org/44/126244/4/check/check-tempest-dsvm-neutron-full-2/52c6668/console.html", + "message": "Looks like the node went offline during the build. Check the slave log for the details.FATAL: /var/lib/jenkins/logs/slaves/devstack-trusty-rax-iad-35640/slave.log (No such file or directory)", + "project": "openstack/neutron", + "received_at": "2014-11-24 23:01:36 UTC", + "tags": [ + "console.html", + "console" + ], + "type": "jenkins" + }, + "_type": "jenkins", + "sort": [ + 1416869891360 + ] + }, + { + "_id": "KLbr6DOkTiWGWz4wEvv4oQ", + "_index": "logstash-2014.11.24", + "_score": null, + "_source": { + "@timestamp": "2014-11-24T22:58:10.269+00:00", + "@version": "1", + "build_branch": "master", + "build_change": "125746", + "build_master": "jenkins05.openstack.org", + "build_name": "check-tempest-dsvm-postgres-full", + "build_node": "devstack-trusty-rax-iad-35639", + "build_patchset": "4", + "build_queue": "check", + "build_ref": "refs/zuul/master/Zbff65f90b54143e0b2c23629e9fb4e5e", + "build_short_uuid": "af840eb", + "build_status": "FAILURE", + "build_uuid": "af840eb6ac4141c582067e3bee1a4e0d", + "error_pr": -7.6236, + "filename": "console.html", + "host": "127.0.0.1:36495", + "log_url": "http://logs.openstack.org/46/125746/4/check/check-tempest-dsvm-postgres-full/af840eb/console.html", + "message": "Looks like the node went offline during the build. Check the slave log for the details.FATAL: /var/lib/jenkins/logs/slaves/devstack-trusty-rax-iad-35639/slave.log (No such file or directory)", + "project": "openstack/swift", + "received_at": "2014-11-24 23:00:00 UTC", + "tags": [ + "console.html", + "console" + ], + "type": "jenkins" + }, + "_type": "jenkins", + "sort": [ + 1416869890269 + ] + }, + { + "_id": "Ql3hTiCtRJCEDy0qfa5E3A", + "_index": "logstash-2014.11.24", + "_score": null, + "_source": { + "@timestamp": "2014-11-24T22:57:59.063+00:00", + "@version": "1", + "build_branch": "master", + "build_change": "136811", + "build_master": "jenkins06.openstack.org", + "build_name": "check-grenade-dsvm-partial-ncpu", + "build_node": "devstack-trusty-hpcloud-b2-35392", + "build_patchset": "1", + "build_queue": "check", + "build_ref": "refs/zuul/master/Z10b70fce43c0412f879d1c1a36c9e910", + "build_short_uuid": "7a9274c", + "build_status": "FAILURE", + "build_uuid": "7a9274c8c9884834afbdfd5c2bc90151", + "error_pr": -8.5028, + "filename": "console.html", + "host": "127.0.0.1:45748", + "log_url": "http://logs.openstack.org/11/136811/1/check/check-grenade-dsvm-partial-ncpu/7a9274c/console.html", + "message": "Looks like the node went offline during the build. Check the slave log for the details.FATAL: /var/lib/jenkins/logs/slaves/devstack-trusty-hpcloud-b2-35392/slave.log (No such file or directory)", + "project": "openstack-infra/devstack-gate", + "received_at": "2014-11-24 23:01:58 UTC", + "tags": [ + "console.html", + "console" + ], + "type": "jenkins" + }, + "_type": "jenkins", + "sort": [ + 1416869879063 + ] + }, + { + "_id": "--8B0rpxSbiHstlR7YigWQ", + "_index": "logstash-2014.11.24", + "_score": null, + "_source": { + "@timestamp": "2014-11-24T22:57:49.197+00:00", + "@version": "1", + "build_branch": "master", + "build_change": "134133", + "build_master": "jenkins02.openstack.org", + "build_name": "gate-tempest-dsvm-neutron-src-python-cinderclient", + "build_node": "devstack-trusty-hpcloud-b3-34900", + "build_patchset": "6", + "build_queue": "check", + "build_ref": "refs/zuul/master/Z0caaa0d14b8246e6b86529a2abc1b73c", + "build_short_uuid": "ca4b5e9", + "build_status": "FAILURE", + "build_uuid": "ca4b5e9a0575425f867b29cc29f66422", + "error_pr": -7.9274, + "filename": "console.html", + "host": "127.0.0.1:56902", + "log_url": "http://logs.openstack.org/33/134133/6/check/gate-tempest-dsvm-neutron-src-python-cinderclient/ca4b5e9/console.html", + "message": "Looks like the node went offline during the build. Check the slave log for the details.FATAL: /var/lib/jenkins/logs/slaves/devstack-trusty-hpcloud-b3-34900/slave.log (No such file or directory)", + "project": "openstack/python-cinderclient", + "received_at": "2014-11-24 23:05:42 UTC", + "tags": [ + "console.html", + "console" + ], + "type": "jenkins" + }, + "_type": "jenkins", + "sort": [ + 1416869869197 + ] + }, + { + "_id": "XVKcnl6kTgOOt6_HT_DERg", + "_index": "logstash-2014.11.24", + "_score": null, + "_source": { + "@timestamp": "2014-11-24T22:57:43.709+00:00", + "@version": "1", + "build_branch": "stable/icehouse", + "build_change": "136798", + "build_master": "jenkins07.openstack.org", + "build_name": "gate-cinder-python26", + "build_node": "bare-centos6-rax-dfw-35823", + "build_patchset": "1", + "build_queue": "gate", + "build_ref": "refs/zuul/stable/icehouse/Z029d18dced364ed6a0c7abb10362202b", + "build_short_uuid": "05eb990", + "build_status": "FAILURE", + "build_uuid": "05eb990d59ba498b9204d9b0c358d1b3", + "error_pr": -7.9488, + "filename": "console.html", + "host": "127.0.0.1:56890", + "log_url": "http://logs.openstack.org/98/136798/1/gate/gate-cinder-python26/05eb990/console.html", + "message": "Looks like the node went offline during the build. Check the slave log for the details.FATAL: /var/lib/jenkins/logs/slaves/bare-centos6-rax-dfw-35823/slave.log (No such file or directory)", + "project": "openstack/cinder", + "received_at": "2014-11-24 23:00:56 UTC", + "tags": [ + "console.html", + "console" + ], + "type": "jenkins" + }, + "_type": "jenkins", + "sort": [ + 1416869863709 + ] + }, + { + "_id": "w0glY2AFQ2iA6JB1nIfKqg", + "_index": "logstash-2014.11.24", + "_score": null, + "_source": { + "@timestamp": "2014-11-24T22:57:42.955+00:00", + "@version": "1", + "build_branch": "master", + "build_change": "108793", + "build_master": "jenkins02.openstack.org", + "build_name": "check-tempest-dsvm-postgres-full", + "build_node": "devstack-trusty-rax-dfw-35687", + "build_patchset": "9", + "build_queue": "check", + "build_ref": "refs/zuul/master/Zad0fe9ade78f44739c51d3caaaa21a6c", + "build_short_uuid": "ea1ef8a", + "build_status": "FAILURE", + "build_uuid": "ea1ef8a7fdb24d9ca45a739d739b4dda", + "filename": "console.html", + "host": "127.0.0.1:33972", + "log_url": "http://logs.openstack.org/93/108793/9/check/check-tempest-dsvm-postgres-full/ea1ef8a/console.html", + "message": "Looks like the node went offline during the build. Check the slave log for the details.FATAL: /var/lib/jenkins/logs/slaves/devstack-trusty-rax-dfw-35687/slave.log (No such file or directory)", + "project": "openstack/horizon", + "received_at": "2014-11-24 23:00:53 UTC", + "tags": [ + "console.html", + "console" + ], + "type": "jenkins" + }, + "_type": "jenkins", + "sort": [ + 1416869862955 + ] + }, + { + "_id": "21Z5DVfrRb2NH_qmustlFg", + "_index": "logstash-2014.11.24", + "_score": null, + "_source": { + "@timestamp": "2014-11-24T22:57:36.108+00:00", + "@version": "1", + "build_branch": "stable/icehouse", + "build_change": "135903", + "build_master": "jenkins06.openstack.org", + "build_name": "gate-tempest-dsvm-neutron-large-ops", + "build_node": "devstack-precise-hpcloud-b3-35660", + "build_patchset": "1", + "build_queue": "gate", + "build_ref": "refs/zuul/stable/icehouse/Zbccc4baad50c45e0aebb9653047b7f2a", + "build_short_uuid": "fb6b7fc", + "build_status": "FAILURE", + "build_uuid": "fb6b7fcea797475d82d9479fbf7d3d43", + "error_pr": -7.6161, + "filename": "console.html", + "host": "127.0.0.1:36498", + "log_url": "http://logs.openstack.org/03/135903/1/gate/gate-tempest-dsvm-neutron-large-ops/fb6b7fc/console.html", + "message": "Looks like the node went offline during the build. Check the slave log for the details.FATAL: /var/lib/jenkins/logs/slaves/devstack-precise-hpcloud-b3-35660/slave.log (No such file or directory)", + "project": "openstack/neutron", + "received_at": "2014-11-24 22:59:13 UTC", + "tags": [ + "console.html", + "console" + ], + "type": "jenkins" + }, + "_type": "jenkins", + "sort": [ + 1416869856108 + ] + }, + { + "_id": "vCYlbvk3RxiMeuawMuyCew", + "_index": "logstash-2014.11.24", + "_score": null, + "_source": { + "@timestamp": "2014-11-24T22:57:30.656+00:00", + "@version": "1", + "build_branch": "master", + "build_change": "135186", + "build_master": "jenkins07.openstack.org", + "build_name": "gate-tempest-dsvm-ceilometer-mongodb-full", + "build_node": "devstack-trusty-hpcloud-b2-35023", + "build_patchset": "5", + "build_queue": "check", + "build_ref": "refs/zuul/master/Z51535d76fb074c88b719a135c45e3ad4", + "build_short_uuid": "b680be6", + "build_status": "FAILURE", + "build_uuid": "b680be6ef37b4d25b04b132e897779c7", + "error_pr": -7.6215, + "filename": "console.html", + "host": "127.0.0.1:36511", + "log_url": "http://logs.openstack.org/86/135186/5/check/gate-tempest-dsvm-ceilometer-mongodb-full/b680be6/console.html", + "message": "Looks like the node went offline during the build. Check the slave log for the details.FATAL: /var/lib/jenkins/logs/slaves/devstack-trusty-hpcloud-b2-35023/slave.log (No such file or directory)", + "project": "openstack/ceilometer", + "received_at": "2014-11-24 23:00:11 UTC", + "tags": [ + "console.html", + "console" + ], + "type": "jenkins" + }, + "_type": "jenkins", + "sort": [ + 1416869850656 + ] + }, + { + "_id": "cMA0Q0e2QIqIoqp5u55KoA", + "_index": "logstash-2014.11.24", + "_score": null, + "_source": { + "@timestamp": "2014-11-24T22:57:27.737+00:00", + "@version": "1", + "build_branch": "master", + "build_change": "136266", + "build_master": "jenkins04.openstack.org", + "build_name": "check-tempest-dsvm-full", + "build_node": "devstack-trusty-rax-dfw-35585", + "build_patchset": "4", + "build_queue": "check", + "build_ref": "refs/zuul/master/Z64c7dc2f6d4c42bdaf70a701e16547ff", + "build_short_uuid": "f2fefc4", + "build_status": "FAILURE", + "build_uuid": "f2fefc40c5624e3c97b9f4ffa2729412", + "error_pr": -9.0016, + "filename": "console.html", + "host": "127.0.0.1:56185", + "log_url": "http://logs.openstack.org/66/136266/4/check/check-tempest-dsvm-full/f2fefc4/console.html", + "message": "Looks like the node went offline during the build. Check the slave log for the details.FATAL: /var/lib/jenkins/logs/slaves/devstack-trusty-rax-dfw-35585/slave.log (No such file or directory)", + "project": "openstack/nova", + "received_at": "2014-11-24 22:58:03 UTC", + "tags": [ + "console.html", + "console" + ], + "type": "jenkins" + }, + "_type": "jenkins", + "sort": [ + 1416869847737 + ] + }, + { + "_id": "Ed11hZQETk6lUEBYFydlKQ", + "_index": "logstash-2014.11.24", + "_score": null, + "_source": { + "@timestamp": "2014-11-24T22:57:25.957+00:00", + "@version": "1", + "build_branch": "master", + "build_change": "129718", + "build_master": "jenkins06.openstack.org", + "build_name": "gate-tempest-dsvm-neutron-pg-full-2", + "build_node": "devstack-trusty-rax-iad-35637", + "build_patchset": "10", + "build_queue": "gate", + "build_ref": "refs/zuul/master/Ze05acd5902c94322b52ceba72a203dd0", + "build_short_uuid": "622320f", + "build_status": "FAILURE", + "build_uuid": "622320fae46a4caf85603dd962b68a06", + "error_pr": -7.523, + "filename": "console.html", + "host": "127.0.0.1:51048", + "log_url": "http://logs.openstack.org/18/129718/10/gate/gate-tempest-dsvm-neutron-pg-full-2/622320f/console.html", + "message": "Looks like the node went offline during the build. Check the slave log for the details.FATAL: /var/lib/jenkins/logs/slaves/devstack-trusty-rax-iad-35637/slave.log (No such file or directory)", + "project": "openstack/neutron", + "received_at": "2014-11-24 22:59:27 UTC", + "tags": [ + "console.html", + "console" + ], + "type": "jenkins" + }, + "_type": "jenkins", + "sort": [ + 1416869845957 + ] + }, + { + "_id": "tpcJIMO4SiqlUKmwrlFGlQ", + "_index": "logstash-2014.11.24", + "_score": null, + "_source": { + "@timestamp": "2014-11-24T22:57:24.171+00:00", + "@version": "1", + "build_branch": "master", + "build_change": "136815", + "build_master": "jenkins06.openstack.org", + "build_name": "gate-tempest-dsvm-neutron-large-ops", + "build_node": "devstack-trusty-hpcloud-b3-35422", + "build_patchset": "2", + "build_queue": "check", + "build_ref": "refs/zuul/master/Z4c4f5c2ab55745baa73a69105706da02", + "build_short_uuid": "16adfa9", + "build_status": "FAILURE", + "build_uuid": "16adfa9e3f0549a1a7b5e0186b6cb1ae", + "error_pr": -8.3625, + "filename": "console.html", + "host": "127.0.0.1:54454", + "log_url": "http://logs.openstack.org/15/136815/2/check/gate-tempest-dsvm-neutron-large-ops/16adfa9/console.html", + "message": "Looks like the node went offline during the build. Check the slave log for the details.FATAL: /var/lib/jenkins/logs/slaves/devstack-trusty-hpcloud-b3-35422/slave.log (No such file or directory)", + "project": "openstack/tempest", + "received_at": "2014-11-24 23:12:37 UTC", + "tags": [ + "console.html", + "console" + ], + "type": "jenkins" + }, + "_type": "jenkins", + "sort": [ + 1416869844171 + ] + }, + { + "_id": "W6D6ubTCTiaLszcMEpMAwQ", + "_index": "logstash-2014.11.24", + "_score": null, + "_source": { + "@timestamp": "2014-11-24T22:57:17.792+00:00", + "@version": "1", + "build_branch": "master", + "build_change": "136894", + "build_master": "jenkins01.openstack.org", + "build_name": "check-tripleo-ironic-overcloud-precise-nonha", + "build_node": "tripleo-precise-tripleo-test-cloud-rh1-35337", + "build_patchset": "2", + "build_queue": "check-tripleo", + "build_ref": "refs/zuul/master/Zca42f0635ef348d89de6e8a97d98a28b", + "build_short_uuid": "1881549", + "build_status": "FAILURE", + "build_uuid": "1881549f65ea451382ce3006f3b6dffa", + "error_pr": -8.7037, + "filename": "console.html", + "host": "127.0.0.1:42361", + "log_url": "http://logs.openstack.org/94/136894/2/check-tripleo/check-tripleo-ironic-overcloud-precise-nonha/1881549/console.html", + "message": "Looks like the node went offline during the build. Check the slave log for the details.FATAL: /var/lib/jenkins/logs/slaves/tripleo-precise-tripleo-test-cloud-rh1-35337/slave.log (No such file or directory)", + "project": "openstack/tripleo-heat-templates", + "received_at": "2014-11-24 23:02:53 UTC", + "tags": [ + "console.html", + "console" + ], + "type": "jenkins" + }, + "_type": "jenkins", + "sort": [ + 1416869837792 + ] + }, + { + "_id": "sz2PZiE8QLajz8DLhhwGYw", + "_index": "logstash-2014.11.24", + "_score": null, + "_source": { + "@timestamp": "2014-11-24T22:57:14.604+00:00", + "@version": "1", + "build_branch": "master", + "build_change": "115334", + "build_master": "jenkins06.openstack.org", + "build_name": "check-tempest-dsvm-ironic-pxe_ssh", + "build_node": "devstack-trusty-hpcloud-b5-35496", + "build_patchset": "10", + "build_queue": "check", + "build_ref": "refs/zuul/master/Z0891ff76d015464b952390e2c805bbf5", + "build_short_uuid": "f85d9ee", + "build_status": "FAILURE", + "build_uuid": "f85d9ee66e27483a975bef160a33d877", + "error_pr": -9.3274, + "filename": "console.html", + "host": "127.0.0.1:48303", + "log_url": "http://logs.openstack.org/34/115334/10/check/check-tempest-dsvm-ironic-pxe_ssh/f85d9ee/console.html", + "message": "Looks like the node went offline during the build. Check the slave log for the details.FATAL: /var/lib/jenkins/logs/slaves/devstack-trusty-hpcloud-b5-35496/slave.log (No such file or directory)", + "project": "openstack/nova", + "received_at": "2014-11-24 22:58:02 UTC", + "tags": [ + "console.html", + "console" + ], + "type": "jenkins" + }, + "_type": "jenkins", + "sort": [ + 1416869834604 + ] + }, + { + "_id": "ZcKmahiqQb6agR9MUemFOQ", + "_index": "logstash-2014.11.24", + "_score": null, + "_source": { + "@timestamp": "2014-11-24T22:57:14.535+00:00", + "@version": "1", + "build_branch": "master", + "build_change": "129718", + "build_master": "jenkins06.openstack.org", + "build_name": "gate-tempest-dsvm-neutron-full", + "build_node": "devstack-trusty-rax-iad-35638", + "build_patchset": "10", + "build_queue": "gate", + "build_ref": "refs/zuul/master/Ze05acd5902c94322b52ceba72a203dd0", + "build_short_uuid": "9f83bde", + "build_status": "FAILURE", + "build_uuid": "9f83bde746cb4fc0bb4e54155df6aa23", + "error_pr": -9.0428, + "filename": "console.html", + "host": "127.0.0.1:56189", + "log_url": "http://logs.openstack.org/18/129718/10/gate/gate-tempest-dsvm-neutron-full/9f83bde/console.html", + "message": "Looks like the node went offline during the build. Check the slave log for the details.FATAL: /var/lib/jenkins/logs/slaves/devstack-trusty-rax-iad-35638/slave.log (No such file or directory)", + "project": "openstack/neutron", + "received_at": "2014-11-24 22:58:25 UTC", + "tags": [ + "console.html", + "console" + ], + "type": "jenkins" + }, + "_type": "jenkins", + "sort": [ + 1416869834535 + ] + }, + { + "_id": "TfSdCKSSShqy6uLrW2vF9w", + "_index": "logstash-2014.11.24", + "_score": null, + "_source": { + "@timestamp": "2014-11-24T22:57:14.397+00:00", + "@version": "1", + "build_branch": "master", + "build_change": "125746", + "build_master": "jenkins06.openstack.org", + "build_name": "check-tempest-dsvm-neutron-full", + "build_node": "devstack-trusty-rax-iad-35636", + "build_patchset": "4", + "build_queue": "check", + "build_ref": "refs/zuul/master/Zbff65f90b54143e0b2c23629e9fb4e5e", + "build_short_uuid": "5076b08", + "build_status": "FAILURE", + "build_uuid": "5076b0840ea144b7802059469a40d3e5", + "error_pr": -7.4768, + "filename": "console.html", + "host": "127.0.0.1:51059", + "log_url": "http://logs.openstack.org/46/125746/4/check/check-tempest-dsvm-neutron-full/5076b08/console.html", + "message": "Looks like the node went offline during the build. Check the slave log for the details.FATAL: /var/lib/jenkins/logs/slaves/devstack-trusty-rax-iad-35636/slave.log (No such file or directory)", + "project": "openstack/swift", + "received_at": "2014-11-24 22:58:28 UTC", + "tags": [ + "console.html", + "console" + ], + "type": "jenkins" + }, + "_type": "jenkins", + "sort": [ + 1416869834397 + ] + }, + { + "_id": "hz1X7YNLTaCyJPn9PwBSWA", + "_index": "logstash-2014.11.24", + "_score": null, + "_source": { + "@timestamp": "2014-11-24T22:57:11.507+00:00", + "@version": "1", + "build_branch": "master", + "build_change": "131490", + "build_master": "jenkins06.openstack.org", + "build_name": "check-grenade-dsvm-partial-ncpu", + "build_node": "devstack-trusty-hpcloud-b2-35393", + "build_patchset": "4", + "build_queue": "check", + "build_ref": "refs/zuul/master/Z07c857d520254f1b867114ac520314e0", + "build_short_uuid": "d347f4d", + "build_status": "FAILURE", + "build_uuid": "d347f4d279504658946e6b1faa2b851e", + "error_pr": -7.9158, + "filename": "console.html", + "host": "127.0.0.1:56890", + "log_url": "http://logs.openstack.org/90/131490/4/check/check-grenade-dsvm-partial-ncpu/d347f4d/console.html", + "message": "Looks like the node went offline during the build. Check the slave log for the details.FATAL: /var/lib/jenkins/logs/slaves/devstack-trusty-hpcloud-b2-35393/slave.log (No such file or directory)", + "project": "openstack/nova", + "received_at": "2014-11-24 23:01:20 UTC", + "tags": [ + "console.html", + "console" + ], + "type": "jenkins" + }, + "_type": "jenkins", + "sort": [ + 1416869831507 + ] + }, + { + "_id": "kUofW-y4T5SfC3twvrwF2w", + "_index": "logstash-2014.11.24", + "_score": null, + "_source": { + "@timestamp": "2014-11-24T22:57:10.621+00:00", + "@version": "1", + "build_branch": "master", + "build_change": "136792", + "build_master": "jenkins01.openstack.org", + "build_name": "gate-tempest-dsvm-neutron-large-ops", + "build_node": "devstack-trusty-hpcloud-b4-35481", + "build_patchset": "2", + "build_queue": "check", + "build_ref": "refs/zuul/master/Zc0282d33606c457fb2c1de28140fcad6", + "build_short_uuid": "c85db90", + "build_status": "FAILURE", + "build_uuid": "c85db905550a4f50a9f33bb56aec07e3", + "error_pr": -7.9332, + "filename": "console.html", + "host": "127.0.0.1:56890", + "log_url": "http://logs.openstack.org/92/136792/2/check/gate-tempest-dsvm-neutron-large-ops/c85db90/console.html", + "message": "Looks like the node went offline during the build. Check the slave log for the details.FATAL: /var/lib/jenkins/logs/slaves/devstack-trusty-hpcloud-b4-35481/slave.log (No such file or directory)", + "project": "openstack/tempest", + "received_at": "2014-11-24 23:00:39 UTC", + "tags": [ + "console.html", + "console" + ], + "type": "jenkins" + }, + "_type": "jenkins", + "sort": [ + 1416869830621 + ] + }, + { + "_id": "oZAEXJUyRpSaEYIJpldVQg", + "_index": "logstash-2014.11.24", + "_score": null, + "_source": { + "@timestamp": "2014-11-24T22:57:02.630+00:00", + "@version": "1", + "build_branch": "master", + "build_change": "136772", + "build_master": "jenkins06.openstack.org", + "build_name": "check-tempest-dsvm-full", + "build_node": "devstack-trusty-rax-dfw-35563", + "build_patchset": "2", + "build_queue": "check", + "build_ref": "refs/zuul/master/Z208e92672b8146bb8300fb2e1199effe", + "build_short_uuid": "5a56951", + "build_status": "FAILURE", + "build_uuid": "5a56951cbfa24fb89248e035ec18cf8e", + "filename": "console.html", + "host": "127.0.0.1:56902", + "log_url": "http://logs.openstack.org/72/136772/2/check/check-tempest-dsvm-full/5a56951/console.html", + "message": "Looks like the node went offline during the build. Check the slave log for the details.FATAL: /var/lib/jenkins/logs/slaves/devstack-trusty-rax-dfw-35563/slave.log (No such file or directory)", + "project": "openstack/nova", + "received_at": "2014-11-24 23:04:45 UTC", + "tags": [ + "console.html", + "console" + ], + "type": "jenkins" + }, + "_type": "jenkins", + "sort": [ + 1416869822630 + ] + }, + { + "_id": "LQYRA9sgS-6dHdDrTpNf8Q", + "_index": "logstash-2014.11.24", + "_score": null, + "_source": { + "@timestamp": "2014-11-24T22:57:02.096+00:00", + "@version": "1", + "build_branch": "master", + "build_change": "135139", + "build_master": "jenkins07.openstack.org", + "build_name": "check-tempest-dsvm-neutron-full", + "build_node": "devstack-trusty-hpcloud-b2-34882", + "build_patchset": "7", + "build_queue": "check", + "build_ref": "refs/zuul/master/Z51b015db669a4de388c5b50cb22c1ae9", + "build_short_uuid": "22b8bd6", + "build_status": "FAILURE", + "build_uuid": "22b8bd6ba08a423d963efbc3716462e4", + "error_pr": -7.5878, + "filename": "console.html", + "host": "127.0.0.1:33365", + "log_url": "http://logs.openstack.org/39/135139/7/check/check-tempest-dsvm-neutron-full/22b8bd6/console.html", + "message": "Looks like the node went offline during the build. Check the slave log for the details.FATAL: /var/lib/jenkins/logs/slaves/devstack-trusty-hpcloud-b2-34882/slave.log (No such file or directory)", + "project": "openstack/cinder", + "received_at": "2014-11-24 22:59:10 UTC", + "tags": [ + "console.html", + "console" + ], + "type": "jenkins" + }, + "_type": "jenkins", + "sort": [ + 1416869822096 + ] + }, + { + "_id": "vq6C1X_WRVeiCqYD3kRUTQ", + "_index": "logstash-2014.11.24", + "_score": null, + "_source": { + "@timestamp": "2014-11-24T22:57:00.257+00:00", + "@version": "1", + "build_branch": "master", + "build_change": "131860", + "build_master": "jenkins07.openstack.org", + "build_name": "check-tempest-dsvm-postgres-full", + "build_node": "devstack-trusty-hpcloud-b5-35107", + "build_patchset": "10", + "build_queue": "check", + "build_ref": "refs/zuul/master/Z6a8e17b7995948ac8260cddafed9eddc", + "build_short_uuid": "db8a712", + "build_status": "FAILURE", + "build_uuid": "db8a7124906e41caaa596cd6e3f71ef0", + "error_pr": -7.6125, + "filename": "console.html", + "host": "127.0.0.1:33365", + "log_url": "http://logs.openstack.org/60/131860/10/check/check-tempest-dsvm-postgres-full/db8a712/console.html", + "message": "Looks like the node went offline during the build. Check the slave log for the details.FATAL: /var/lib/jenkins/logs/slaves/devstack-trusty-hpcloud-b5-35107/slave.log (No such file or directory)", + "project": "openstack/cinder", + "received_at": "2014-11-24 22:58:00 UTC", + "tags": [ + "console.html", + "console" + ], + "type": "jenkins" + }, + "_type": "jenkins", + "sort": [ + 1416869820257 + ] + }, + { + "_id": "tvF8KRXeRFGHLZBPa_nQ6Q", + "_index": "logstash-2014.11.24", + "_score": null, + "_source": { + "@timestamp": "2014-11-24T22:56:52.214+00:00", + "@version": "1", + "build_branch": "master", + "build_change": "136792", + "build_master": "jenkins06.openstack.org", + "build_name": "gate-tempest-dsvm-large-ops", + "build_node": "devstack-trusty-hpcloud-b1-35353", + "build_patchset": "2", + "build_queue": "check", + "build_ref": "refs/zuul/master/Zc0282d33606c457fb2c1de28140fcad6", + "build_short_uuid": "2f97a47", + "build_status": "FAILURE", + "build_uuid": "2f97a47cc32a47fcbe6a853caa69d665", + "error_pr": -8.377, + "filename": "console.html", + "host": "127.0.0.1:45774", + "log_url": "http://logs.openstack.org/92/136792/2/check/gate-tempest-dsvm-large-ops/2f97a47/console.html", + "message": "Looks like the node went offline during the build. Check the slave log for the details.FATAL: /var/lib/jenkins/logs/slaves/devstack-trusty-hpcloud-b1-35353/slave.log (No such file or directory)", + "project": "openstack/tempest", + "received_at": "2014-11-24 22:57:42 UTC", + "tags": [ + "console.html", + "console" + ], + "type": "jenkins" + }, + "_type": "jenkins", + "sort": [ + 1416869812214 + ] + }, + { + "_id": "n2CJTRoNQDyvu0omsmO9gg", + "_index": "logstash-2014.11.24", + "_score": null, + "_source": { + "@timestamp": "2014-11-24T22:56:50.064+00:00", + "@version": "1", + "build_branch": "master", + "build_change": "136815", + "build_master": "jenkins05.openstack.org", + "build_name": "check-tempest-dsvm-neutron-heat-slow", + "build_node": "devstack-trusty-hpcloud-b5-35504", + "build_patchset": "2", + "build_queue": "check", + "build_ref": "refs/zuul/master/Z4c4f5c2ab55745baa73a69105706da02", + "build_short_uuid": "124c561", + "build_status": "FAILURE", + "build_uuid": "124c56148c884037964099b076c16686", + "error_pr": -8.4482, + "filename": "console.html", + "host": "127.0.0.1:45722", + "log_url": "http://logs.openstack.org/15/136815/2/check/check-tempest-dsvm-neutron-heat-slow/124c561/console.html", + "message": "Looks like the node went offline during the build. Check the slave log for the details.FATAL: /var/lib/jenkins/logs/slaves/devstack-trusty-hpcloud-b5-35504/slave.log (No such file or directory)", + "project": "openstack/tempest", + "received_at": "2014-11-24 22:57:24 UTC", + "tags": [ + "console.html", + "console" + ], + "type": "jenkins" + }, + "_type": "jenkins", + "sort": [ + 1416869810064 + ] + }, + { + "_id": "gqoHLoMoTF6JSfPsCY3Kvg", + "_index": "logstash-2014.11.24", + "_score": null, + "_source": { + "@timestamp": "2014-11-24T22:56:48.894+00:00", + "@version": "1", + "build_branch": "master", + "build_change": "133626", + "build_master": "jenkins05.openstack.org", + "build_name": "gate-tempest-dsvm-neutron-src-python-cinderclient-juno", + "build_node": "devstack-trusty-hpcloud-b3-35057", + "build_patchset": "5", + "build_queue": "check", + "build_ref": "refs/zuul/master/Z08a38449bcdb44f7b6aaac83f2a3ea72", + "build_short_uuid": "557fc8c", + "build_status": "FAILURE", + "build_uuid": "557fc8c821074775bfb8fec6e6883fba", + "error_pr": -7.344, + "filename": "console.html", + "host": "127.0.0.1:42430", + "log_url": "http://logs.openstack.org/26/133626/5/check/gate-tempest-dsvm-neutron-src-python-cinderclient-juno/557fc8c/console.html", + "message": "Looks like the node went offline during the build. Check the slave log for the details.FATAL: /var/lib/jenkins/logs/slaves/devstack-trusty-hpcloud-b3-35057/slave.log (No such file or directory)", + "project": "openstack/python-cinderclient", + "received_at": "2014-11-24 23:05:04 UTC", + "tags": [ + "console.html", + "console" + ], + "type": "jenkins" + }, + "_type": "jenkins", + "sort": [ + 1416869808894 + ] + }, + { + "_id": "eeanNJ_BQBm4tpUjs3pIZg", + "_index": "logstash-2014.11.24", + "_score": null, + "_source": { + "@timestamp": "2014-11-24T22:56:33.750+00:00", + "@version": "1", + "build_branch": "stable/juno", + "build_change": "131780", + "build_master": "jenkins02.openstack.org", + "build_name": "check-tempest-dsvm-full", + "build_node": "devstack-trusty-rax-dfw-35689", + "build_patchset": "3", + "build_queue": "check", + "build_ref": "refs/zuul/stable/juno/Z207131a43e2e42ae864a3e3e5ebdf058", + "build_short_uuid": "7ffc895", + "build_status": "FAILURE", + "build_uuid": "7ffc8956ac37444d8215bca67dde0c34", + "filename": "console.html", + "host": "127.0.0.1:41007", + "log_url": "http://logs.openstack.org/80/131780/3/check/check-tempest-dsvm-full/7ffc895/console.html", + "message": "Looks like the node went offline during the build. Check the slave log for the details.FATAL: /var/lib/jenkins/logs/slaves/devstack-trusty-rax-dfw-35689/slave.log (No such file or directory)", + "project": "openstack/horizon", + "received_at": "2014-11-24 22:57:24 UTC", + "tags": [ + "console.html", + "console" + ], + "type": "jenkins" + }, + "_type": "jenkins", + "sort": [ + 1416869793750 + ] + }, + { + "_id": "-zVPkgS3QOOU2D8IT03HQw", + "_index": "logstash-2014.11.24", + "_score": null, + "_source": { + "@timestamp": "2014-11-24T22:56:26.636+00:00", + "@version": "1", + "build_branch": "master", + "build_change": "129256", + "build_master": "jenkins06.openstack.org", + "build_name": "check-tempest-dsvm-neutron-full", + "build_node": "devstack-trusty-hpcloud-b3-35054", + "build_patchset": "1", + "build_queue": "check", + "build_ref": "refs/zuul/master/Zd1674d93a4d94cb28e65a2b80abd5090", + "build_short_uuid": "4f1e407", + "build_status": "FAILURE", + "build_uuid": "4f1e40719a674967a520d9de9e90b99a", + "error_pr": -7.9299, + "filename": "console.html", + "host": "127.0.0.1:56902", + "log_url": "http://logs.openstack.org/56/129256/1/check/check-tempest-dsvm-neutron-full/4f1e407/console.html", + "message": "Looks like the node went offline during the build. Check the slave log for the details.FATAL: /var/lib/jenkins/logs/slaves/devstack-trusty-hpcloud-b3-35054/slave.log (No such file or directory)", + "project": "openstack/keystone", + "received_at": "2014-11-24 23:06:00 UTC", + "tags": [ + "console.html", + "console" + ], + "type": "jenkins" + }, + "_type": "jenkins", + "sort": [ + 1416869786636 + ] + }, + { + "_id": "50AYnkpUSx-0fEfxBVJtyQ", + "_index": "logstash-2014.11.24", + "_score": null, + "_source": { + "@timestamp": "2014-11-24T22:56:21.335+00:00", + "@version": "1", + "build_branch": "master", + "build_change": "129718", + "build_master": "jenkins01.openstack.org", + "build_name": "gate-tempest-dsvm-neutron-full-2", + "build_node": "devstack-trusty-rax-iad-35655", + "build_patchset": "10", + "build_queue": "gate", + "build_ref": "refs/zuul/master/Ze05acd5902c94322b52ceba72a203dd0", + "build_short_uuid": "ee3cfbf", + "build_status": "FAILURE", + "build_uuid": "ee3cfbf6acb0428e94fd8348643d9f49", + "error_pr": -7.8073, + "filename": "console.html", + "host": "127.0.0.1:56890", + "log_url": "http://logs.openstack.org/18/129718/10/gate/gate-tempest-dsvm-neutron-full-2/ee3cfbf/console.html", + "message": "Looks like the node went offline during the build. Check the slave log for the details.FATAL: /var/lib/jenkins/logs/slaves/devstack-trusty-rax-iad-35655/slave.log (No such file or directory)", + "project": "openstack/neutron", + "received_at": "2014-11-24 23:00:37 UTC", + "tags": [ + "console.html", + "console" + ], + "type": "jenkins" + }, + "_type": "jenkins", + "sort": [ + 1416869781335 + ] + }, + { + "_id": "1Vtp2kUfTX-qWfNJDwGlvA", + "_index": "logstash-2014.11.24", + "_score": null, + "_source": { + "@timestamp": "2014-11-24T22:56:19.527+00:00", + "@version": "1", + "build_branch": "master", + "build_change": "136587", + "build_master": "jenkins01.openstack.org", + "build_name": "check-tempest-dsvm-full", + "build_node": "devstack-trusty-rax-ord-35545", + "build_patchset": "3", + "build_queue": "check", + "build_ref": "refs/zuul/master/Z741b93ad6d374bd3921c22e149b59a47", + "build_short_uuid": "a83218d", + "build_status": "FAILURE", + "build_uuid": "a83218dc2b6640d289551f05eaf80ff6", + "filename": "console.html", + "host": "127.0.0.1:51059", + "log_url": "http://logs.openstack.org/87/136587/3/check/check-tempest-dsvm-full/a83218d/console.html", + "message": "Looks like the node went offline during the build. Check the slave log for the details.FATAL: /var/lib/jenkins/logs/slaves/devstack-trusty-rax-ord-35545/slave.log (No such file or directory)", + "project": "openstack/swift", + "received_at": "2014-11-24 22:57:16 UTC", + "tags": [ + "console.html", + "console" + ], + "type": "jenkins" + }, + "_type": "jenkins", + "sort": [ + 1416869779527 + ] + }, + { + "_id": "Fsb_lgdcRsOZiYFwelvKdQ", + "_index": "logstash-2014.11.24", + "_score": null, + "_source": { + "@timestamp": "2014-11-24T22:56:15.980+00:00", + "@version": "1", + "build_branch": "master", + "build_change": "136266", + "build_master": "jenkins03.openstack.org", + "build_name": "check-tempest-dsvm-postgres-full", + "build_node": "devstack-trusty-rax-dfw-35595", + "build_patchset": "4", + "build_queue": "check", + "build_ref": "refs/zuul/master/Z64c7dc2f6d4c42bdaf70a701e16547ff", + "build_short_uuid": "392ac23", + "build_status": "FAILURE", + "build_uuid": "392ac232b68648db8d4009c2ba906a0f", + "error_pr": -8.6597, + "filename": "console.html", + "host": "127.0.0.1:42358", + "log_url": "http://logs.openstack.org/66/136266/4/check/check-tempest-dsvm-postgres-full/392ac23/console.html", + "message": "Looks like the node went offline during the build. Check the slave log for the details.FATAL: /var/lib/jenkins/logs/slaves/devstack-trusty-rax-dfw-35595/slave.log (No such file or directory)", + "project": "openstack/nova", + "received_at": "2014-11-24 22:56:31 UTC", + "tags": [ + "console.html", + "console" + ], + "type": "jenkins" + }, + "_type": "jenkins", + "sort": [ + 1416869775980 + ] + }, + { + "_id": "NUZHFlwoRlK_JAj1XxYAhw", + "_index": "logstash-2014.11.24", + "_score": null, + "_source": { + "@timestamp": "2014-11-24T22:56:07.244+00:00", + "@version": "1", + "build_branch": "master", + "build_change": "136596", + "build_master": "jenkins04.openstack.org", + "build_name": "check-tempest-dsvm-f20", + "build_node": "devstack-f20-rax-iad-35339", + "build_patchset": "6", + "build_queue": "check", + "build_ref": "refs/zuul/master/Zd495a38646c544e1a4f2a4c14b6b473d", + "build_short_uuid": "208d5a5", + "build_status": "FAILURE", + "build_uuid": "208d5a512ca24022b280853953f18a6e", + "filename": "console.html", + "host": "127.0.0.1:35471", + "log_url": "http://logs.openstack.org/96/136596/6/check/check-tempest-dsvm-f20/208d5a5/console.html", + "message": "Looks like the node went offline during the build. Check the slave log for the details.FATAL: /var/lib/jenkins/logs/slaves/devstack-f20-rax-iad-35339/slave.log (No such file or directory)", + "project": "openstack-infra/devstack-gate", + "received_at": "2014-11-24 22:59:12 UTC", + "tags": [ + "console.html", + "console" + ], + "type": "jenkins" + }, + "_type": "jenkins", + "sort": [ + 1416869767244 + ] + }, + { + "_id": "Zwz7ypL-QTerKo3hanNW9Q", + "_index": "logstash-2014.11.24", + "_score": null, + "_source": { + "@timestamp": "2014-11-24T22:55:59.482+00:00", + "@version": "1", + "build_branch": "master", + "build_change": "130437", + "build_master": "jenkins06.openstack.org", + "build_name": "gate-tempest-dsvm-neutron-src-oslo.messaging", + "build_node": "devstack-trusty-hpcloud-b3-34894", + "build_patchset": "8", + "build_queue": "check", + "build_ref": "refs/zuul/master/Z6b6ab5f6b0b24ce9b87aee5f6fd8d73a", + "build_short_uuid": "5daba13", + "build_status": "FAILURE", + "build_uuid": "5daba13c203f4bd89b34519e7951a2ee", + "error_pr": -8.6867, + "filename": "console.html", + "host": "127.0.0.1:42358", + "log_url": "http://logs.openstack.org/37/130437/8/check/gate-tempest-dsvm-neutron-src-oslo.messaging/5daba13/console.html", + "message": "Looks like the node went offline during the build. Check the slave log for the details.FATAL: /var/lib/jenkins/logs/slaves/devstack-trusty-hpcloud-b3-34894/slave.log (No such file or directory)", + "project": "openstack/oslo.messaging", + "received_at": "2014-11-24 22:57:03 UTC", + "tags": [ + "console.html", + "console" + ], + "type": "jenkins" + }, + "_type": "jenkins", + "sort": [ + 1416869759482 + ] + }, + { + "_id": "stFPzjo3Q4u9jpraq20XTQ", + "_index": "logstash-2014.11.24", + "_score": null, + "_source": { + "@timestamp": "2014-11-24T22:55:57.001+00:00", + "@version": "1", + "build_branch": "master", + "build_change": "136511", + "build_master": "jenkins07.openstack.org", + "build_name": "check-tempest-dsvm-neutron-pg-full", + "build_node": "devstack-trusty-rax-iad-34972", + "build_patchset": "4", + "build_queue": "check", + "build_ref": "refs/zuul/master/Z9e1b73a6bd4840d7919d7871967d3e43", + "build_short_uuid": "12e4257", + "build_status": "FAILURE", + "build_uuid": "12e42575353d430ead9b981cf15579f1", + "error_pr": -7.9343, + "filename": "console.html", + "host": "127.0.0.1:56886", + "log_url": "http://logs.openstack.org/11/136511/4/check/check-tempest-dsvm-neutron-pg-full/12e4257/console.html", + "message": "Looks like the node went offline during the build. Check the slave log for the details.FATAL: /var/lib/jenkins/logs/slaves/devstack-trusty-rax-iad-34972/slave.log (No such file or directory)", + "project": "openstack/neutron", + "received_at": "2014-11-24 23:01:19 UTC", + "tags": [ + "console.html", + "console" + ], + "type": "jenkins" + }, + "_type": "jenkins", + "sort": [ + 1416869757001 + ] + }, + { + "_id": "9bpbfwRKQw-cy6DCI7To0g", + "_index": "logstash-2014.11.24", + "_score": null, + "_source": { + "@timestamp": "2014-11-24T22:55:54.752+00:00", + "@version": "1", + "build_branch": "master", + "build_change": "136054", + "build_master": "jenkins07.openstack.org", + "build_name": "check-tempest-dsvm-postgres-full", + "build_node": "devstack-trusty-hpcloud-b2-35021", + "build_patchset": "3", + "build_queue": "check", + "build_ref": "refs/zuul/master/Za753b29b1c424960b2ca90b90964e694", + "build_short_uuid": "ca7d702", + "build_status": "FAILURE", + "build_uuid": "ca7d70224cab4136b7d662c307b2b75f", + "error_pr": -7.8983, + "filename": "console.html", + "host": "127.0.0.1:56902", + "log_url": "http://logs.openstack.org/54/136054/3/check/check-tempest-dsvm-postgres-full/ca7d702/console.html", + "message": "Looks like the node went offline during the build. Check the slave log for the details.FATAL: /var/lib/jenkins/logs/slaves/devstack-trusty-hpcloud-b2-35021/slave.log (No such file or directory)", + "project": "openstack/nova", + "received_at": "2014-11-24 23:04:43 UTC", + "tags": [ + "console.html", + "console" + ], + "type": "jenkins" + }, + "_type": "jenkins", + "sort": [ + 1416869754752 + ] + }, + { + "_id": "dqMbxmB4TRSYVSDhmHZ1mA", + "_index": "logstash-2014.11.24", + "_score": null, + "_source": { + "@timestamp": "2014-11-24T22:55:50.369+00:00", + "@version": "1", + "build_branch": "master", + "build_change": "136584", + "build_master": "jenkins04.openstack.org", + "build_name": "gate-tempest-dsvm-large-ops", + "build_node": "devstack-trusty-hpcloud-b5-35511", + "build_patchset": "2", + "build_queue": "gate", + "build_ref": "refs/zuul/master/Z111f140ebb14422bb8f998e9fc3c9366", + "build_short_uuid": "0f9b168", + "build_status": "FAILURE", + "build_uuid": "0f9b1685caaf4e6ca9accc77daeb8056", + "error_pr": -7.9013, + "filename": "console.html", + "host": "127.0.0.1:56886", + "log_url": "http://logs.openstack.org/84/136584/2/gate/gate-tempest-dsvm-large-ops/0f9b168/console.html", + "message": "Looks like the node went offline during the build. Check the slave log for the details.FATAL: /var/lib/jenkins/logs/slaves/devstack-trusty-hpcloud-b5-35511/slave.log (No such file or directory)", + "project": "openstack/swift", + "received_at": "2014-11-24 23:00:50 UTC", + "tags": [ + "console.html", + "console" + ], + "type": "jenkins" + }, + "_type": "jenkins", + "sort": [ + 1416869750369 + ] + }, + { + "_id": "LdNYKYeHQkOAJjtXdGotuA", + "_index": "logstash-2014.11.24", + "_score": null, + "_source": { + "@timestamp": "2014-11-24T22:55:40.378+00:00", + "@version": "1", + "build_branch": "master", + "build_change": "125746", + "build_master": "jenkins02.openstack.org", + "build_name": "check-tempest-dsvm-full", + "build_node": "devstack-trusty-rax-dfw-35686", + "build_patchset": "4", + "build_queue": "check", + "build_ref": "refs/zuul/master/Zbff65f90b54143e0b2c23629e9fb4e5e", + "build_short_uuid": "cd2d0d6", + "build_status": "FAILURE", + "build_uuid": "cd2d0d6d3b304988ab6329e4c88d9b7f", + "error_pr": -7.9096, + "filename": "console.html", + "host": "127.0.0.1:56902", + "log_url": "http://logs.openstack.org/46/125746/4/check/check-tempest-dsvm-full/cd2d0d6/console.html", + "message": "Looks like the node went offline during the build. Check the slave log for the details.FATAL: /var/lib/jenkins/logs/slaves/devstack-trusty-rax-dfw-35686/slave.log (No such file or directory)", + "project": "openstack/swift", + "received_at": "2014-11-24 23:03:43 UTC", + "tags": [ + "console.html", + "console" + ], + "type": "jenkins" + }, + "_type": "jenkins", + "sort": [ + 1416869740378 + ] + }, + { + "_id": "QjbOIQhWTHGZMOcgVQ7Sew", + "_index": "logstash-2014.11.24", + "_score": null, + "_source": { + "@timestamp": "2014-11-24T22:55:35.556+00:00", + "@version": "1", + "build_branch": "stable/icehouse", + "build_change": "136798", + "build_master": "jenkins04.openstack.org", + "build_name": "gate-cinder-docs", + "build_node": "bare-precise-rax-iad-35805", + "build_patchset": "1", + "build_queue": "gate", + "build_ref": "refs/zuul/stable/icehouse/Z029d18dced364ed6a0c7abb10362202b", + "build_short_uuid": "7cb03e2", + "build_status": "FAILURE", + "build_uuid": "7cb03e27338348f195ac9cf6bde0ddd7", + "filename": "console.html", + "host": "127.0.0.1:56890", + "log_url": "http://logs.openstack.org/98/136798/1/gate/gate-cinder-docs/7cb03e2/console.html", + "message": "Looks like the node went offline during the build. Check the slave log for the details.FATAL: /var/lib/jenkins/logs/slaves/bare-precise-rax-iad-35805/slave.log (No such file or directory)", + "project": "openstack/cinder", + "received_at": "2014-11-24 23:00:31 UTC", + "tags": [ + "console.html", + "console" + ], + "type": "jenkins" + }, + "_type": "jenkins", + "sort": [ + 1416869735556 + ] + }, + { + "_id": "0gQhKB4YTym6f5oF4aHf2w", + "_index": "logstash-2014.11.24", + "_score": null, + "_source": { + "@timestamp": "2014-11-24T22:55:34.875+00:00", + "@version": "1", + "build_branch": "master", + "build_change": "135533", + "build_master": "jenkins07.openstack.org", + "build_name": "gate-tempest-dsvm-neutron-full", + "build_node": "devstack-trusty-rax-ord-34926", + "build_patchset": "4", + "build_queue": "gate", + "build_ref": "refs/zuul/master/Z9e4fe2f8b3fb4dc4ae4272649f5312f5", + "build_short_uuid": "15dcc35", + "build_status": "FAILURE", + "build_uuid": "15dcc35be7c141d5af84dd907f57b1ed", + "error_pr": -7.9298, + "filename": "console.html", + "host": "127.0.0.1:56890", + "log_url": "http://logs.openstack.org/33/135533/4/gate/gate-tempest-dsvm-neutron-full/15dcc35/console.html", + "message": "Looks like the node went offline during the build. Check the slave log for the details.FATAL: /var/lib/jenkins/logs/slaves/devstack-trusty-rax-ord-34926/slave.log (No such file or directory)", + "project": "openstack/neutron", + "received_at": "2014-11-24 22:59:50 UTC", + "tags": [ + "console.html", + "console" + ], + "type": "jenkins" + }, + "_type": "jenkins", + "sort": [ + 1416869734875 + ] + }, + { + "_id": "jak9GcqPSzWTkDRR1-3Fww", + "_index": "logstash-2014.11.24", + "_score": null, + "_source": { + "@timestamp": "2014-11-24T22:55:33.096+00:00", + "@version": "1", + "build_branch": "master", + "build_change": "134623", + "build_master": "jenkins07.openstack.org", + "build_name": "check-tempest-dsvm-ironic-pxe_ssh", + "build_node": "devstack-trusty-hpcloud-b3-35417", + "build_patchset": "3", + "build_queue": "check", + "build_ref": "refs/zuul/master/Z34fe4766c66d411db29e8e85d8373bb0", + "build_short_uuid": "03bbe12", + "build_status": "FAILURE", + "build_uuid": "03bbe12158094e6190e7522fded3a154", + "error_pr": -7.9351, + "filename": "console.html", + "host": "127.0.0.1:56902", + "log_url": "http://logs.openstack.org/23/134623/3/check/check-tempest-dsvm-ironic-pxe_ssh/03bbe12/console.html", + "message": "Looks like the node went offline during the build. Check the slave log for the details.FATAL: /var/lib/jenkins/logs/slaves/devstack-trusty-hpcloud-b3-35417/slave.log (No such file or directory)", + "project": "openstack/nova", + "received_at": "2014-11-24 23:04:36 UTC", + "tags": [ + "console.html", + "console" + ], + "type": "jenkins" + }, + "_type": "jenkins", + "sort": [ + 1416869733096 + ] + }, + { + "_id": "1ESPzMe0SlCvNSu7sGfZ1g", + "_index": "logstash-2014.11.24", + "_score": null, + "_source": { + "@timestamp": "2014-11-24T22:55:27.893+00:00", + "@version": "1", + "build_branch": "master", + "build_change": "135186", + "build_master": "jenkins07.openstack.org", + "build_name": "check-tempest-dsvm-postgres-full", + "build_node": "devstack-trusty-hpcloud-b5-35108", + "build_patchset": "5", + "build_queue": "check", + "build_ref": "refs/zuul/master/Z51535d76fb074c88b719a135c45e3ad4", + "build_short_uuid": "63aa999", + "build_status": "FAILURE", + "build_uuid": "63aa999cee804b8f89d87f9abebd8055", + "error_pr": -7.582, + "filename": "console.html", + "host": "127.0.0.1:33368", + "log_url": "http://logs.openstack.org/86/135186/5/check/check-tempest-dsvm-postgres-full/63aa999/console.html", + "message": "Looks like the node went offline during the build. Check the slave log for the details.FATAL: /var/lib/jenkins/logs/slaves/devstack-trusty-hpcloud-b5-35108/slave.log (No such file or directory)", + "project": "openstack/ceilometer", + "received_at": "2014-11-24 23:00:16 UTC", + "tags": [ + "console.html", + "console" + ], + "type": "jenkins" + }, + "_type": "jenkins", + "sort": [ + 1416869727893 + ] + }, + { + "_id": "RbDeFLyJQaGaGwdghttUbA", + "_index": "logstash-2014.11.24", + "_score": null, + "_source": { + "@timestamp": "2014-11-24T22:55:18.758+00:00", + "@version": "1", + "build_branch": "master", + "build_change": "135186", + "build_master": "jenkins07.openstack.org", + "build_name": "check-tempest-dsvm-full", + "build_node": "devstack-trusty-hpcloud-b2-35022", + "build_patchset": "5", + "build_queue": "check", + "build_ref": "refs/zuul/master/Z51535d76fb074c88b719a135c45e3ad4", + "build_short_uuid": "34071e0", + "build_status": "FAILURE", + "build_uuid": "34071e0cf95e47d38192b6a4b231367f", + "error_pr": -8.1053, + "filename": "console.html", + "host": "127.0.0.1:47639", + "log_url": "http://logs.openstack.org/86/135186/5/check/check-tempest-dsvm-full/34071e0/console.html", + "message": "Looks like the node went offline during the build. Check the slave log for the details.FATAL: /var/lib/jenkins/logs/slaves/devstack-trusty-hpcloud-b2-35022/slave.log (No such file or directory)", + "project": "openstack/ceilometer", + "received_at": "2014-11-24 22:57:42 UTC", + "tags": [ + "console.html", + "console" + ], + "type": "jenkins" + }, + "_type": "jenkins", + "sort": [ + 1416869718758 + ] + }, + { + "_id": "YrFYUnJlQB6KMFnJXPtzpA", + "_index": "logstash-2014.11.24", + "_score": null, + "_source": { + "@timestamp": "2014-11-24T22:55:14.872+00:00", + "@version": "1", + "build_branch": "stable/icehouse", + "build_change": "136715", + "build_master": "jenkins02.openstack.org", + "build_name": "gate-tempest-dsvm-neutron-2", + "build_node": "devstack-precise-hpcloud-b4-35079", + "build_patchset": "1", + "build_queue": "gate", + "build_ref": "refs/zuul/stable/icehouse/Z405c46e1172d4535a2f0dc072da3984b", + "build_short_uuid": "0879520", + "build_status": "FAILURE", + "build_uuid": "0879520e68a448f1b096903a82cae925", + "error_pr": -7.9087, + "filename": "console.html", + "host": "127.0.0.1:56902", + "log_url": "http://logs.openstack.org/15/136715/1/gate/gate-tempest-dsvm-neutron-2/0879520/console.html", + "message": "Looks like the node went offline during the build. Check the slave log for the details.FATAL: /var/lib/jenkins/logs/slaves/devstack-precise-hpcloud-b4-35079/slave.log (No such file or directory)", + "project": "openstack/neutron", + "received_at": "2014-11-24 23:03:34 UTC", + "tags": [ + "console.html", + "console" + ], + "type": "jenkins" + }, + "_type": "jenkins", + "sort": [ + 1416869714872 + ] + }, + { + "_id": "pmffrAK6T6ycBGapfbM3Dg", + "_index": "logstash-2014.11.24", + "_score": null, + "_source": { + "@timestamp": "2014-11-24T22:55:06.603+00:00", + "@version": "1", + "build_branch": "master", + "build_change": "136792", + "build_master": "jenkins02.openstack.org", + "build_name": "check-tempest-dsvm-neutron-heat-slow-juno", + "build_node": "devstack-trusty-hpcloud-b5-35523", + "build_patchset": "2", + "build_queue": "check", + "build_ref": "refs/zuul/master/Zc0282d33606c457fb2c1de28140fcad6", + "build_short_uuid": "70856fa", + "build_status": "FAILURE", + "build_uuid": "70856faeda9d4a0fa2f70488d42a62f0", + "error_pr": -7.898, + "filename": "console.html", + "host": "127.0.0.1:56902", + "log_url": "http://logs.openstack.org/92/136792/2/check/check-tempest-dsvm-neutron-heat-slow-juno/70856fa/console.html", + "message": "Looks like the node went offline during the build. Check the slave log for the details.FATAL: /var/lib/jenkins/logs/slaves/devstack-trusty-hpcloud-b5-35523/slave.log (No such file or directory)", + "project": "openstack/tempest", + "received_at": "2014-11-24 23:03:21 UTC", + "tags": [ + "console.html", + "console" + ], + "type": "jenkins" + }, + "_type": "jenkins", + "sort": [ + 1416869706603 + ] + }, + { + "_id": "VgvP9wPhRMuiPHTpeGe80Q", + "_index": "logstash-2014.11.24", + "_score": null, + "_source": { + "@timestamp": "2014-11-24T22:54:38.547+00:00", + "@version": "1", + "build_branch": "master", + "build_change": "135798", + "build_master": "jenkins05.openstack.org", + "build_name": "check-tempest-dsvm-postgres-full", + "build_node": "devstack-trusty-rax-ord-35536", + "build_patchset": "3", + "build_queue": "check", + "build_ref": "refs/zuul/master/Z4860175ffb384093a7e70c7d19f72e0b", + "build_short_uuid": "80e5d32", + "build_status": "FAILURE", + "build_uuid": "80e5d32566fc4e32ab074231847e84aa", + "error_pr": -7.9216, + "filename": "console.html", + "host": "127.0.0.1:56890", + "log_url": "http://logs.openstack.org/98/135798/3/check/check-tempest-dsvm-postgres-full/80e5d32/console.html", + "message": "Looks like the node went offline during the build. Check the slave log for the details.FATAL: /var/lib/jenkins/logs/slaves/devstack-trusty-rax-ord-35536/slave.log (No such file or directory)", + "project": "openstack/nova", + "received_at": "2014-11-24 23:00:11 UTC", + "tags": [ + "console.html", + "console" + ], + "type": "jenkins" + }, + "_type": "jenkins", + "sort": [ + 1416869678547 + ] + }, + { + "_id": "e6rvs7ywSyW0aa8pIzd6kA", + "_index": "logstash-2014.11.24", + "_score": null, + "_source": { + "@timestamp": "2014-11-24T22:54:36.589+00:00", + "@version": "1", + "build_branch": "master", + "build_change": "136792", + "build_master": "jenkins07.openstack.org", + "build_name": "check-tempest-dsvm-neutron-heat-slow", + "build_node": "devstack-trusty-hpcloud-b5-35490", + "build_patchset": "2", + "build_queue": "check", + "build_ref": "refs/zuul/master/Zc0282d33606c457fb2c1de28140fcad6", + "build_short_uuid": "9b5fcd8", + "build_status": "FAILURE", + "build_uuid": "9b5fcd848dbc41809b18240e4321cb21", + "error_pr": -7.6161, + "filename": "console.html", + "host": "127.0.0.1:42430", + "log_url": "http://logs.openstack.org/92/136792/2/check/check-tempest-dsvm-neutron-heat-slow/9b5fcd8/console.html", + "message": "Looks like the node went offline during the build. Check the slave log for the details.FATAL: /var/lib/jenkins/logs/slaves/devstack-trusty-hpcloud-b5-35490/slave.log (No such file or directory)", + "project": "openstack/tempest", + "received_at": "2014-11-24 23:01:15 UTC", + "tags": [ + "console.html", + "console" + ], + "type": "jenkins" + }, + "_type": "jenkins", + "sort": [ + 1416869676589 + ] + }, + { + "_id": "ku__4HE-QjSP-WwcS6kAiQ", + "_index": "logstash-2014.11.24", + "_score": null, + "_source": { + "@timestamp": "2014-11-24T22:54:28.692+00:00", + "@version": "1", + "build_branch": "master", + "build_change": "133626", + "build_master": "jenkins01.openstack.org", + "build_name": "gate-tempest-dsvm-src-python-cinderclient", + "build_node": "devstack-trusty-hpcloud-b3-35066", + "build_patchset": "5", + "build_queue": "check", + "build_ref": "refs/zuul/master/Z08a38449bcdb44f7b6aaac83f2a3ea72", + "build_short_uuid": "fa50c5e", + "build_status": "FAILURE", + "build_uuid": "fa50c5e56d3e4928ab3121ecdec2a364", + "error_pr": -7.9066, + "filename": "console.html", + "host": "127.0.0.1:56902", + "log_url": "http://logs.openstack.org/26/133626/5/check/gate-tempest-dsvm-src-python-cinderclient/fa50c5e/console.html", + "message": "Looks like the node went offline during the build. Check the slave log for the details.FATAL: /var/lib/jenkins/logs/slaves/devstack-trusty-hpcloud-b3-35066/slave.log (No such file or directory)", + "project": "openstack/python-cinderclient", + "received_at": "2014-11-24 23:03:20 UTC", + "tags": [ + "console.html", + "console" + ], + "type": "jenkins" + }, + "_type": "jenkins", + "sort": [ + 1416869668692 + ] + }, + { + "_id": "C5_eQgVRRKyAX8ktnbomhw", + "_index": "logstash-2014.11.24", + "_score": null, + "_source": { + "@timestamp": "2014-11-24T22:54:26.960+00:00", + "@version": "1", + "build_branch": "master", + "build_change": "135798", + "build_master": "jenkins04.openstack.org", + "build_name": "check-tempest-dsvm-full", + "build_node": "devstack-trusty-rax-ord-35539", + "build_patchset": "3", + "build_queue": "check", + "build_ref": "refs/zuul/master/Z4860175ffb384093a7e70c7d19f72e0b", + "build_short_uuid": "94de629", + "build_status": "FAILURE", + "build_uuid": "94de6293a19a4507aec25b9317e1b202", + "error_pr": -7.9018, + "filename": "console.html", + "host": "127.0.0.1:56902", + "log_url": "http://logs.openstack.org/98/135798/3/check/check-tempest-dsvm-full/94de629/console.html", + "message": "Looks like the node went offline during the build. Check the slave log for the details.FATAL: /var/lib/jenkins/logs/slaves/devstack-trusty-rax-ord-35539/slave.log (No such file or directory)", + "project": "openstack/nova", + "received_at": "2014-11-24 23:02:59 UTC", + "tags": [ + "console.html", + "console" + ], + "type": "jenkins" + }, + "_type": "jenkins", + "sort": [ + 1416869666960 + ] + }, + { + "_id": "2gumQXB2SLqRl8FuvB2L1Q", + "_index": "logstash-2014.11.24", + "_score": null, + "_source": { + "@timestamp": "2014-11-24T22:54:24.156+00:00", + "@version": "1", + "build_branch": "master", + "build_change": "136817", + "build_master": "jenkins03.openstack.org", + "build_name": "gate-tempest-dsvm-largeops-src-oslo.db", + "build_node": "devstack-trusty-hpcloud-b1-35379", + "build_patchset": "1", + "build_queue": "check", + "build_ref": "refs/zuul/master/Z7eef710064864723bdf4166bb12e185a", + "build_short_uuid": "6c659d1", + "build_status": "FAILURE", + "build_uuid": "6c659d1bcbdc41bd99c81a0448300386", + "error_pr": -7.8971, + "filename": "console.html", + "host": "127.0.0.1:56902", + "log_url": "http://logs.openstack.org/17/136817/1/check/gate-tempest-dsvm-largeops-src-oslo.db/6c659d1/console.html", + "message": "Looks like the node went offline during the build. Check the slave log for the details.FATAL: /var/lib/jenkins/logs/slaves/devstack-trusty-hpcloud-b1-35379/slave.log (No such file or directory)", + "project": "openstack/oslo.db", + "received_at": "2014-11-24 23:02:54 UTC", + "tags": [ + "console.html", + "console" + ], + "type": "jenkins" + }, + "_type": "jenkins", + "sort": [ + 1416869664156 + ] + }, + { + "_id": "rfjymGtvSMiSNNo8QyxNNw", + "_index": "logstash-2014.11.24", + "_score": null, + "_source": { + "@timestamp": "2014-11-24T22:54:22.550+00:00", + "@version": "1", + "build_branch": "master", + "build_change": "128259", + "build_master": "jenkins05.openstack.org", + "build_name": "gate-tempest-dsvm-neutron-large-ops", + "build_node": "devstack-trusty-hpcloud-b3-35425", + "build_patchset": "7", + "build_queue": "check", + "build_ref": "refs/zuul/master/Z5df899561117425ca6d6dfb19b9c9985", + "build_short_uuid": "eeeb015", + "build_status": "FAILURE", + "build_uuid": "eeeb015aa2264fe4892f331e6064ab0c", + "error_pr": -8.1144, + "filename": "console.html", + "host": "127.0.0.1:47639", + "log_url": "http://logs.openstack.org/59/128259/7/check/gate-tempest-dsvm-neutron-large-ops/eeeb015/console.html", + "message": "Looks like the node went offline during the build. Check the slave log for the details.FATAL: /var/lib/jenkins/logs/slaves/devstack-trusty-hpcloud-b3-35425/slave.log (No such file or directory)", + "project": "openstack/neutron", + "received_at": "2014-11-24 22:55:56 UTC", + "tags": [ + "console.html", + "console" + ], + "type": "jenkins" + }, + "_type": "jenkins", + "sort": [ + 1416869662550 + ] + }, + { + "_id": "nJZfvySgRaGR5nITWbAXWQ", + "_index": "logstash-2014.11.24", + "_score": null, + "_source": { + "@timestamp": "2014-11-24T22:54:03.597+00:00", + "@version": "1", + "build_branch": "master", + "build_change": "128259", + "build_master": "jenkins07.openstack.org", + "build_name": "check-tempest-dsvm-neutron-heat-slow", + "build_node": "devstack-trusty-hpcloud-b1-35347", + "build_patchset": "7", + "build_queue": "check", + "build_ref": "refs/zuul/master/Z5df899561117425ca6d6dfb19b9c9985", + "build_short_uuid": "0aa035f", + "build_status": "FAILURE", + "build_uuid": "0aa035f71b7448b093eae508dc806b16", + "error_pr": -7.9279, + "filename": "console.html", + "host": "127.0.0.1:56902", + "log_url": "http://logs.openstack.org/59/128259/7/check/check-tempest-dsvm-neutron-heat-slow/0aa035f/console.html", + "message": "Looks like the node went offline during the build. Check the slave log for the details.FATAL: /var/lib/jenkins/logs/slaves/devstack-trusty-hpcloud-b1-35347/slave.log (No such file or directory)", + "project": "openstack/neutron", + "received_at": "2014-11-24 23:02:53 UTC", + "tags": [ + "console.html", + "console" + ], + "type": "jenkins" + }, + "_type": "jenkins", + "sort": [ + 1416869643597 + ] + }, + { + "_id": "QaJpJQTmSbqm-hWQxMKkfQ", + "_index": "logstash-2014.11.24", + "_score": null, + "_source": { + "@timestamp": "2014-11-24T22:53:38.416+00:00", + "@version": "1", + "build_branch": "master", + "build_change": "136895", + "build_master": "jenkins02.openstack.org", + "build_name": "check-tripleo-ironic-undercloud-precise-nonha", + "build_node": "tripleo-precise-tripleo-test-cloud-rh1-35294", + "build_patchset": "1", + "build_queue": "check-tripleo", + "build_ref": "refs/zuul/master/Z639ba396eab948ef8d2ca2aeff4b335e", + "build_short_uuid": "8700a65", + "build_status": "FAILURE", + "build_uuid": "8700a65aab634366b102371381e70be7", + "filename": "console.html", + "host": "127.0.0.1:56890", + "log_url": "http://logs.openstack.org/95/136895/1/check-tripleo/check-tripleo-ironic-undercloud-precise-nonha/8700a65/console.html", + "message": "Looks like the node went offline during the build. Check the slave log for the details.FATAL: /var/lib/jenkins/logs/slaves/tripleo-precise-tripleo-test-cloud-rh1-35294/slave.log (No such file or directory)", + "project": "openstack/tripleo-image-elements", + "received_at": "2014-11-24 22:59:12 UTC", + "tags": [ + "console.html", + "console" + ], + "type": "jenkins" + }, + "_type": "jenkins", + "sort": [ + 1416869618416 + ] + }, + { + "_id": "S4HairpRQQ6RwThPP69fRA", + "_index": "logstash-2014.11.24", + "_score": null, + "_source": { + "@timestamp": "2014-11-24T22:53:37.258+00:00", + "@version": "1", + "build_branch": "master", + "build_change": "136054", + "build_master": "jenkins04.openstack.org", + "build_name": "check-tempest-dsvm-full", + "build_node": "devstack-trusty-hpcloud-b4-35086", + "build_patchset": "3", + "build_queue": "check", + "build_ref": "refs/zuul/master/Za753b29b1c424960b2ca90b90964e694", + "build_short_uuid": "919e0da", + "build_status": "FAILURE", + "build_uuid": "919e0daadb0145c9b7da64a0bb92df64", + "error_pr": -7.9084, + "filename": "console.html", + "host": "127.0.0.1:56902", + "log_url": "http://logs.openstack.org/54/136054/3/check/check-tempest-dsvm-full/919e0da/console.html", + "message": "Looks like the node went offline during the build. Check the slave log for the details.FATAL: /var/lib/jenkins/logs/slaves/devstack-trusty-hpcloud-b4-35086/slave.log (No such file or directory)", + "project": "openstack/nova", + "received_at": "2014-11-24 23:02:53 UTC", + "tags": [ + "console.html", + "console" + ], + "type": "jenkins" + }, + "_type": "jenkins", + "sort": [ + 1416869617258 + ] + }, + { + "_id": "UW8PEScZQvW8uL9Vr2HlYQ", + "_index": "logstash-2014.11.24", + "_score": null, + "_source": { + "@timestamp": "2014-11-24T22:53:36.489+00:00", + "@version": "1", + "build_branch": "master", + "build_change": "128258", + "build_master": "jenkins02.openstack.org", + "build_name": "gate-tempest-dsvm-neutron-large-ops", + "build_node": "devstack-trusty-hpcloud-b3-35441", + "build_patchset": "6", + "build_queue": "check", + "build_ref": "refs/zuul/master/Z4c06b9a790de462a8e22165e963cc310", + "build_short_uuid": "b927a40", + "build_status": "FAILURE", + "build_uuid": "b927a406275943149db485293962460a", + "error_pr": -7.7143, + "filename": "console.html", + "host": "127.0.0.1:36517", + "log_url": "http://logs.openstack.org/58/128258/6/check/gate-tempest-dsvm-neutron-large-ops/b927a40/console.html", + "message": "Looks like the node went offline during the build. Check the slave log for the details.FATAL: /var/lib/jenkins/logs/slaves/devstack-trusty-hpcloud-b3-35441/slave.log (No such file or directory)", + "project": "openstack/neutron", + "received_at": "2014-11-24 22:54:11 UTC", + "tags": [ + "console.html", + "console" + ], + "type": "jenkins" + }, + "_type": "jenkins", + "sort": [ + 1416869616489 + ] + }, + { + "_id": "fNf5PIH0TyO8p8fZSol_Ow", + "_index": "logstash-2014.11.24", + "_score": null, + "_source": { + "@timestamp": "2014-11-24T22:53:29.061+00:00", + "@version": "1", + "build_branch": "master", + "build_change": "128258", + "build_master": "jenkins03.openstack.org", + "build_name": "check-tempest-dsvm-neutron-heat-slow", + "build_node": "devstack-trusty-hpcloud-b5-35515", + "build_patchset": "6", + "build_queue": "check", + "build_ref": "refs/zuul/master/Z4c06b9a790de462a8e22165e963cc310", + "build_short_uuid": "55e0a9d", + "build_status": "FAILURE", + "build_uuid": "55e0a9dd8a3f434fb5ab49871b629d11", + "error_pr": -7.929, + "filename": "console.html", + "host": "127.0.0.1:56902", + "log_url": "http://logs.openstack.org/58/128258/6/check/check-tempest-dsvm-neutron-heat-slow/55e0a9d/console.html", + "message": "Looks like the node went offline during the build. Check the slave log for the details.FATAL: /var/lib/jenkins/logs/slaves/devstack-trusty-hpcloud-b5-35515/slave.log (No such file or directory)", + "project": "openstack/neutron", + "received_at": "2014-11-24 23:02:30 UTC", + "tags": [ + "console.html", + "console" + ], + "type": "jenkins" + }, + "_type": "jenkins", + "sort": [ + 1416869609061 + ] + }, + { + "_id": "Q_H1hoNPR0uNcr3a00qQgw", + "_index": "logstash-2014.11.24", + "_score": null, + "_source": { + "@timestamp": "2014-11-24T22:53:18.103+00:00", + "@version": "1", + "build_branch": "master", + "build_change": "134347", + "build_master": "jenkins06.openstack.org", + "build_name": "check-tempest-dsvm-full", + "build_node": "devstack-trusty-hpcloud-b2-35026", + "build_patchset": "4", + "build_queue": "check", + "build_ref": "refs/zuul/master/Z2232d6fc83bb43589e1d3d99c265e6fa", + "build_short_uuid": "0a8521a", + "build_status": "FAILURE", + "build_uuid": "0a8521a976bc4424b61aafe9b67a00a7", + "error_pr": -7.4705, + "filename": "console.html", + "host": "127.0.0.1:42420", + "log_url": "http://logs.openstack.org/47/134347/4/check/check-tempest-dsvm-full/0a8521a/console.html", + "message": "Looks like the node went offline during the build. Check the slave log for the details.FATAL: /var/lib/jenkins/logs/slaves/devstack-trusty-hpcloud-b2-35026/slave.log (No such file or directory)", + "project": "openstack/swift", + "received_at": "2014-11-24 23:01:46 UTC", + "tags": [ + "console.html", + "console" + ], + "type": "jenkins" + }, + "_type": "jenkins", + "sort": [ + 1416869598103 + ] + }, + { + "_id": "ruUf290aTD-klvhkx1f7ag", + "_index": "logstash-2014.11.24", + "_score": null, + "_source": { + "@timestamp": "2014-11-24T22:53:16.821+00:00", + "@version": "1", + "build_branch": "master", + "build_change": "123000", + "build_master": "jenkins06.openstack.org", + "build_name": "gate-tempest-dsvm-neutron-large-ops", + "build_node": "devstack-trusty-hpcloud-b5-35493", + "build_patchset": "8", + "build_queue": "check", + "build_ref": "refs/zuul/master/Z691e99a0995047ac80548dfecf5373b5", + "build_short_uuid": "8faa759", + "build_status": "FAILURE", + "build_uuid": "8faa7592ff844f5ab88663096393d669", + "error_pr": -8.0968, + "filename": "console.html", + "host": "127.0.0.1:47661", + "log_url": "http://logs.openstack.org/00/123000/8/check/gate-tempest-dsvm-neutron-large-ops/8faa759/console.html", + "message": "Looks like the node went offline during the build. Check the slave log for the details.FATAL: /var/lib/jenkins/logs/slaves/devstack-trusty-hpcloud-b5-35493/slave.log (No such file or directory)", + "project": "openstack/neutron", + "received_at": "2014-11-24 22:56:56 UTC", + "tags": [ + "console.html", + "console" + ], + "type": "jenkins" + }, + "_type": "jenkins", + "sort": [ + 1416869596821 + ] + }, + { + "_id": "QwCW_wuXRtu4cJ0k64e_gA", + "_index": "logstash-2014.11.24", + "_score": null, + "_source": { + "@timestamp": "2014-11-24T22:53:04.429+00:00", + "@version": "1", + "build_branch": "master", + "build_change": "135874", + "build_master": "jenkins03.openstack.org", + "build_name": "check-grenade-dsvm", + "build_node": "devstack-trusty-rax-dfw-35597", + "build_patchset": "6", + "build_queue": "check", + "build_ref": "refs/zuul/master/Zb148d3e42df5471f9efc37067107cfa1", + "build_short_uuid": "8e47c0c", + "build_status": "FAILURE", + "build_uuid": "8e47c0c9c57c4469bdf39eb94ecadad9", + "error_pr": -7.9359, + "filename": "console.html", + "host": "127.0.0.1:56890", + "log_url": "http://logs.openstack.org/74/135874/6/check/check-grenade-dsvm/8e47c0c/console.html", + "message": "Looks like the node went offline during the build. Check the slave log for the details.FATAL: /var/lib/jenkins/logs/slaves/devstack-trusty-rax-dfw-35597/slave.log (No such file or directory)", + "project": "openstack/cinder", + "received_at": "2014-11-24 22:53:47 UTC", + "tags": [ + "console.html", + "console" + ], + "type": "jenkins" + }, + "_type": "jenkins", + "sort": [ + 1416869584429 + ] + }, + { + "_id": "9kE1drPuSv22Xxh_vHyXdA", + "_index": "logstash-2014.11.24", + "_score": null, + "_source": { + "@timestamp": "2014-11-24T22:53:02.577+00:00", + "@version": "1", + "build_branch": "master", + "build_change": "135503", + "build_master": "jenkins03.openstack.org", + "build_name": "check-tempest-dsvm-full", + "build_node": "devstack-trusty-hpcloud-b4-34909", + "build_patchset": "2", + "build_queue": "check", + "build_ref": "refs/zuul/master/Z6c7812a87041416296aba4ce8cf9a22b", + "build_short_uuid": "cbf8802", + "build_status": "FAILURE", + "build_uuid": "cbf88022f1764c1cb64b96e9eb9fe142", + "error_pr": -7.9028, + "filename": "console.html", + "host": "127.0.0.1:56890", + "log_url": "http://logs.openstack.org/03/135503/2/check/check-tempest-dsvm-full/cbf8802/console.html", + "message": "Looks like the node went offline during the build. Check the slave log for the details.FATAL: /var/lib/jenkins/logs/slaves/devstack-trusty-hpcloud-b4-34909/slave.log (No such file or directory)", + "project": "openstack-dev/devstack", + "received_at": "2014-11-24 22:53:49 UTC", + "tags": [ + "console.html", + "console" + ], + "type": "jenkins" + }, + "_type": "jenkins", + "sort": [ + 1416869582577 + ] + }, + { + "_id": "fiai7hxISAiVM_JxcFV2zw", + "_index": "logstash-2014.11.24", + "_score": null, + "_source": { + "@timestamp": "2014-11-24T22:52:56.677+00:00", + "@version": "1", + "build_branch": "feature/lbaasv2", + "build_change": "123485", + "build_master": "jenkins01.openstack.org", + "build_name": "gate-neutron-pylint", + "build_node": "bare-trusty-rax-ord-33671", + "build_patchset": "9", + "build_queue": "gate", + "build_ref": "refs/zuul/feature/lbaasv2/Zbac151662e1e4ac888c5792d6bf350ea", + "build_short_uuid": "68926fc", + "build_status": "FAILURE", + "build_uuid": "68926fcbda80492d8e6e8833917cb27f", + "error_pr": -8.3615, + "filename": "console.html", + "host": "127.0.0.1:54442", + "log_url": "http://logs.openstack.org/85/123485/9/gate/gate-neutron-pylint/68926fc/console.html", + "message": "Looks like the node went offline during the build. Check the slave log for the details.FATAL: /var/lib/jenkins/logs/slaves/bare-trusty-rax-ord-33671/slave.log (No such file or directory)", + "project": "openstack/neutron", + "received_at": "2014-11-24 23:06:28 UTC", + "tags": [ + "console.html", + "console" + ], + "type": "jenkins" + }, + "_type": "jenkins", + "sort": [ + 1416869576677 + ] + }, + { + "_id": "aWz6QuqWSr6PpPOg2nb5VA", + "_index": "logstash-2014.11.24", + "_score": null, + "_source": { + "@timestamp": "2014-11-24T22:52:52.682+00:00", + "@version": "1", + "build_branch": "master", + "build_change": "136584", + "build_master": "jenkins05.openstack.org", + "build_name": "gate-tempest-dsvm-neutron-heat-slow", + "build_node": "devstack-trusty-hpcloud-b1-35365", + "build_patchset": "2", + "build_queue": "gate", + "build_ref": "refs/zuul/master/Z111f140ebb14422bb8f998e9fc3c9366", + "build_short_uuid": "b094331", + "build_status": "FAILURE", + "build_uuid": "b094331328504a5c8fa65e99132e0692", + "error_pr": -7.9251, + "filename": "console.html", + "host": "127.0.0.1:56902", + "log_url": "http://logs.openstack.org/84/136584/2/gate/gate-tempest-dsvm-neutron-heat-slow/b094331/console.html", + "message": "Looks like the node went offline during the build. Check the slave log for the details.FATAL: /var/lib/jenkins/logs/slaves/devstack-trusty-hpcloud-b1-35365/slave.log (No such file or directory)", + "project": "openstack/swift", + "received_at": "2014-11-24 23:02:12 UTC", + "tags": [ + "console.html", + "console" + ], + "type": "jenkins" + }, + "_type": "jenkins", + "sort": [ + 1416869572682 + ] + }, + { + "_id": "4d_NSdk1R0y7KkpNlqefhw", + "_index": "logstash-2014.11.24", + "_score": null, + "_source": { + "@timestamp": "2014-11-24T22:52:51.568+00:00", + "@version": "1", + "build_branch": "master", + "build_change": "136792", + "build_master": "jenkins01.openstack.org", + "build_name": "gate-tempest-dsvm-neutron-large-ops-juno", + "build_node": "devstack-trusty-rax-dfw-35750", + "build_patchset": "2", + "build_queue": "check", + "build_ref": "refs/zuul/master/Zc0282d33606c457fb2c1de28140fcad6", + "build_short_uuid": "01ce07f", + "build_status": "FAILURE", + "build_uuid": "01ce07f119db4bec8ce20247f57a3a1b", + "error_pr": -7.9217, + "filename": "console.html", + "host": "127.0.0.1:56902", + "log_url": "http://logs.openstack.org/92/136792/2/check/gate-tempest-dsvm-neutron-large-ops-juno/01ce07f/console.html", + "message": "Looks like the node went offline during the build. Check the slave log for the details.FATAL: /var/lib/jenkins/logs/slaves/devstack-trusty-rax-dfw-35750/slave.log (No such file or directory)", + "project": "openstack/tempest", + "received_at": "2014-11-24 23:02:08 UTC", + "tags": [ + "console.html", + "console" + ], + "type": "jenkins" + }, + "_type": "jenkins", + "sort": [ + 1416869571568 + ] + }, + { + "_id": "ZkOqvhVyQYOlby4Ivq9lmQ", + "_index": "logstash-2014.11.24", + "_score": null, + "_source": { + "@timestamp": "2014-11-24T22:52:45.017+00:00", + "@version": "1", + "build_branch": "master", + "build_change": "108793", + "build_master": "jenkins07.openstack.org", + "build_name": "check-grenade-dsvm", + "build_node": "devstack-trusty-rax-iad-35632", + "build_patchset": "9", + "build_queue": "check", + "build_ref": "refs/zuul/master/Zad0fe9ade78f44739c51d3caaaa21a6c", + "build_short_uuid": "9ca3359", + "build_status": "FAILURE", + "build_uuid": "9ca3359417a64c1a83078c7cc5801b56", + "error_pr": -8.1052, + "filename": "console.html", + "host": "127.0.0.1:47661", + "log_url": "http://logs.openstack.org/93/108793/9/check/check-grenade-dsvm/9ca3359/console.html", + "message": "Looks like the node went offline during the build. Check the slave log for the details.FATAL: /var/lib/jenkins/logs/slaves/devstack-trusty-rax-iad-35632/slave.log (No such file or directory)", + "project": "openstack/horizon", + "received_at": "2014-11-24 22:56:58 UTC", + "tags": [ + "console.html", + "console" + ], + "type": "jenkins" + }, + "_type": "jenkins", + "sort": [ + 1416869565017 + ] + }, + { + "_id": "HOVsIvfpRBS7tIfP0CkjnQ", + "_index": "logstash-2014.11.24", + "_score": null, + "_source": { + "@timestamp": "2014-11-24T22:52:07.568+00:00", + "@version": "1", + "build_branch": "master", + "build_change": "115334", + "build_master": "jenkins07.openstack.org", + "build_name": "gate-tempest-dsvm-large-ops", + "build_node": "devstack-trusty-hpcloud-b1-35350", + "build_patchset": "10", + "build_queue": "check", + "build_ref": "refs/zuul/master/Z0891ff76d015464b952390e2c805bbf5", + "build_short_uuid": "baa0951", + "build_status": "FAILURE", + "build_uuid": "baa09512c3f14381a232c06dca8c1eff", + "error_pr": -8.7826, + "filename": "console.html", + "host": "127.0.0.1:33969", + "log_url": "http://logs.openstack.org/34/115334/10/check/gate-tempest-dsvm-large-ops/baa0951/console.html", + "message": "Looks like the node went offline during the build. Check the slave log for the details.FATAL: /var/lib/jenkins/logs/slaves/devstack-trusty-hpcloud-b1-35350/slave.log (No such file or directory)", + "project": "openstack/nova", + "received_at": "2014-11-24 22:52:28 UTC", + "tags": [ + "console.html", + "console" + ], + "type": "jenkins" + }, + "_type": "jenkins", + "sort": [ + 1416869527568 + ] + }, + { + "_id": "vHITrI_5QPejrlfHNIQ2IA", + "_index": "logstash-2014.11.24", + "_score": null, + "_source": { + "@timestamp": "2014-11-24T22:52:06.546+00:00", + "@version": "1", + "build_branch": "master", + "build_change": "134347", + "build_master": "jenkins02.openstack.org", + "build_name": "check-tempest-dsvm-postgres-full", + "build_node": "devstack-trusty-hpcloud-b5-34922", + "build_patchset": "4", + "build_queue": "check", + "build_ref": "refs/zuul/master/Z2232d6fc83bb43589e1d3d99c265e6fa", + "build_short_uuid": "0c4e1a9", + "build_status": "FAILURE", + "build_uuid": "0c4e1a93a4f64f25ab62289af4ddbba3", + "error_pr": -7.8952, + "filename": "console.html", + "host": "127.0.0.1:56890", + "log_url": "http://logs.openstack.org/47/134347/4/check/check-tempest-dsvm-postgres-full/0c4e1a9/console.html", + "message": "Looks like the node went offline during the build. Check the slave log for the details.FATAL: /var/lib/jenkins/logs/slaves/devstack-trusty-hpcloud-b5-34922/slave.log (No such file or directory)", + "project": "openstack/swift", + "received_at": "2014-11-24 22:53:36 UTC", + "tags": [ + "console.html", + "console" + ], + "type": "jenkins" + }, + "_type": "jenkins", + "sort": [ + 1416869526546 + ] + }, + { + "_id": "Q1ah6cjuS0unECoD1u3-1w", + "_index": "logstash-2014.11.24", + "_score": null, + "_source": { + "@timestamp": "2014-11-24T22:52:06.018+00:00", + "@version": "1", + "build_branch": "master", + "build_change": "136799", + "build_master": "jenkins04.openstack.org", + "build_name": "gate-tempest-dsvm-neutron-heat-slow", + "build_node": "devstack-trusty-hpcloud-b5-35510", + "build_patchset": "1", + "build_queue": "gate", + "build_ref": "refs/zuul/master/Z58648a0df698415fa9aba671d3f61026", + "build_short_uuid": "1783f1b", + "build_status": "FAILURE", + "build_uuid": "1783f1b9e916459ea9cf152a35d28b1d", + "error_pr": -8.3409, + "filename": "console.html", + "host": "127.0.0.1:54457", + "log_url": "http://logs.openstack.org/99/136799/1/gate/gate-tempest-dsvm-neutron-heat-slow/1783f1b/console.html", + "message": "Looks like the node went offline during the build. Check the slave log for the details.FATAL: /var/lib/jenkins/logs/slaves/devstack-trusty-hpcloud-b5-35510/slave.log (No such file or directory)", + "project": "openstack/ceilometer", + "received_at": "2014-11-24 23:06:40 UTC", + "tags": [ + "console.html", + "console" + ], + "type": "jenkins" + }, + "_type": "jenkins", + "sort": [ + 1416869526018 + ] + }, + { + "_id": "BvYSnt4ZQHGmcNuyfZvWEg", + "_index": "logstash-2014.11.24", + "_score": null, + "_source": { + "@timestamp": "2014-11-24T22:52:05.609+00:00", + "@version": "1", + "build_branch": "master", + "build_change": "109853", + "build_master": "jenkins04.openstack.org", + "build_name": "gate-tempest-dsvm-ceilometer-mongodb-full", + "build_node": "devstack-trusty-hpcloud-b2-35030", + "build_patchset": "16", + "build_queue": "check", + "build_ref": "refs/zuul/master/Z161c1653570645a4a286a17deeb921a4", + "build_short_uuid": "0222af4", + "build_status": "FAILURE", + "build_uuid": "0222af45ea6a43539a93c6c7e9ce840b", + "error_pr": -7.8786, + "filename": "console.html", + "host": "127.0.0.1:56893", + "log_url": "http://logs.openstack.org/53/109853/16/check/gate-tempest-dsvm-ceilometer-mongodb-full/0222af4/console.html", + "message": "Looks like the node went offline during the build. Check the slave log for the details.FATAL: /var/lib/jenkins/logs/slaves/devstack-trusty-hpcloud-b2-35030/slave.log (No such file or directory)", + "project": "openstack/ceilometer", + "received_at": "2014-11-24 23:02:52 UTC", + "tags": [ + "console.html", + "console" + ], + "type": "jenkins" + }, + "_type": "jenkins", + "sort": [ + 1416869525609 + ] + }, + { + "_id": "4WNpxIc8QLCke9mY8TbMkQ", + "_index": "logstash-2014.11.24", + "_score": null, + "_source": { + "@timestamp": "2014-11-24T22:51:59.944+00:00", + "@version": "1", + "build_branch": "master", + "build_change": "127923", + "build_master": "jenkins07.openstack.org", + "build_name": "check-tempest-dsvm-neutron-full", + "build_node": "devstack-trusty-hpcloud-b1-34878", + "build_patchset": "5", + "build_queue": "check", + "build_ref": "refs/zuul/master/Zb4e719aa4bd54f718c6fd5d66a484518", + "build_short_uuid": "6a508f4", + "build_status": "FAILURE", + "build_uuid": "6a508f47cccc4efe9fb6bd3731213a43", + "error_pr": -7.6105, + "filename": "console.html", + "host": "127.0.0.1:33368", + "log_url": "http://logs.openstack.org/23/127923/5/check/check-tempest-dsvm-neutron-full/6a508f4/console.html", + "message": "Looks like the node went offline during the build. Check the slave log for the details.FATAL: /var/lib/jenkins/logs/slaves/devstack-trusty-hpcloud-b1-34878/slave.log (No such file or directory)", + "project": "openstack/glance", + "received_at": "2014-11-24 22:58:24 UTC", + "tags": [ + "console.html", + "console" + ], + "type": "jenkins" + }, + "_type": "jenkins", + "sort": [ + 1416869519944 + ] + }, + { + "_id": "WBCv8KL0Q7C1gjYawqg8LA", + "_index": "logstash-2014.11.24", + "_score": null, + "_source": { + "@timestamp": "2014-11-24T22:51:57.470+00:00", + "@version": "1", + "build_branch": "master", + "build_change": "135704", + "build_master": "jenkins04.openstack.org", + "build_name": "check-tripleo-ironic-overcloud-precise-nonha", + "build_node": "tripleo-precise-tripleo-test-cloud-rh1-35291", + "build_patchset": "5", + "build_queue": "check-tripleo", + "build_ref": "refs/zuul/master/Z0a21f713f3f24ea89e68cdb687614806", + "build_short_uuid": "a716bf5", + "build_status": "FAILURE", + "build_uuid": "a716bf5ccb314f3cb6c20373bb82d299", + "filename": "console.html", + "host": "127.0.0.1:35471", + "log_url": "http://logs.openstack.org/04/135704/5/check-tripleo/check-tripleo-ironic-overcloud-precise-nonha/a716bf5/console.html", + "message": "Looks like the node went offline during the build. Check the slave log for the details.FATAL: /var/lib/jenkins/logs/slaves/tripleo-precise-tripleo-test-cloud-rh1-35291/slave.log (No such file or directory)", + "project": "openstack/heat", + "received_at": "2014-11-24 22:54:11 UTC", + "tags": [ + "console.html", + "console" + ], + "type": "jenkins" + }, + "_type": "jenkins", + "sort": [ + 1416869517470 + ] + }, + { + "_id": "WXuhqF9FQ06KR6taVauIfw", + "_index": "logstash-2014.11.24", + "_score": null, + "_source": { + "@timestamp": "2014-11-24T22:51:38.731+00:00", + "@version": "1", + "build_branch": "master", + "build_change": "133904", + "build_master": "jenkins02.openstack.org", + "build_name": "gate-tempest-dsvm-large-ops", + "build_node": "devstack-trusty-hpcloud-b3-35437", + "build_patchset": "3", + "build_queue": "check", + "build_ref": "refs/zuul/master/Za5c1598a7f81424a94f6da3ace79847c", + "build_short_uuid": "996bd19", + "build_status": "FAILURE", + "build_uuid": "996bd19b0bb8419dbc8e049c24c2aa4e", + "error_pr": -7.9231, + "filename": "console.html", + "host": "127.0.0.1:56886", + "log_url": "http://logs.openstack.org/04/133904/3/check/gate-tempest-dsvm-large-ops/996bd19/console.html", + "message": "Looks like the node went offline during the build. Check the slave log for the details.FATAL: /var/lib/jenkins/logs/slaves/devstack-trusty-hpcloud-b3-35437/slave.log (No such file or directory)", + "project": "openstack/nova", + "received_at": "2014-11-24 22:54:15 UTC", + "tags": [ + "console.html", + "console" + ], + "type": "jenkins" + }, + "_type": "jenkins", + "sort": [ + 1416869498731 + ] + }, + { + "_id": "peEq8aEpQFqSvahDGy_1nA", + "_index": "logstash-2014.11.24", + "_score": null, + "_source": { + "@timestamp": "2014-11-24T22:51:38.533+00:00", + "@version": "1", + "build_branch": "master", + "build_change": "136891", + "build_master": "jenkins07.openstack.org", + "build_name": "check-tripleo-ironic-overcloud-precise-nonha", + "build_node": "tripleo-precise-tripleo-test-cloud-rh1-34173", + "build_patchset": "1", + "build_queue": "check-tripleo", + "build_ref": "refs/zuul/master/Zbf112501c0a840b9a50043870544d17c", + "build_short_uuid": "98df29c", + "build_status": "FAILURE", + "build_uuid": "98df29c780fb47429a12fa3e10d8cfa5", + "filename": "console.html", + "host": "127.0.0.1:56886", + "log_url": "http://logs.openstack.org/91/136891/1/check-tripleo/check-tripleo-ironic-overcloud-precise-nonha/98df29c/console.html", + "message": "Looks like the node went offline during the build. Check the slave log for the details.FATAL: /var/lib/jenkins/logs/slaves/tripleo-precise-tripleo-test-cloud-rh1-34173/slave.log (No such file or directory)", + "project": "openstack/tripleo-heat-templates", + "received_at": "2014-11-24 22:59:17 UTC", + "tags": [ + "console.html", + "console" + ], + "type": "jenkins" + }, + "_type": "jenkins", + "sort": [ + 1416869498533 + ] + }, + { + "_id": "d_gmCPBjQG2xKKDE73VZqQ", + "_index": "logstash-2014.11.24", + "_score": null, + "_source": { + "@timestamp": "2014-11-24T22:51:31.753+00:00", + "@version": "1", + "build_branch": "master", + "build_change": "136799", + "build_master": "jenkins04.openstack.org", + "build_name": "gate-swift-dsvm-functional", + "build_node": "devstack-trusty-hpcloud-b3-35427", + "build_patchset": "1", + "build_queue": "gate", + "build_ref": "refs/zuul/master/Z58648a0df698415fa9aba671d3f61026", + "build_short_uuid": "3e9794d", + "build_status": "FAILURE", + "build_uuid": "3e9794da9b9c4ae6a1beed4f699c9d7e", + "error_pr": -7.7273, + "filename": "console.html", + "host": "127.0.0.1:56905", + "log_url": "http://logs.openstack.org/99/136799/1/gate/gate-swift-dsvm-functional/3e9794d/console.html", + "message": "Looks like the node went offline during the build. Check the slave log for the details.FATAL: /var/lib/jenkins/logs/slaves/devstack-trusty-hpcloud-b3-35427/slave.log (No such file or directory)", + "project": "openstack/ceilometer", + "received_at": "2014-11-24 22:52:35 UTC", + "tags": [ + "console.html", + "console" + ], + "type": "jenkins" + }, + "_type": "jenkins", + "sort": [ + 1416869491753 + ] + }, + { + "_id": "CpILlk5RSAeRRWAVYfH4KA", + "_index": "logstash-2014.11.24", + "_score": null, + "_source": { + "@timestamp": "2014-11-24T22:51:25.600+00:00", + "@version": "1", + "build_branch": "master", + "build_change": "136772", + "build_master": "jenkins05.openstack.org", + "build_name": "check-tempest-dsvm-docker", + "build_node": "devstack-trusty-rax-dfw-35575", + "build_patchset": "2", + "build_queue": "check", + "build_ref": "refs/zuul/master/Z208e92672b8146bb8300fb2e1199effe", + "build_short_uuid": "b1662fd", + "build_status": "FAILURE", + "build_uuid": "b1662fd8957b47ce8daa104ede4846e1", + "error_pr": -9.0147, + "filename": "console.html", + "host": "127.0.0.1:56195", + "log_url": "http://logs.openstack.org/72/136772/2/check/check-tempest-dsvm-docker/b1662fd/console.html", + "message": "Looks like the node went offline during the build. Check the slave log for the details.FATAL: /var/lib/jenkins/logs/slaves/devstack-trusty-rax-dfw-35575/slave.log (No such file or directory)", + "project": "openstack/nova", + "received_at": "2014-11-24 22:51:47 UTC", + "tags": [ + "console.html", + "console" + ], + "type": "jenkins" + }, + "_type": "jenkins", + "sort": [ + 1416869485600 + ] + }, + { + "_id": "_yQWYkk9TiabOXogdDUKnQ", + "_index": "logstash-2014.11.24", + "_score": null, + "_source": { + "@timestamp": "2014-11-24T22:51:21.876+00:00", + "@version": "1", + "build_branch": "master", + "build_change": "136882", + "build_master": "jenkins04.openstack.org", + "build_name": "check-tripleo-ironic-overcloud-f20-nonha", + "build_node": "tripleo-f20-tripleo-test-cloud-rh1-34631", + "build_patchset": "1", + "build_queue": "check-tripleo", + "build_ref": "refs/zuul/master/Zcabed1bf30654fa2ae4112421c5a0c09", + "build_short_uuid": "e8219b9", + "build_status": "FAILURE", + "build_uuid": "e8219b9d686d4b8f9a5889e3b4e4ffc1", + "error_pr": -8.5517, + "filename": "console.html", + "host": "127.0.0.1:47873", + "log_url": "http://logs.openstack.org/82/136882/1/check-tripleo/check-tripleo-ironic-overcloud-f20-nonha/e8219b9/console.html", + "message": "Looks like the node went offline during the build. Check the slave log for the details.FATAL: /var/lib/jenkins/logs/slaves/tripleo-f20-tripleo-test-cloud-rh1-34631/slave.log (No such file or directory)", + "project": "openstack/tripleo-heat-templates", + "received_at": "2014-11-24 22:55:16 UTC", + "tags": [ + "console.html", + "console" + ], + "type": "jenkins" + }, + "_type": "jenkins", + "sort": [ + 1416869481876 + ] + }, + { + "_id": "-15iAd5HSkKD4TsiscJU_Q", + "_index": "logstash-2014.11.24", + "_score": null, + "_source": { + "@timestamp": "2014-11-24T22:51:21.541+00:00", + "@version": "1", + "build_branch": "master", + "build_change": "135503", + "build_master": "jenkins02.openstack.org", + "build_name": "check-tempest-dsvm-centos7", + "build_node": "devstack-centos7-rax-dfw-35155", + "build_patchset": "2", + "build_queue": "check", + "build_ref": "refs/zuul/master/Z6c7812a87041416296aba4ce8cf9a22b", + "build_short_uuid": "80a97b9", + "build_status": "FAILURE", + "build_uuid": "80a97b9271c1486697619875e80f6b11", + "error_pr": -8.9972, + "filename": "console.html", + "host": "127.0.0.1:44751", + "log_url": "http://logs.openstack.org/03/135503/2/check/check-tempest-dsvm-centos7/80a97b9/console.html", + "message": "Looks like the node went offline during the build. Check the slave log for the details.FATAL: /var/lib/jenkins/logs/slaves/devstack-centos7-rax-dfw-35155/slave.log (No such file or directory)", + "project": "openstack-dev/devstack", + "received_at": "2014-11-24 22:51:33 UTC", + "tags": [ + "console.html", + "console" + ], + "type": "jenkins" + }, + "_type": "jenkins", + "sort": [ + 1416869481541 + ] + }, + { + "_id": "9Elazf2sTa-6c1EJWyhTXw", + "_index": "logstash-2014.11.24", + "_score": null, + "_source": { + "@timestamp": "2014-11-24T22:51:21.161+00:00", + "@version": "1", + "build_branch": "master", + "build_change": "136266", + "build_master": "jenkins05.openstack.org", + "build_name": "check-tempest-dsvm-docker", + "build_node": "devstack-trusty-rax-dfw-35580", + "build_patchset": "4", + "build_queue": "check", + "build_ref": "refs/zuul/master/Z64c7dc2f6d4c42bdaf70a701e16547ff", + "build_short_uuid": "7823f50", + "build_status": "FAILURE", + "build_uuid": "7823f5078e214797a966dd522643cf2b", + "error_pr": -7.8767, + "filename": "console.html", + "host": "127.0.0.1:56902", + "log_url": "http://logs.openstack.org/66/136266/4/check/check-tempest-dsvm-docker/7823f50/console.html", + "message": "Looks like the node went offline during the build. Check the slave log for the details.FATAL: /var/lib/jenkins/logs/slaves/devstack-trusty-rax-dfw-35580/slave.log (No such file or directory)", + "project": "openstack/nova", + "received_at": "2014-11-24 23:01:52 UTC", + "tags": [ + "console.html", + "console" + ], + "type": "jenkins" + }, + "_type": "jenkins", + "sort": [ + 1416869481161 + ] + }, + { + "_id": "7itzGt13TUWpAhZBnQ3Ggg", + "_index": "logstash-2014.11.24", + "_score": null, + "_source": { + "@timestamp": "2014-11-24T22:51:10.904+00:00", + "@version": "1", + "build_branch": "master", + "build_change": "115334", + "build_master": "jenkins03.openstack.org", + "build_name": "gate-tempest-dsvm-neutron-large-ops", + "build_node": "devstack-trusty-hpcloud-b3-35433", + "build_patchset": "10", + "build_queue": "check", + "build_ref": "refs/zuul/master/Z0891ff76d015464b952390e2c805bbf5", + "build_short_uuid": "67b0bff", + "build_status": "FAILURE", + "build_uuid": "67b0bff80c1a4ced9763335cd0c886d2", + "error_pr": -7.1227, + "filename": "console.html", + "host": "127.0.0.1:35466", + "log_url": "http://logs.openstack.org/34/115334/10/check/gate-tempest-dsvm-neutron-large-ops/67b0bff/console.html", + "message": "Looks like the node went offline during the build. Check the slave log for the details.FATAL: /var/lib/jenkins/logs/slaves/devstack-trusty-hpcloud-b3-35433/slave.log (No such file or directory)", + "project": "openstack/nova", + "received_at": "2014-11-24 22:51:49 UTC", + "tags": [ + "console.html", + "console" + ], + "type": "jenkins" + }, + "_type": "jenkins", + "sort": [ + 1416869470904 + ] + }, + { + "_id": "KGc0vQFzS3iy3BqsDXD9iw", + "_index": "logstash-2014.11.24", + "_score": null, + "_source": { + "@timestamp": "2014-11-24T22:51:10.724+00:00", + "@version": "1", + "build_branch": "master", + "build_change": "136529", + "build_master": "jenkins05.openstack.org", + "build_name": "gate-tempest-dsvm-neutron-large-ops", + "build_node": "devstack-trusty-hpcloud-b4-35459", + "build_patchset": "1", + "build_queue": "check", + "build_ref": "refs/zuul/master/Ze22d254309504be788abc066e2cfc586", + "build_short_uuid": "c0c924d", + "build_status": "FAILURE", + "build_uuid": "c0c924d2f2b24083a78e0109ab528a02", + "error_pr": -7.9112, + "filename": "console.html", + "host": "127.0.0.1:56902", + "log_url": "http://logs.openstack.org/29/136529/1/check/gate-tempest-dsvm-neutron-large-ops/c0c924d/console.html", + "message": "Looks like the node went offline during the build. Check the slave log for the details.FATAL: /var/lib/jenkins/logs/slaves/devstack-trusty-hpcloud-b4-35459/slave.log (No such file or directory)", + "project": "openstack/neutron", + "received_at": "2014-11-24 23:01:53 UTC", + "tags": [ + "console.html", + "console" + ], + "type": "jenkins" + }, + "_type": "jenkins", + "sort": [ + 1416869470724 + ] + }, + { + "_id": "ICT9_ZR1ReuiqlLnQhj1Jw", + "_index": "logstash-2014.11.24", + "_score": null, + "_source": { + "@timestamp": "2014-11-24T22:51:08.092+00:00", + "@version": "1", + "build_branch": "stable/icehouse", + "build_change": "136715", + "build_master": "jenkins03.openstack.org", + "build_name": "gate-tempest-dsvm-neutron-pg", + "build_node": "devstack-precise-hpcloud-b3-35048", + "build_patchset": "1", + "build_queue": "gate", + "build_ref": "refs/zuul/stable/icehouse/Z405c46e1172d4535a2f0dc072da3984b", + "build_short_uuid": "a877b3f", + "build_status": "FAILURE", + "build_uuid": "a877b3fe6f814aa7b6e6fca970c31d3f", + "error_pr": -7.9011, + "filename": "console.html", + "host": "127.0.0.1:56902", + "log_url": "http://logs.openstack.org/15/136715/1/gate/gate-tempest-dsvm-neutron-pg/a877b3f/console.html", + "message": "Looks like the node went offline during the build. Check the slave log for the details.FATAL: /var/lib/jenkins/logs/slaves/devstack-precise-hpcloud-b3-35048/slave.log (No such file or directory)", + "project": "openstack/neutron", + "received_at": "2014-11-24 23:02:04 UTC", + "tags": [ + "console.html", + "console" + ], + "type": "jenkins" + }, + "_type": "jenkins", + "sort": [ + 1416869468092 + ] + }, + { + "_id": "SrntpribSIqjxyx-IOcRYg", + "_index": "logstash-2014.11.24", + "_score": null, + "_source": { + "@timestamp": "2014-11-24T22:51:06.101+00:00", + "@version": "1", + "build_branch": "master", + "build_change": "136586", + "build_master": "jenkins04.openstack.org", + "build_name": "check-tempest-dsvm-postgres-full", + "build_node": "devstack-trusty-rax-ord-34929", + "build_patchset": "2", + "build_queue": "check", + "build_ref": "refs/zuul/master/Z354b9f910872466f90141a86573c4c1f", + "build_short_uuid": "e4d86c4", + "build_status": "FAILURE", + "build_uuid": "e4d86c4331784c52bb40114ac8747de0", + "error_pr": -8.361, + "filename": "console.html", + "host": "127.0.0.1:45722", + "log_url": "http://logs.openstack.org/86/136586/2/check/check-tempest-dsvm-postgres-full/e4d86c4/console.html", + "message": "Looks like the node went offline during the build. Check the slave log for the details.FATAL: /var/lib/jenkins/logs/slaves/devstack-trusty-rax-ord-34929/slave.log (No such file or directory)", + "project": "openstack/swift", + "received_at": "2014-11-24 22:51:48 UTC", + "tags": [ + "console.html", + "console" + ], + "type": "jenkins" + }, + "_type": "jenkins", + "sort": [ + 1416869466101 + ] + }, + { + "_id": "htisSDG1TU2IL7Mxd3DYaA", + "_index": "logstash-2014.11.24", + "_score": null, + "_source": { + "@timestamp": "2014-11-24T22:51:05.589+00:00", + "@version": "1", + "build_branch": "master", + "build_change": "129256", + "build_master": "jenkins04.openstack.org", + "build_name": "check-tempest-dsvm-postgres-full", + "build_node": "devstack-trusty-hpcloud-b3-34897", + "build_patchset": "1", + "build_queue": "check", + "build_ref": "refs/zuul/master/Zd1674d93a4d94cb28e65a2b80abd5090", + "build_short_uuid": "45a24fa", + "build_status": "FAILURE", + "build_uuid": "45a24fa34b7648b8b00ce976694c79fc", + "filename": "console.html", + "host": "127.0.0.1:56890", + "log_url": "http://logs.openstack.org/56/129256/1/check/check-tempest-dsvm-postgres-full/45a24fa/console.html", + "message": "Looks like the node went offline during the build. Check the slave log for the details.FATAL: /var/lib/jenkins/logs/slaves/devstack-trusty-hpcloud-b3-34897/slave.log (No such file or directory)", + "project": "openstack/keystone", + "received_at": "2014-11-24 22:53:09 UTC", + "tags": [ + "console.html", + "console" + ], + "type": "jenkins" + }, + "_type": "jenkins", + "sort": [ + 1416869465589 + ] + }, + { + "_id": "6haJxBjITKmte-JNZ2Rjqw", + "_index": "logstash-2014.11.24", + "_score": null, + "_source": { + "@timestamp": "2014-11-24T22:51:04.228+00:00", + "@version": "1", + "build_branch": "master", + "build_change": "136584", + "build_master": "jenkins03.openstack.org", + "build_name": "gate-tempest-dsvm-neutron-large-ops", + "build_node": "devstack-trusty-rax-ord-35733", + "build_patchset": "2", + "build_queue": "gate", + "build_ref": "refs/zuul/master/Z111f140ebb14422bb8f998e9fc3c9366", + "build_short_uuid": "b177da3", + "build_status": "FAILURE", + "build_uuid": "b177da3d1fef4853bd3e635eb7f96f2c", + "error_pr": -8.9734, + "filename": "console.html", + "host": "127.0.0.1:56189", + "log_url": "http://logs.openstack.org/84/136584/2/gate/gate-tempest-dsvm-neutron-large-ops/b177da3/console.html", + "message": "Looks like the node went offline during the build. Check the slave log for the details.FATAL: /var/lib/jenkins/logs/slaves/devstack-trusty-rax-ord-35733/slave.log (No such file or directory)", + "project": "openstack/swift", + "received_at": "2014-11-24 22:51:33 UTC", + "tags": [ + "console.html", + "console" + ], + "type": "jenkins" + }, + "_type": "jenkins", + "sort": [ + 1416869464228 + ] + }, + { + "_id": "NaowG--fTgWSnxWM9j7zgQ", + "_index": "logstash-2014.11.24", + "_score": null, + "_source": { + "@timestamp": "2014-11-24T22:50:54.746+00:00", + "@version": "1", + "build_branch": "master", + "build_change": "136880", + "build_master": "jenkins02.openstack.org", + "build_name": "check-tripleo-ironic-overcloud-f20-nonha", + "build_node": "tripleo-f20-tripleo-test-cloud-rh1-34172", + "build_patchset": "1", + "build_queue": "check-tripleo", + "build_ref": "refs/zuul/master/Zfb9eb50f18834ec897d6eedff284baa0", + "build_short_uuid": "4b946fb", + "build_status": "FAILURE", + "build_uuid": "4b946fbafe5f4224beceafd2b1010753", + "filename": "console.html", + "host": "127.0.0.1:41007", + "log_url": "http://logs.openstack.org/80/136880/1/check-tripleo/check-tripleo-ironic-overcloud-f20-nonha/4b946fb/console.html", + "message": "Looks like the node went offline during the build. Check the slave log for the details.FATAL: /var/lib/jenkins/logs/slaves/tripleo-f20-tripleo-test-cloud-rh1-34172/slave.log (No such file or directory)", + "project": "openstack/tripleo-incubator", + "received_at": "2014-11-24 22:54:57 UTC", + "tags": [ + "console.html", + "console" + ], + "type": "jenkins" + }, + "_type": "jenkins", + "sort": [ + 1416869454746 + ] + }, + { + "_id": "6wZIxEPhRya4rGvMZx9csg", + "_index": "logstash-2014.11.24", + "_score": null, + "_source": { + "@timestamp": "2014-11-24T22:50:42.664+00:00", + "@version": "1", + "build_branch": "master", + "build_change": "136772", + "build_master": "jenkins01.openstack.org", + "build_name": "check-grenade-dsvm", + "build_node": "devstack-trusty-rax-dfw-35692", + "build_patchset": "2", + "build_queue": "check", + "build_ref": "refs/zuul/master/Z208e92672b8146bb8300fb2e1199effe", + "build_short_uuid": "bc4da1f", + "build_status": "FAILURE", + "build_uuid": "bc4da1f07a574a55ad8031c00e86f1a7", + "error_pr": -7.912, + "filename": "console.html", + "host": "127.0.0.1:56890", + "log_url": "http://logs.openstack.org/72/136772/2/check/check-grenade-dsvm/bc4da1f/console.html", + "message": "Looks like the node went offline during the build. Check the slave log for the details.FATAL: /var/lib/jenkins/logs/slaves/devstack-trusty-rax-dfw-35692/slave.log (No such file or directory)", + "project": "openstack/nova", + "received_at": "2014-11-24 22:51:51 UTC", + "tags": [ + "console.html", + "console" + ], + "type": "jenkins" + }, + "_type": "jenkins", + "sort": [ + 1416869442664 + ] + }, + { + "_id": "Y2H2fyRDTb6zvC4DOKoJeA", + "_index": "logstash-2014.11.24", + "_score": null, + "_source": { + "@timestamp": "2014-11-24T22:50:40.437+00:00", + "@version": "1", + "build_branch": "master", + "build_change": "135139", + "build_master": "jenkins06.openstack.org", + "build_name": "check-tempest-dsvm-full", + "build_node": "devstack-trusty-hpcloud-b5-35110", + "build_patchset": "7", + "build_queue": "check", + "build_ref": "refs/zuul/master/Z51b015db669a4de388c5b50cb22c1ae9", + "build_short_uuid": "3e959d4", + "build_status": "FAILURE", + "build_uuid": "3e959d436c4d467ea2971b032cd46de7", + "error_pr": -7.9199, + "filename": "console.html", + "host": "127.0.0.1:56890", + "log_url": "http://logs.openstack.org/39/135139/7/check/check-tempest-dsvm-full/3e959d4/console.html", + "message": "Looks like the node went offline during the build. Check the slave log for the details.FATAL: /var/lib/jenkins/logs/slaves/devstack-trusty-hpcloud-b5-35110/slave.log (No such file or directory)", + "project": "openstack/cinder", + "received_at": "2014-11-24 22:52:55 UTC", + "tags": [ + "console.html", + "console" + ], + "type": "jenkins" + }, + "_type": "jenkins", + "sort": [ + 1416869440437 + ] + }, + { + "_id": "p0wELEKtSX-M4qCkQXdfsw", + "_index": "logstash-2014.11.24", + "_score": null, + "_source": { + "@timestamp": "2014-11-24T22:50:39.440+00:00", + "@version": "1", + "build_branch": "master", + "build_change": "126330", + "build_master": "jenkins06.openstack.org", + "build_name": "gate-tempest-dsvm-largeops-src-oslo.messaging", + "build_node": "devstack-trusty-hpcloud-b3-35053", + "build_patchset": "14", + "build_queue": "check", + "build_ref": "refs/zuul/master/Zdcab5a318e5e4365a37257d71a22dd5b", + "build_short_uuid": "e4a43f7", + "build_status": "FAILURE", + "build_uuid": "e4a43f790cad4d6492145cdd088f8b82", + "error_pr": -7.9246, + "filename": "console.html", + "host": "127.0.0.1:56902", + "log_url": "http://logs.openstack.org/30/126330/14/check/gate-tempest-dsvm-largeops-src-oslo.messaging/e4a43f7/console.html", + "message": "Looks like the node went offline during the build. Check the slave log for the details.FATAL: /var/lib/jenkins/logs/slaves/devstack-trusty-hpcloud-b3-35053/slave.log (No such file or directory)", + "project": "openstack/oslo.messaging", + "received_at": "2014-11-24 23:01:32 UTC", + "tags": [ + "console.html", + "console" + ], + "type": "jenkins" + }, + "_type": "jenkins", + "sort": [ + 1416869439440 + ] + }, + { + "_id": "q4ps4gmGT--ckIHibGUbhA", + "_index": "logstash-2014.11.24", + "_score": null, + "_source": { + "@timestamp": "2014-11-24T22:50:34.667+00:00", + "@version": "1", + "build_branch": "master", + "build_change": "109853", + "build_master": "jenkins06.openstack.org", + "build_name": "check-tempest-dsvm-full", + "build_node": "devstack-trusty-hpcloud-b2-35025", + "build_patchset": "16", + "build_queue": "check", + "build_ref": "refs/zuul/master/Z161c1653570645a4a286a17deeb921a4", + "build_short_uuid": "0de8a1b", + "build_status": "FAILURE", + "build_uuid": "0de8a1b978864fbbbcf555d18e0940a5", + "error_pr": -7.4761, + "filename": "console.html", + "host": "127.0.0.1:42430", + "log_url": "http://logs.openstack.org/53/109853/16/check/check-tempest-dsvm-full/0de8a1b/console.html", + "message": "Looks like the node went offline during the build. Check the slave log for the details.FATAL: /var/lib/jenkins/logs/slaves/devstack-trusty-hpcloud-b2-35025/slave.log (No such file or directory)", + "project": "openstack/ceilometer", + "received_at": "2014-11-24 22:55:53 UTC", + "tags": [ + "console.html", + "console" + ], + "type": "jenkins" + }, + "_type": "jenkins", + "sort": [ + 1416869434667 + ] + }, + { + "_id": "_Ut_fPtwTrmXliXikvFNpg", + "_index": "logstash-2014.11.24", + "_score": null, + "_source": { + "@timestamp": "2014-11-24T22:50:34.280+00:00", + "@version": "1", + "build_branch": "master", + "build_change": "133626", + "build_master": "jenkins06.openstack.org", + "build_name": "gate-tempest-dsvm-src-python-cinderclient-juno", + "build_node": "devstack-trusty-hpcloud-b3-34895", + "build_patchset": "5", + "build_queue": "check", + "build_ref": "refs/zuul/master/Z08a38449bcdb44f7b6aaac83f2a3ea72", + "build_short_uuid": "2a5c00a", + "build_status": "FAILURE", + "build_uuid": "2a5c00a501e346b39ca9e86210976de6", + "filename": "console.html", + "host": "127.0.0.1:56890", + "log_url": "http://logs.openstack.org/26/133626/5/check/gate-tempest-dsvm-src-python-cinderclient-juno/2a5c00a/console.html", + "message": "Looks like the node went offline during the build. Check the slave log for the details.FATAL: /var/lib/jenkins/logs/slaves/devstack-trusty-hpcloud-b3-34895/slave.log (No such file or directory)", + "project": "openstack/python-cinderclient", + "received_at": "2014-11-24 22:53:33 UTC", + "tags": [ + "console.html", + "console" + ], + "type": "jenkins" + }, + "_type": "jenkins", + "sort": [ + 1416869434280 + ] + }, + { + "_id": "tPgdwo_hTUuUKwKUJRWVAA", + "_index": "logstash-2014.11.24", + "_score": null, + "_source": { + "@timestamp": "2014-11-24T22:50:26.935+00:00", + "@version": "1", + "build_branch": "master", + "build_change": "135260", + "build_master": "jenkins04.openstack.org", + "build_name": "check-tempest-dsvm-neutron-full", + "build_node": "devstack-trusty-rax-ord-35147", + "build_patchset": "6", + "build_queue": "check", + "build_ref": "refs/zuul/master/Z3b77290eed324dc09001b9f93d552ace", + "build_short_uuid": "9f01e9d", + "build_status": "FAILURE", + "build_uuid": "9f01e9d4c87c447b966bbc7079b67205", + "error_pr": -7.8999, + "filename": "console.html", + "host": "127.0.0.1:56902", + "log_url": "http://logs.openstack.org/60/135260/6/check/check-tempest-dsvm-neutron-full/9f01e9d/console.html", + "message": "Looks like the node went offline during the build. Check the slave log for the details.FATAL: /var/lib/jenkins/logs/slaves/devstack-trusty-rax-ord-35147/slave.log (No such file or directory)", + "project": "openstack/nova", + "received_at": "2014-11-24 23:01:39 UTC", + "tags": [ + "console.html", + "console" + ], + "type": "jenkins" + }, + "_type": "jenkins", + "sort": [ + 1416869426935 + ] + }, + { + "_id": "6kHmZ45xTBerKrVEH6oNcg", + "_index": "logstash-2014.11.24", + "_score": null, + "_source": { + "@timestamp": "2014-11-24T22:50:22.172+00:00", + "@version": "1", + "build_branch": "master", + "build_change": "136266", + "build_master": "jenkins04.openstack.org", + "build_name": "check-grenade-dsvm", + "build_node": "devstack-trusty-rax-dfw-35584", + "build_patchset": "4", + "build_queue": "check", + "build_ref": "refs/zuul/master/Z64c7dc2f6d4c42bdaf70a701e16547ff", + "build_short_uuid": "9f8d08a", + "build_status": "FAILURE", + "build_uuid": "9f8d08a7b046451b85c20338f4815450", + "error_pr": -7.9304, + "filename": "console.html", + "host": "127.0.0.1:56890", + "log_url": "http://logs.openstack.org/66/136266/4/check/check-grenade-dsvm/9f8d08a/console.html", + "message": "Looks like the node went offline during the build. Check the slave log for the details.FATAL: /var/lib/jenkins/logs/slaves/devstack-trusty-rax-dfw-35584/slave.log (No such file or directory)", + "project": "openstack/nova", + "received_at": "2014-11-24 22:51:30 UTC", + "tags": [ + "console.html", + "console" + ], + "type": "jenkins" + }, + "_type": "jenkins", + "sort": [ + 1416869422172 + ] + }, + { + "_id": "9EsXYBZDSj2GLp7kbZyHOQ", + "_index": "logstash-2014.11.24", + "_score": null, + "_source": { + "@timestamp": "2014-11-24T22:50:03.135+00:00", + "@version": "1", + "build_branch": "master", + "build_change": "135086", + "build_master": "jenkins04.openstack.org", + "build_name": "gate-tempest-dsvm-neutron-src-python-saharaclient", + "build_node": "devstack-trusty-rax-ord-35146", + "build_patchset": "2", + "build_queue": "check", + "build_ref": "refs/zuul/master/Z8b3e3548fdf8419a85a2f14da8a87620", + "build_short_uuid": "ad78b6c", + "build_status": "FAILURE", + "build_uuid": "ad78b6c717ed4e7baaaadec50994f577", + "error_pr": -7.8908, + "filename": "console.html", + "host": "127.0.0.1:56890", + "log_url": "http://logs.openstack.org/86/135086/2/check/gate-tempest-dsvm-neutron-src-python-saharaclient/ad78b6c/console.html", + "message": "Looks like the node went offline during the build. Check the slave log for the details.FATAL: /var/lib/jenkins/logs/slaves/devstack-trusty-rax-ord-35146/slave.log (No such file or directory)", + "project": "openstack/python-saharaclient", + "received_at": "2014-11-24 22:51:46 UTC", + "tags": [ + "console.html", + "console" + ], + "type": "jenkins" + }, + "_type": "jenkins", + "sort": [ + 1416869403135 + ] + }, + { + "_id": "F9J6vfZpS66yuMwFQeUi6Q", + "_index": "logstash-2014.11.24", + "_score": null, + "_source": { + "@timestamp": "2014-11-24T22:49:58.564+00:00", + "@version": "1", + "build_branch": "master", + "build_change": "133904", + "build_master": "jenkins07.openstack.org", + "build_name": "gate-tempest-dsvm-neutron-large-ops", + "build_node": "devstack-trusty-hpcloud-b1-35349", + "build_patchset": "3", + "build_queue": "check", + "build_ref": "refs/zuul/master/Za5c1598a7f81424a94f6da3ace79847c", + "build_short_uuid": "398b0a8", + "build_status": "FAILURE", + "build_uuid": "398b0a88094845dd92add8e3cc7bd14c", + "error_pr": -7.9163, + "filename": "console.html", + "host": "127.0.0.1:56890", + "log_url": "http://logs.openstack.org/04/133904/3/check/gate-tempest-dsvm-neutron-large-ops/398b0a8/console.html", + "message": "Looks like the node went offline during the build. Check the slave log for the details.FATAL: /var/lib/jenkins/logs/slaves/devstack-trusty-hpcloud-b1-35349/slave.log (No such file or directory)", + "project": "openstack/nova", + "received_at": "2014-11-24 22:51:12 UTC", + "tags": [ + "console.html", + "console" + ], + "type": "jenkins" + }, + "_type": "jenkins", + "sort": [ + 1416869398564 + ] + }, + { + "_id": "RG1kzQOuRze_aKDc9rCniw", + "_index": "logstash-2014.11.24", + "_score": null, + "_source": { + "@timestamp": "2014-11-24T22:49:48.553+00:00", + "@version": "1", + "build_branch": "master", + "build_change": "134623", + "build_master": "jenkins06.openstack.org", + "build_name": "gate-tempest-dsvm-large-ops", + "build_node": "devstack-trusty-hpcloud-b1-35355", + "build_patchset": "3", + "build_queue": "check", + "build_ref": "refs/zuul/master/Z34fe4766c66d411db29e8e85d8373bb0", + "build_short_uuid": "933a96b", + "build_status": "FAILURE", + "build_uuid": "933a96b9a2c94d57b2677077d76f0688", + "error_pr": -7.9234, + "filename": "console.html", + "host": "127.0.0.1:56886", + "log_url": "http://logs.openstack.org/23/134623/3/check/gate-tempest-dsvm-large-ops/933a96b/console.html", + "message": "Looks like the node went offline during the build. Check the slave log for the details.FATAL: /var/lib/jenkins/logs/slaves/devstack-trusty-hpcloud-b1-35355/slave.log (No such file or directory)", + "project": "openstack/nova", + "received_at": "2014-11-24 22:52:36 UTC", + "tags": [ + "console.html", + "console" + ], + "type": "jenkins" + }, + "_type": "jenkins", + "sort": [ + 1416869388553 + ] + }, + { + "_id": "Q7U4C21fRmmsAotAMy2uKQ", + "_index": "logstash-2014.11.24", + "_score": null, + "_source": { + "@timestamp": "2014-11-24T22:49:38.973+00:00", + "@version": "1", + "build_branch": "master", + "build_change": "136584", + "build_master": "jenkins02.openstack.org", + "build_name": "gate-swift-dsvm-functional", + "build_node": "devstack-trusty-hpcloud-b5-35519", + "build_patchset": "2", + "build_queue": "gate", + "build_ref": "refs/zuul/master/Z111f140ebb14422bb8f998e9fc3c9366", + "build_short_uuid": "f5bb9ae", + "build_status": "FAILURE", + "build_uuid": "f5bb9aea82d4402d8b6307990a67ad2b", + "error_pr": -8.7845, + "filename": "console.html", + "host": "127.0.0.1:47873", + "log_url": "http://logs.openstack.org/84/136584/2/gate/gate-swift-dsvm-functional/f5bb9ae/console.html", + "message": "Looks like the node went offline during the build. Check the slave log for the details.FATAL: /var/lib/jenkins/logs/slaves/devstack-trusty-hpcloud-b5-35519/slave.log (No such file or directory)", + "project": "openstack/swift", + "received_at": "2014-11-24 22:50:11 UTC", + "tags": [ + "console.html", + "console" + ], + "type": "jenkins" + }, + "_type": "jenkins", + "sort": [ + 1416869378973 + ] + }, + { + "_id": "zf-OzKnyRRKdqDuHYm51Bg", + "_index": "logstash-2014.11.24", + "_score": null, + "_source": { + "@timestamp": "2014-11-24T22:49:36.316+00:00", + "@version": "1", + "build_branch": "master", + "build_change": "115334", + "build_master": "jenkins07.openstack.org", + "build_name": "check-tempest-dsvm-neutron-heat-slow", + "build_node": "devstack-trusty-hpcloud-b5-35488", + "build_patchset": "10", + "build_queue": "check", + "build_ref": "refs/zuul/master/Z0891ff76d015464b952390e2c805bbf5", + "build_short_uuid": "f9e39bc", + "build_status": "FAILURE", + "build_uuid": "f9e39bc8506f46c0bcb096af48db5df8", + "error_pr": -8.8435, + "filename": "console.html", + "host": "127.0.0.1:44761", + "log_url": "http://logs.openstack.org/34/115334/10/check/check-tempest-dsvm-neutron-heat-slow/f9e39bc/console.html", + "message": "Looks like the node went offline during the build. Check the slave log for the details.FATAL: /var/lib/jenkins/logs/slaves/devstack-trusty-hpcloud-b5-35488/slave.log (No such file or directory)", + "project": "openstack/nova", + "received_at": "2014-11-24 22:50:27 UTC", + "tags": [ + "console.html", + "console" + ], + "type": "jenkins" + }, + "_type": "jenkins", + "sort": [ + 1416869376316 + ] + }, + { + "_id": "5dn2cSfSRGuf1P6DAErFug", + "_index": "logstash-2014.11.24", + "_score": null, + "_source": { + "@timestamp": "2014-11-24T22:49:33.222+00:00", + "@version": "1", + "build_branch": "stable/juno", + "build_change": "135326", + "build_master": "jenkins03.openstack.org", + "build_name": "check-grenade-dsvm-ironic-sideways", + "build_node": "devstack-trusty-hpcloud-b4-34403", + "build_patchset": "2", + "build_queue": "check", + "build_ref": "refs/zuul/stable/juno/Zd69aed2bb6c74c84b832a4fef667378b", + "build_short_uuid": "4d0c273", + "build_status": "FAILURE", + "build_uuid": "4d0c273a7ade4bbf90a83c4920eb750f", + "error_pr": -7.9004, + "filename": "console.html", + "host": "127.0.0.1:56886", + "log_url": "http://logs.openstack.org/26/135326/2/check/check-grenade-dsvm-ironic-sideways/4d0c273/console.html", + "message": "Looks like the node went offline during the build. Check the slave log for the details.FATAL: /var/lib/jenkins/logs/slaves/devstack-trusty-hpcloud-b4-34403/slave.log (No such file or directory)", + "project": "openstack/nova", + "received_at": "2014-11-24 22:52:35 UTC", + "tags": [ + "console.html", + "console" + ], + "type": "jenkins" + }, + "_type": "jenkins", + "sort": [ + 1416869373222 + ] + }, + { + "_id": "EZPbtpu-SsOKAypnm45Hfw", + "_index": "logstash-2014.11.24", + "_score": null, + "_source": { + "@timestamp": "2014-11-24T22:49:24.199+00:00", + "@version": "1", + "build_branch": "master", + "build_change": "135798", + "build_master": "jenkins01.openstack.org", + "build_name": "check-tempest-dsvm-docker", + "build_node": "devstack-trusty-rax-iad-35657", + "build_patchset": "3", + "build_queue": "check", + "build_ref": "refs/zuul/master/Z4860175ffb384093a7e70c7d19f72e0b", + "build_short_uuid": "c83f455", + "build_status": "FAILURE", + "build_uuid": "c83f455f5db84a6fb306f202c420a305", + "error_pr": -7.6625, + "filename": "console.html", + "host": "127.0.0.1:46095", + "log_url": "http://logs.openstack.org/98/135798/3/check/check-tempest-dsvm-docker/c83f455/console.html", + "message": "Looks like the node went offline during the build. Check the slave log for the details.FATAL: /var/lib/jenkins/logs/slaves/devstack-trusty-rax-iad-35657/slave.log (No such file or directory)", + "project": "openstack/nova", + "received_at": "2014-11-24 22:50:09 UTC", + "tags": [ + "console.html", + "console" + ], + "type": "jenkins" + }, + "_type": "jenkins", + "sort": [ + 1416869364199 + ] + }, + { + "_id": "oMwzgaPWQwC5g7pzgAfNNQ", + "_index": "logstash-2014.11.24", + "_score": null, + "_source": { + "@timestamp": "2014-11-24T22:49:20.315+00:00", + "@version": "1", + "build_branch": "master", + "build_change": "128259", + "build_master": "jenkins02.openstack.org", + "build_name": "gate-rally-dsvm-neutron-neutron", + "build_node": "devstack-trusty-hpcloud-b5-35520", + "build_patchset": "7", + "build_queue": "check", + "build_ref": "refs/zuul/master/Z5df899561117425ca6d6dfb19b9c9985", + "build_short_uuid": "1038ab4", + "build_status": "FAILURE", + "build_uuid": "1038ab4483de4a8396b95a58dd9e4e82", + "error_pr": -7.7975, + "filename": "console.html", + "host": "127.0.0.1:56886", + "log_url": "http://logs.openstack.org/59/128259/7/check/gate-rally-dsvm-neutron-neutron/1038ab4/console.html", + "message": "Looks like the node went offline during the build. Check the slave log for the details.FATAL: /var/lib/jenkins/logs/slaves/devstack-trusty-hpcloud-b5-35520/slave.log (No such file or directory)", + "project": "openstack/neutron", + "received_at": "2014-11-24 22:52:16 UTC", + "tags": [ + "console.html", + "console" + ], + "type": "jenkins" + }, + "_type": "jenkins", + "sort": [ + 1416869360315 + ] + }, + { + "_id": "bsd4x1C3RvSXfBraLK3pdw", + "_index": "logstash-2014.11.24", + "_score": null, + "_source": { + "@timestamp": "2014-11-24T22:49:19.332+00:00", + "@version": "1", + "build_branch": "master", + "build_change": "136584", + "build_master": "jenkins04.openstack.org", + "build_name": "gate-devstack-dsvm-cells", + "build_node": "devstack-trusty-hpcloud-b5-35505", + "build_patchset": "2", + "build_queue": "gate", + "build_ref": "refs/zuul/master/Z111f140ebb14422bb8f998e9fc3c9366", + "build_short_uuid": "1ebcab8", + "build_status": "FAILURE", + "build_uuid": "1ebcab8b24b7426b881eb5dddcf78b09", + "error_pr": -7.9263, + "filename": "console.html", + "host": "127.0.0.1:56902", + "log_url": "http://logs.openstack.org/84/136584/2/gate/gate-devstack-dsvm-cells/1ebcab8/console.html", + "message": "Looks like the node went offline during the build. Check the slave log for the details.FATAL: /var/lib/jenkins/logs/slaves/devstack-trusty-hpcloud-b5-35505/slave.log (No such file or directory)", + "project": "openstack/swift", + "received_at": "2014-11-24 23:01:18 UTC", + "tags": [ + "console.html", + "console" + ], + "type": "jenkins" + }, + "_type": "jenkins", + "sort": [ + 1416869359332 + ] + }, + { + "_id": "4w8sw0oXTG2L6hmzKoQBZg", + "_index": "logstash-2014.11.24", + "_score": null, + "_source": { + "@timestamp": "2014-11-24T22:49:18.142+00:00", + "@version": "1", + "build_branch": "master", + "build_change": "133904", + "build_master": "jenkins05.openstack.org", + "build_name": "check-tempest-dsvm-neutron-heat-slow", + "build_node": "devstack-trusty-hpcloud-b1-35367", + "build_patchset": "3", + "build_queue": "check", + "build_ref": "refs/zuul/master/Za5c1598a7f81424a94f6da3ace79847c", + "build_short_uuid": "53dd0a4", + "build_status": "FAILURE", + "build_uuid": "53dd0a434eb34ee98d4242d121d59225", + "error_pr": -8.746, + "filename": "console.html", + "host": "127.0.0.1:47873", + "log_url": "http://logs.openstack.org/04/133904/3/check/check-tempest-dsvm-neutron-heat-slow/53dd0a4/console.html", + "message": "Looks like the node went offline during the build. Check the slave log for the details.FATAL: /var/lib/jenkins/logs/slaves/devstack-trusty-hpcloud-b1-35367/slave.log (No such file or directory)", + "project": "openstack/nova", + "received_at": "2014-11-24 22:50:10 UTC", + "tags": [ + "console.html", + "console" + ], + "type": "jenkins" + }, + "_type": "jenkins", + "sort": [ + 1416869358142 + ] + }, + { + "_id": "ohqICSiFT2m4phHDv2algQ", + "_index": "logstash-2014.11.24", + "_score": null, + "_source": { + "@timestamp": "2014-11-24T22:49:09.980+00:00", + "@version": "1", + "build_branch": "master", + "build_change": "128258", + "build_master": "jenkins03.openstack.org", + "build_name": "gate-rally-dsvm-neutron-neutron", + "build_node": "devstack-trusty-hpcloud-b5-35513", + "build_patchset": "6", + "build_queue": "check", + "build_ref": "refs/zuul/master/Z4c06b9a790de462a8e22165e963cc310", + "build_short_uuid": "244a852", + "build_status": "FAILURE", + "build_uuid": "244a852b35a84e08834a813780b35975", + "error_pr": -7.905, + "filename": "console.html", + "host": "127.0.0.1:56890", + "log_url": "http://logs.openstack.org/58/128258/6/check/gate-rally-dsvm-neutron-neutron/244a852/console.html", + "message": "Looks like the node went offline during the build. Check the slave log for the details.FATAL: /var/lib/jenkins/logs/slaves/devstack-trusty-hpcloud-b5-35513/slave.log (No such file or directory)", + "project": "openstack/neutron", + "received_at": "2014-11-24 22:50:06 UTC", + "tags": [ + "console.html", + "console" + ], + "type": "jenkins" + }, + "_type": "jenkins", + "sort": [ + 1416869349980 + ] + }, + { + "_id": "koeXBHQDSwWYVYLEphGreg", + "_index": "logstash-2014.11.24", + "_score": null, + "_source": { + "@timestamp": "2014-11-24T22:49:03.014+00:00", + "@version": "1", + "build_branch": "master", + "build_change": "125746", + "build_master": "jenkins03.openstack.org", + "build_name": "check-grenade-dsvm", + "build_node": "devstack-trusty-rax-iad-35650", + "build_patchset": "4", + "build_queue": "check", + "build_ref": "refs/zuul/master/Zbff65f90b54143e0b2c23629e9fb4e5e", + "build_short_uuid": "1ce3d38", + "build_status": "FAILURE", + "build_uuid": "1ce3d383bcd5469494acf800d9f85751", + "error_pr": -8.6078, + "filename": "console.html", + "host": "127.0.0.1:42361", + "log_url": "http://logs.openstack.org/46/125746/4/check/check-grenade-dsvm/1ce3d38/console.html", + "message": "Looks like the node went offline during the build. Check the slave log for the details.FATAL: /var/lib/jenkins/logs/slaves/devstack-trusty-rax-iad-35650/slave.log (No such file or directory)", + "project": "openstack/swift", + "received_at": "2014-11-24 22:50:26 UTC", + "tags": [ + "console.html", + "console" + ], + "type": "jenkins" + }, + "_type": "jenkins", + "sort": [ + 1416869343014 + ] + }, + { + "_id": "YEm0bxzqSKK1C7bE3Hj1hw", + "_index": "logstash-2014.11.24", + "_score": null, + "_source": { + "@timestamp": "2014-11-24T22:48:56.669+00:00", + "@version": "1", + "build_branch": "master", + "build_change": "128259", + "build_master": "jenkins05.openstack.org", + "build_name": "check-neutron-dsvm-functional", + "build_node": "devstack-trusty-rax-iad-35759", + "build_patchset": "7", + "build_queue": "check", + "build_ref": "refs/zuul/master/Z5df899561117425ca6d6dfb19b9c9985", + "build_short_uuid": "02509dd", + "build_status": "FAILURE", + "build_uuid": "02509ddfaec647b39466d700412e5598", + "error_pr": -7.9005, + "filename": "console.html", + "host": "127.0.0.1:56890", + "log_url": "http://logs.openstack.org/59/128259/7/check/check-neutron-dsvm-functional/02509dd/console.html", + "message": "Looks like the node went offline during the build. Check the slave log for the details.FATAL: /var/lib/jenkins/logs/slaves/devstack-trusty-rax-iad-35759/slave.log (No such file or directory)", + "project": "openstack/neutron", + "received_at": "2014-11-24 22:50:05 UTC", + "tags": [ + "console.html", + "console" + ], + "type": "jenkins" + }, + "_type": "jenkins", + "sort": [ + 1416869336669 + ] + }, + { + "_id": "1baVjlmWSeWFMhchu-e_OQ", + "_index": "logstash-2014.11.24", + "_score": null, + "_source": { + "@timestamp": "2014-11-24T22:48:55.983+00:00", + "@version": "1", + "build_branch": "master", + "build_change": "134623", + "build_master": "jenkins06.openstack.org", + "build_name": "gate-tempest-dsvm-neutron-large-ops", + "build_node": "devstack-trusty-hpcloud-b4-35455", + "build_patchset": "3", + "build_queue": "check", + "build_ref": "refs/zuul/master/Z34fe4766c66d411db29e8e85d8373bb0", + "build_short_uuid": "59762f7", + "build_status": "FAILURE", + "build_uuid": "59762f7bfcdb4e13b1ec0751d38c60ac", + "error_pr": -7.6979, + "filename": "console.html", + "host": "127.0.0.1:42420", + "log_url": "http://logs.openstack.org/23/134623/3/check/gate-tempest-dsvm-neutron-large-ops/59762f7/console.html", + "message": "Looks like the node went offline during the build. Check the slave log for the details.FATAL: /var/lib/jenkins/logs/slaves/devstack-trusty-hpcloud-b4-35455/slave.log (No such file or directory)", + "project": "openstack/nova", + "received_at": "2014-11-24 22:55:36 UTC", + "tags": [ + "console.html", + "console" + ], + "type": "jenkins" + }, + "_type": "jenkins", + "sort": [ + 1416869335983 + ] + }, + { + "_id": "gLQkNd-MSWCSE0cAW2gkMw", + "_index": "logstash-2014.11.24", + "_score": null, + "_source": { + "@timestamp": "2014-11-24T22:48:34.538+00:00", + "@version": "1", + "build_branch": "feature/lbaasv2", + "build_change": "123485", + "build_master": "jenkins06.openstack.org", + "build_name": "gate-neutron-pep8", + "build_node": "bare-trusty-hpcloud-b5-34722", + "build_patchset": "9", + "build_queue": "gate", + "build_ref": "refs/zuul/feature/lbaasv2/Zbac151662e1e4ac888c5792d6bf350ea", + "build_short_uuid": "01fd513", + "build_status": "FAILURE", + "build_uuid": "01fd513726ac4a54961539bd71f26429", + "error_pr": -7.8989, + "filename": "console.html", + "host": "127.0.0.1:56890", + "log_url": "http://logs.openstack.org/85/123485/9/gate/gate-neutron-pep8/01fd513/console.html", + "message": "Looks like the node went offline during the build. Check the slave log for the details.FATAL: /var/lib/jenkins/logs/slaves/bare-trusty-hpcloud-b5-34722/slave.log (No such file or directory)", + "project": "openstack/neutron", + "received_at": "2014-11-24 22:50:05 UTC", + "tags": [ + "console.html", + "console" + ], + "type": "jenkins" + }, + "_type": "jenkins", + "sort": [ + 1416869314538 + ] + }, + { + "_id": "maH0oD96S6q3YwYUXfTkJA", + "_index": "logstash-2014.11.24", + "_score": null, + "_source": { + "@timestamp": "2014-11-24T22:48:34.163+00:00", + "@version": "1", + "build_branch": "master", + "build_change": "134133", + "build_master": "jenkins04.openstack.org", + "build_name": "gate-tempest-dsvm-src-python-cinderclient-juno", + "build_node": "devstack-trusty-hpcloud-b3-35059", + "build_patchset": "6", + "build_queue": "check", + "build_ref": "refs/zuul/master/Z0caaa0d14b8246e6b86529a2abc1b73c", + "build_short_uuid": "8f965c5", + "build_status": "FAILURE", + "build_uuid": "8f965c51d1174d54bb95e10f086d2435", + "error_pr": -7.8812, + "filename": "console.html", + "host": "127.0.0.1:56886", + "log_url": "http://logs.openstack.org/33/134133/6/check/gate-tempest-dsvm-src-python-cinderclient-juno/8f965c5/console.html", + "message": "Looks like the node went offline during the build. Check the slave log for the details.FATAL: /var/lib/jenkins/logs/slaves/devstack-trusty-hpcloud-b3-35059/slave.log (No such file or directory)", + "project": "openstack/python-cinderclient", + "received_at": "2014-11-24 22:52:12 UTC", + "tags": [ + "console.html", + "console" + ], + "type": "jenkins" + }, + "_type": "jenkins", + "sort": [ + 1416869314163 + ] + }, + { + "_id": "oiQvjfDwS7Gql_0f2twBCw", + "_index": "logstash-2014.11.24", + "_score": null, + "_source": { + "@timestamp": "2014-11-24T22:48:19.284+00:00", + "@version": "1", + "build_branch": "master", + "build_change": "136894", + "build_master": "jenkins07.openstack.org", + "build_name": "check-tripleo-ironic-undercloud-precise-nonha", + "build_node": "tripleo-precise-tripleo-test-cloud-rh1-35330", + "build_patchset": "2", + "build_queue": "check-tripleo", + "build_ref": "refs/zuul/master/Zca42f0635ef348d89de6e8a97d98a28b", + "build_short_uuid": "f38b4c7", + "build_status": "FAILURE", + "build_uuid": "f38b4c7b2a544967af5e16ff07dd677f", + "error_pr": -8.368, + "filename": "console.html", + "host": "127.0.0.1:54433", + "log_url": "http://logs.openstack.org/94/136894/2/check-tripleo/check-tripleo-ironic-undercloud-precise-nonha/f38b4c7/console.html", + "message": "Looks like the node went offline during the build. Check the slave log for the details.FATAL: /var/lib/jenkins/logs/slaves/tripleo-precise-tripleo-test-cloud-rh1-35330/slave.log (No such file or directory)", + "project": "openstack/tripleo-heat-templates", + "received_at": "2014-11-24 23:13:46 UTC", + "tags": [ + "console.html", + "console" + ], + "type": "jenkins" + }, + "_type": "jenkins", + "sort": [ + 1416869299284 + ] + }, + { + "_id": "Wmrxt7bIQ_uBPsT_YEnuWA", + "_index": "logstash-2014.11.24", + "_score": null, + "_source": { + "@timestamp": "2014-11-24T22:48:18.640+00:00", + "@version": "1", + "build_branch": "master", + "build_change": "136529", + "build_master": "jenkins03.openstack.org", + "build_name": "check-tempest-dsvm-neutron-heat-slow", + "build_node": "devstack-trusty-rax-iad-35762", + "build_patchset": "1", + "build_queue": "check", + "build_ref": "refs/zuul/master/Ze22d254309504be788abc066e2cfc586", + "build_short_uuid": "cf6c20f", + "build_status": "FAILURE", + "build_uuid": "cf6c20f6a30c445a94a3bbbf66d2c849", + "error_pr": -7.9105, + "filename": "console.html", + "host": "127.0.0.1:56890", + "log_url": "http://logs.openstack.org/29/136529/1/check/check-tempest-dsvm-neutron-heat-slow/cf6c20f/console.html", + "message": "Looks like the node went offline during the build. Check the slave log for the details.FATAL: /var/lib/jenkins/logs/slaves/devstack-trusty-rax-iad-35762/slave.log (No such file or directory)", + "project": "openstack/neutron", + "received_at": "2014-11-24 22:50:05 UTC", + "tags": [ + "console.html", + "console" + ], + "type": "jenkins" + }, + "_type": "jenkins", + "sort": [ + 1416869298640 + ] + }, + { + "_id": "eAg_gj4ORFuk6DehVMw3Rw", + "_index": "logstash-2014.11.24", + "_score": null, + "_source": { + "@timestamp": "2014-11-24T22:48:14.807+00:00", + "@version": "1", + "build_branch": "master", + "build_change": "123000", + "build_master": "jenkins01.openstack.org", + "build_name": "gate-rally-dsvm-neutron-neutron", + "build_node": "devstack-trusty-hpcloud-b3-35445", + "build_patchset": "8", + "build_queue": "check", + "build_ref": "refs/zuul/master/Z691e99a0995047ac80548dfecf5373b5", + "build_short_uuid": "58a4e58", + "build_status": "FAILURE", + "build_uuid": "58a4e58064604d9ca22995f114d148a9", + "error_pr": -7.9084, + "filename": "console.html", + "host": "127.0.0.1:56902", + "log_url": "http://logs.openstack.org/00/123000/8/check/gate-rally-dsvm-neutron-neutron/58a4e58/console.html", + "message": "Looks like the node went offline during the build. Check the slave log for the details.FATAL: /var/lib/jenkins/logs/slaves/devstack-trusty-hpcloud-b3-35445/slave.log (No such file or directory)", + "project": "openstack/neutron", + "received_at": "2014-11-24 23:00:53 UTC", + "tags": [ + "console.html", + "console" + ], + "type": "jenkins" + }, + "_type": "jenkins", + "sort": [ + 1416869294807 + ] + }, + { + "_id": "OgUUZmH-RO2KsysWgi-Mvg", + "_index": "logstash-2014.11.24", + "_score": null, + "_source": { + "@timestamp": "2014-11-24T22:48:14.076+00:00", + "@version": "1", + "build_branch": "master", + "build_change": "136266", + "build_master": "jenkins05.openstack.org", + "build_name": "check-grenade-dsvm-partial-ncpu", + "build_node": "devstack-trusty-rax-dfw-35572", + "build_patchset": "4", + "build_queue": "check", + "build_ref": "refs/zuul/master/Z64c7dc2f6d4c42bdaf70a701e16547ff", + "build_short_uuid": "bbebd1e", + "build_status": "FAILURE", + "build_uuid": "bbebd1e54c374ff7bb08619ddb47a97f", + "error_pr": -7.8917, + "filename": "console.html", + "host": "127.0.0.1:56890", + "log_url": "http://logs.openstack.org/66/136266/4/check/check-grenade-dsvm-partial-ncpu/bbebd1e/console.html", + "message": "Looks like the node went offline during the build. Check the slave log for the details.FATAL: /var/lib/jenkins/logs/slaves/devstack-trusty-rax-dfw-35572/slave.log (No such file or directory)", + "project": "openstack/nova", + "received_at": "2014-11-24 22:48:26 UTC", + "tags": [ + "console.html", + "console" + ], + "type": "jenkins" + }, + "_type": "jenkins", + "sort": [ + 1416869294076 + ] + }, + { + "_id": "80F2a9I_Q_-gR86gUin2NQ", + "_index": "logstash-2014.11.24", + "_score": null, + "_source": { + "@timestamp": "2014-11-24T22:48:08.858+00:00", + "@version": "1", + "build_branch": "master", + "build_change": "134133", + "build_master": "jenkins07.openstack.org", + "build_name": "gate-tempest-dsvm-src-python-cinderclient", + "build_node": "devstack-trusty-hpcloud-b5-34916", + "build_patchset": "6", + "build_queue": "check", + "build_ref": "refs/zuul/master/Z0caaa0d14b8246e6b86529a2abc1b73c", + "build_short_uuid": "a7fb449", + "build_status": "FAILURE", + "build_uuid": "a7fb4496c57a4f128466f274c892f812", + "error_pr": -7.8753, + "filename": "console.html", + "host": "127.0.0.1:56886", + "log_url": "http://logs.openstack.org/33/134133/6/check/gate-tempest-dsvm-src-python-cinderclient/a7fb449/console.html", + "message": "Looks like the node went offline during the build. Check the slave log for the details.FATAL: /var/lib/jenkins/logs/slaves/devstack-trusty-hpcloud-b5-34916/slave.log (No such file or directory)", + "project": "openstack/python-cinderclient", + "received_at": "2014-11-24 22:51:10 UTC", + "tags": [ + "console.html", + "console" + ], + "type": "jenkins" + }, + "_type": "jenkins", + "sort": [ + 1416869288858 + ] + }, + { + "_id": "jS6qMDUpT8W2ynfKf6uwnA", + "_index": "logstash-2014.11.24", + "_score": null, + "_source": { + "@timestamp": "2014-11-24T22:47:56.606+00:00", + "@version": "1", + "build_branch": "master", + "build_change": "123000", + "build_master": "jenkins03.openstack.org", + "build_name": "check-neutron-dsvm-functional", + "build_node": "devstack-trusty-hpcloud-b3-35434", + "build_patchset": "8", + "build_queue": "check", + "build_ref": "refs/zuul/master/Z691e99a0995047ac80548dfecf5373b5", + "build_short_uuid": "da1210d", + "build_status": "FAILURE", + "build_uuid": "da1210de407e45e2a9beba32ce15e797", + "error_pr": -8.0809, + "filename": "console.html", + "host": "127.0.0.1:47639", + "log_url": "http://logs.openstack.org/00/123000/8/check/check-neutron-dsvm-functional/da1210d/console.html", + "message": "Looks like the node went offline during the build. Check the slave log for the details.FATAL: /var/lib/jenkins/logs/slaves/devstack-trusty-hpcloud-b3-35434/slave.log (No such file or directory)", + "project": "openstack/neutron", + "received_at": "2014-11-24 22:51:47 UTC", + "tags": [ + "console.html", + "console" + ], + "type": "jenkins" + }, + "_type": "jenkins", + "sort": [ + 1416869276606 + ] + }, + { + "_id": "JlxXrPi8SZiRiIXoXhq_wg", + "_index": "logstash-2014.11.24", + "_score": null, + "_source": { + "@timestamp": "2014-11-24T22:47:56.024+00:00", + "@version": "1", + "build_branch": "master", + "build_change": "129256", + "build_master": "jenkins02.openstack.org", + "build_name": "check-tempest-dsvm-full", + "build_node": "devstack-trusty-hpcloud-b4-34912", + "build_patchset": "1", + "build_queue": "check", + "build_ref": "refs/zuul/master/Zd1674d93a4d94cb28e65a2b80abd5090", + "build_short_uuid": "cef01d5", + "build_status": "FAILURE", + "build_uuid": "cef01d55a4a143c291e85a0476ca5ba8", + "filename": "console.html", + "host": "127.0.0.1:41029", + "log_url": "http://logs.openstack.org/56/129256/1/check/check-tempest-dsvm-full/cef01d5/console.html", + "message": "Looks like the node went offline during the build. Check the slave log for the details.FATAL: /var/lib/jenkins/logs/slaves/devstack-trusty-hpcloud-b4-34912/slave.log (No such file or directory)", + "project": "openstack/keystone", + "received_at": "2014-11-24 22:50:13 UTC", + "tags": [ + "console.html", + "console" + ], + "type": "jenkins" + }, + "_type": "jenkins", + "sort": [ + 1416869276024 + ] + }, + { + "_id": "l52WFlxeQPG8JY3xsISpvA", + "_index": "logstash-2014.11.24", + "_score": null, + "_source": { + "@timestamp": "2014-11-24T22:47:47.371+00:00", + "@version": "1", + "build_branch": "master", + "build_change": "136054", + "build_master": "jenkins05.openstack.org", + "build_name": "check-tempest-dsvm-docker", + "build_node": "devstack-trusty-rax-ord-35535", + "build_patchset": "3", + "build_queue": "check", + "build_ref": "refs/zuul/master/Za753b29b1c424960b2ca90b90964e694", + "build_short_uuid": "697ebfd", + "build_status": "FAILURE", + "build_uuid": "697ebfddd0ba446a99620d59040de47e", + "error_pr": -7.8758, + "filename": "console.html", + "host": "127.0.0.1:56890", + "log_url": "http://logs.openstack.org/54/136054/3/check/check-tempest-dsvm-docker/697ebfd/console.html", + "message": "Looks like the node went offline during the build. Check the slave log for the details.FATAL: /var/lib/jenkins/logs/slaves/devstack-trusty-rax-ord-35535/slave.log (No such file or directory)", + "project": "openstack/nova", + "received_at": "2014-11-24 22:48:23 UTC", + "tags": [ + "console.html", + "console" + ], + "type": "jenkins" + }, + "_type": "jenkins", + "sort": [ + 1416869267371 + ] + }, + { + "_id": "JKEC9QysRaaO_cflicWt7Q", + "_index": "logstash-2014.11.24", + "_score": null, + "_source": { + "@timestamp": "2014-11-24T22:47:34.862+00:00", + "@version": "1", + "build_branch": "master", + "build_change": "136586", + "build_master": "jenkins04.openstack.org", + "build_name": "check-tempest-dsvm-neutron-full", + "build_node": "devstack-trusty-rax-ord-35145", + "build_patchset": "2", + "build_queue": "check", + "build_ref": "refs/zuul/master/Z354b9f910872466f90141a86573c4c1f", + "build_short_uuid": "972671d", + "build_status": "FAILURE", + "build_uuid": "972671d19c1d41c483b84f50cb75c277", + "error_pr": -7.5822, + "filename": "console.html", + "host": "127.0.0.1:56890", + "log_url": "http://logs.openstack.org/86/136586/2/check/check-tempest-dsvm-neutron-full/972671d/console.html", + "message": "Looks like the node went offline during the build. Check the slave log for the details.FATAL: /var/lib/jenkins/logs/slaves/devstack-trusty-rax-ord-35145/slave.log (No such file or directory)", + "project": "openstack/swift", + "received_at": "2014-11-24 22:52:31 UTC", + "tags": [ + "console.html", + "console" + ], + "type": "jenkins" + }, + "_type": "jenkins", + "sort": [ + 1416869254862 + ] + }, + { + "_id": "AVhRMBVHQbmZ_pWKy6frqA", + "_index": "logstash-2014.11.24", + "_score": null, + "_source": { + "@timestamp": "2014-11-24T22:47:19.032+00:00", + "@version": "1", + "build_branch": "master", + "build_change": "123000", + "build_master": "jenkins05.openstack.org", + "build_name": "check-tempest-dsvm-neutron-heat-slow", + "build_node": "devstack-trusty-hpcloud-b5-35502", + "build_patchset": "8", + "build_queue": "check", + "build_ref": "refs/zuul/master/Z691e99a0995047ac80548dfecf5373b5", + "build_short_uuid": "caa6dc9", + "build_status": "FAILURE", + "build_uuid": "caa6dc9cda964f70b26808164a91c6e4", + "error_pr": -7.7623, + "filename": "console.html", + "host": "127.0.0.1:33365", + "log_url": "http://logs.openstack.org/00/123000/8/check/check-tempest-dsvm-neutron-heat-slow/caa6dc9/console.html", + "message": "Looks like the node went offline during the build. Check the slave log for the details.FATAL: /var/lib/jenkins/logs/slaves/devstack-trusty-hpcloud-b5-35502/slave.log (No such file or directory)", + "project": "openstack/neutron", + "received_at": "2014-11-24 22:48:02 UTC", + "tags": [ + "console.html", + "console" + ], + "type": "jenkins" + }, + "_type": "jenkins", + "sort": [ + 1416869239032 + ] + }, + { + "_id": "-NLydsVJT4SAQKqt-G7sqA", + "_index": "logstash-2014.11.24", + "_score": null, + "_source": { + "@timestamp": "2014-11-24T22:47:15.374+00:00", + "@version": "1", + "build_branch": "master", + "build_change": "135139", + "build_master": "jenkins01.openstack.org", + "build_name": "check-tempest-dsvm-postgres-full", + "build_node": "devstack-trusty-hpcloud-b5-35119", + "build_patchset": "7", + "build_queue": "check", + "build_ref": "refs/zuul/master/Z51b015db669a4de388c5b50cb22c1ae9", + "build_short_uuid": "3beeb91", + "build_status": "FAILURE", + "build_uuid": "3beeb915f92a409ab79d458f1da9def4", + "filename": "console.html", + "host": "127.0.0.1:36511", + "log_url": "http://logs.openstack.org/39/135139/7/check/check-tempest-dsvm-postgres-full/3beeb91/console.html", + "message": "Looks like the node went offline during the build. Check the slave log for the details.FATAL: /var/lib/jenkins/logs/slaves/devstack-trusty-hpcloud-b5-35119/slave.log (No such file or directory)", + "project": "openstack/cinder", + "received_at": "2014-11-24 22:50:25 UTC", + "tags": [ + "console.html", + "console" + ], + "type": "jenkins" + }, + "_type": "jenkins", + "sort": [ + 1416869235374 + ] + }, + { + "_id": "oy5l2UVORVSGfYh5Zu2COQ", + "_index": "logstash-2014.11.24", + "_score": null, + "_source": { + "@timestamp": "2014-11-24T22:47:05.890+00:00", + "@version": "1", + "build_branch": "master", + "build_change": "109853", + "build_master": "jenkins06.openstack.org", + "build_name": "check-grenade-dsvm", + "build_node": "devstack-trusty-hpcloud-b4-35083", + "build_patchset": "16", + "build_queue": "check", + "build_ref": "refs/zuul/master/Z161c1653570645a4a286a17deeb921a4", + "build_short_uuid": "38773be", + "build_status": "FAILURE", + "build_uuid": "38773be24fd2499e9536d00ca95b3369", + "filename": "console.html", + "host": "127.0.0.1:41029", + "log_url": "http://logs.openstack.org/53/109853/16/check/check-grenade-dsvm/38773be/console.html", + "message": "Looks like the node went offline during the build. Check the slave log for the details.FATAL: /var/lib/jenkins/logs/slaves/devstack-trusty-hpcloud-b4-35083/slave.log (No such file or directory)", + "project": "openstack/ceilometer", + "received_at": "2014-11-24 22:48:23 UTC", + "tags": [ + "console.html", + "console" + ], + "type": "jenkins" + }, + "_type": "jenkins", + "sort": [ + 1416869225890 + ] + }, + { + "_id": "7gsQSQHHQnauUdgYDCi6WQ", + "_index": "logstash-2014.11.24", + "_score": null, + "_source": { + "@timestamp": "2014-11-24T22:47:05.571+00:00", + "@version": "1", + "build_branch": "master", + "build_change": "131865", + "build_master": "jenkins07.openstack.org", + "build_name": "check-tempest-dsvm-neutron-heat-slow", + "build_node": "devstack-trusty-hpcloud-b1-35345", + "build_patchset": "6", + "build_queue": "check", + "build_ref": "refs/zuul/master/Z8fa8a837ccec42068bda3ee39ad6290a", + "build_short_uuid": "2ae9464", + "build_status": "FAILURE", + "build_uuid": "2ae946442fc4433faa240a5563e0bc3b", + "error_pr": -7.8967, + "filename": "console.html", + "host": "127.0.0.1:56893", + "log_url": "http://logs.openstack.org/65/131865/6/check/check-tempest-dsvm-neutron-heat-slow/2ae9464/console.html", + "message": "Looks like the node went offline during the build. Check the slave log for the details.FATAL: /var/lib/jenkins/logs/slaves/devstack-trusty-hpcloud-b1-35345/slave.log (No such file or directory)", + "project": "openstack/cinder", + "received_at": "2014-11-24 22:59:12 UTC", + "tags": [ + "console.html", + "console" + ], + "type": "jenkins" + }, + "_type": "jenkins", + "sort": [ + 1416869225571 + ] + }, + { + "_id": "tAhOs7WdQ9-bTS7gwp5POQ", + "_index": "logstash-2014.11.24", + "_score": null, + "_source": { + "@timestamp": "2014-11-24T22:47:03.610+00:00", + "@version": "1", + "build_branch": "master", + "build_change": "135503", + "build_master": "jenkins02.openstack.org", + "build_name": "check-grenade-dsvm-partial-ncpu", + "build_node": "devstack-trusty-hpcloud-b4-35091", + "build_patchset": "2", + "build_queue": "check", + "build_ref": "refs/zuul/master/Z6c7812a87041416296aba4ce8cf9a22b", + "build_short_uuid": "6d0b2b8", + "build_status": "FAILURE", + "build_uuid": "6d0b2b89282143c88437fba25a574d85", + "error_pr": -7.8949, + "filename": "console.html", + "host": "127.0.0.1:56890", + "log_url": "http://logs.openstack.org/03/135503/2/check/check-grenade-dsvm-partial-ncpu/6d0b2b8/console.html", + "message": "Looks like the node went offline during the build. Check the slave log for the details.FATAL: /var/lib/jenkins/logs/slaves/devstack-trusty-hpcloud-b4-35091/slave.log (No such file or directory)", + "project": "openstack-dev/devstack", + "received_at": "2014-11-24 22:48:07 UTC", + "tags": [ + "console.html", + "console" + ], + "type": "jenkins" + }, + "_type": "jenkins", + "sort": [ + 1416869223610 + ] + }, + { + "_id": "o8nVWq0gS1WkMFtC4QNk6A", + "_index": "logstash-2014.11.24", + "_score": null, + "_source": { + "@timestamp": "2014-11-24T22:47:03.176+00:00", + "@version": "1", + "build_branch": "master", + "build_change": "134623", + "build_master": "jenkins04.openstack.org", + "build_name": "check-tempest-dsvm-neutron-heat-slow", + "build_node": "devstack-trusty-hpcloud-b4-35466", + "build_patchset": "3", + "build_queue": "check", + "build_ref": "refs/zuul/master/Z34fe4766c66d411db29e8e85d8373bb0", + "build_short_uuid": "d026b3e", + "build_status": "FAILURE", + "build_uuid": "d026b3e2f8e446e595dbca50a30c227d", + "error_pr": -7.8894, + "filename": "console.html", + "host": "127.0.0.1:56890", + "log_url": "http://logs.openstack.org/23/134623/3/check/check-tempest-dsvm-neutron-heat-slow/d026b3e/console.html", + "message": "Looks like the node went offline during the build. Check the slave log for the details.FATAL: /var/lib/jenkins/logs/slaves/devstack-trusty-hpcloud-b4-35466/slave.log (No such file or directory)", + "project": "openstack/nova", + "received_at": "2014-11-24 22:48:04 UTC", + "tags": [ + "console.html", + "console" + ], + "type": "jenkins" + }, + "_type": "jenkins", + "sort": [ + 1416869223176 + ] + }, + { + "_id": "X_YkV4FDR52y4dv1M5-yNQ", + "_index": "logstash-2014.11.24", + "_score": null, + "_source": { + "@timestamp": "2014-11-24T22:46:58.684+00:00", + "@version": "1", + "build_branch": "master", + "build_change": "136587", + "build_master": "jenkins04.openstack.org", + "build_name": "check-grenade-dsvm", + "build_node": "devstack-trusty-rax-dfw-35589", + "build_patchset": "3", + "build_queue": "check", + "build_ref": "refs/zuul/master/Z741b93ad6d374bd3921c22e149b59a47", + "build_short_uuid": "9c8290b", + "build_status": "FAILURE", + "build_uuid": "9c8290ba761e4c24aa7349f9d2690036", + "error_pr": -7.7564, + "filename": "console.html", + "host": "127.0.0.1:56886", + "log_url": "http://logs.openstack.org/87/136587/3/check/check-grenade-dsvm/9c8290b/console.html", + "message": "Looks like the node went offline during the build. Check the slave log for the details.FATAL: /var/lib/jenkins/logs/slaves/devstack-trusty-rax-dfw-35589/slave.log (No such file or directory)", + "project": "openstack/swift", + "received_at": "2014-11-24 22:50:14 UTC", + "tags": [ + "console.html", + "console" + ], + "type": "jenkins" + }, + "_type": "jenkins", + "sort": [ + 1416869218684 + ] + }, + { + "_id": "5SvfULdKQuW7EXmL58gI-w", + "_index": "logstash-2014.11.24", + "_score": null, + "_source": { + "@timestamp": "2014-11-24T22:46:51.430+00:00", + "@version": "1", + "build_branch": "stable/icehouse", + "build_change": "136715", + "build_master": "jenkins06.openstack.org", + "build_name": "gate-tempest-dsvm-neutron", + "build_node": "devstack-precise-hpcloud-b1-34997", + "build_patchset": "1", + "build_queue": "gate", + "build_ref": "refs/zuul/stable/icehouse/Z405c46e1172d4535a2f0dc072da3984b", + "build_short_uuid": "7a2546b", + "build_status": "FAILURE", + "build_uuid": "7a2546bb41524baaa0c049e6d07916b4", + "error_pr": -7.7562, + "filename": "console.html", + "host": "127.0.0.1:56890", + "log_url": "http://logs.openstack.org/15/136715/1/gate/gate-tempest-dsvm-neutron/7a2546b/console.html", + "message": "Looks like the node went offline during the build. Check the slave log for the details.FATAL: /var/lib/jenkins/logs/slaves/devstack-precise-hpcloud-b1-34997/slave.log (No such file or directory)", + "project": "openstack/neutron", + "received_at": "2014-11-24 22:48:04 UTC", + "tags": [ + "console.html", + "console" + ], + "type": "jenkins" + }, + "_type": "jenkins", + "sort": [ + 1416869211430 + ] + }, + { + "_id": "67T7jzdxT0qbfNkCfxdK8Q", + "_index": "logstash-2014.11.24", + "_score": null, + "_source": { + "@timestamp": "2014-11-24T22:46:29.865+00:00", + "@version": "1", + "build_branch": "master", + "build_change": "136799", + "build_master": "jenkins03.openstack.org", + "build_name": "gate-devstack-dsvm-cells", + "build_node": "devstack-trusty-hpcloud-b3-35432", + "build_patchset": "1", + "build_queue": "gate", + "build_ref": "refs/zuul/master/Z58648a0df698415fa9aba671d3f61026", + "build_short_uuid": "04a883e", + "build_status": "FAILURE", + "build_uuid": "04a883ebda824999afe15d6e4edfdbf0", + "error_pr": -7.8541, + "filename": "console.html", + "host": "127.0.0.1:56890", + "log_url": "http://logs.openstack.org/99/136799/1/gate/gate-devstack-dsvm-cells/04a883e/console.html", + "message": "Looks like the node went offline during the build. Check the slave log for the details.FATAL: /var/lib/jenkins/logs/slaves/devstack-trusty-hpcloud-b3-35432/slave.log (No such file or directory)", + "project": "openstack/ceilometer", + "received_at": "2014-11-24 22:47:51 UTC", + "tags": [ + "console.html", + "console" + ], + "type": "jenkins" + }, + "_type": "jenkins", + "sort": [ + 1416869189865 + ] + }, + { + "_id": "PVgiFVC6RHqBQPAUBFbfYg", + "_index": "logstash-2014.11.24", + "_score": null, + "_source": { + "@timestamp": "2014-11-24T22:46:18.128+00:00", + "@version": "1", + "build_branch": "master", + "build_change": "136876", + "build_master": "jenkins06.openstack.org", + "build_name": "check-tempest-dsvm-neutron-heat-slow", + "build_node": "devstack-trusty-hpcloud-b4-35453", + "build_patchset": "1", + "build_queue": "check", + "build_ref": "refs/zuul/master/Zf6e92450e7924dab94bbecaa66ac3872", + "build_short_uuid": "a2e151f", + "build_status": "FAILURE", + "build_uuid": "a2e151f2cf1749b393e92b00697dd8ce", + "error_pr": -7.6798, + "filename": "console.html", + "host": "127.0.0.1:42430", + "log_url": "http://logs.openstack.org/76/136876/1/check/check-tempest-dsvm-neutron-heat-slow/a2e151f/console.html", + "message": "Looks like the node went offline during the build. Check the slave log for the details.FATAL: /var/lib/jenkins/logs/slaves/devstack-trusty-hpcloud-b4-35453/slave.log (No such file or directory)", + "project": "openstack/horizon", + "received_at": "2014-11-24 22:51:09 UTC", + "tags": [ + "console.html", + "console" + ], + "type": "jenkins" + }, + "_type": "jenkins", + "sort": [ + 1416869178128 + ] + }, + { + "_id": "RWD6_aXrT_S86rp4oQmLNg", + "_index": "logstash-2014.11.24", + "_score": null, + "_source": { + "@timestamp": "2014-11-24T22:46:14.746+00:00", + "@version": "1", + "build_branch": "master", + "build_change": "136529", + "build_master": "jenkins05.openstack.org", + "build_name": "gate-rally-dsvm-neutron-neutron", + "build_node": "devstack-trusty-hpcloud-b4-35457", + "build_patchset": "1", + "build_queue": "check", + "build_ref": "refs/zuul/master/Ze22d254309504be788abc066e2cfc586", + "build_short_uuid": "3417fe7", + "build_status": "FAILURE", + "build_uuid": "3417fe78ccb44780b822e9f9945ecb59", + "error_pr": -7.8868, + "filename": "console.html", + "host": "127.0.0.1:56890", + "log_url": "http://logs.openstack.org/29/136529/1/check/gate-rally-dsvm-neutron-neutron/3417fe7/console.html", + "message": "Looks like the node went offline during the build. Check the slave log for the details.FATAL: /var/lib/jenkins/logs/slaves/devstack-trusty-hpcloud-b4-35457/slave.log (No such file or directory)", + "project": "openstack/neutron", + "received_at": "2014-11-24 22:47:31 UTC", + "tags": [ + "console.html", + "console" + ], + "type": "jenkins" + }, + "_type": "jenkins", + "sort": [ + 1416869174746 + ] + }, + { + "_id": "GKKDgFurQxaA0B2u0rP2ww", + "_index": "logstash-2014.11.24", + "_score": null, + "_source": { + "@timestamp": "2014-11-24T22:46:08.000+00:00", + "@version": "1", + "build_branch": "master", + "build_change": "128258", + "build_master": "jenkins02.openstack.org", + "build_name": "check-neutron-dsvm-functional", + "build_node": "devstack-trusty-rax-iad-35764", + "build_patchset": "6", + "build_queue": "check", + "build_ref": "refs/zuul/master/Z4c06b9a790de462a8e22165e963cc310", + "build_short_uuid": "b2e2e50", + "build_status": "FAILURE", + "build_uuid": "b2e2e504a7b746399ae90da8cbe1de57", + "error_pr": -7.8752, + "filename": "console.html", + "host": "127.0.0.1:56890", + "log_url": "http://logs.openstack.org/58/128258/6/check/check-neutron-dsvm-functional/b2e2e50/console.html", + "message": "Looks like the node went offline during the build. Check the slave log for the details.FATAL: /var/lib/jenkins/logs/slaves/devstack-trusty-rax-iad-35764/slave.log (No such file or directory)", + "project": "openstack/neutron", + "received_at": "2014-11-24 22:47:28 UTC", + "tags": [ + "console.html", + "console" + ], + "type": "jenkins" + }, + "_type": "jenkins", + "sort": [ + 1416869168000 + ] + }, + { + "_id": "7iA2tSCcQjqQzNQ5ihQh7A", + "_index": "logstash-2014.11.24", + "_score": null, + "_source": { + "@timestamp": "2014-11-24T22:45:50.414+00:00", + "@version": "1", + "build_branch": "master", + "build_change": "119842", + "build_master": "jenkins06.openstack.org", + "build_name": "gate-tempest-dsvm-neutron-heat-slow", + "build_node": "devstack-trusty-hpcloud-b4-35452", + "build_patchset": "8", + "build_queue": "gate", + "build_ref": "refs/zuul/master/Z3feee14a2d3f4989af925318ed24f176", + "build_short_uuid": "82bfdd9", + "build_status": "FAILURE", + "build_uuid": "82bfdd9ae1384d959a762ef6221de09a", + "error_pr": -8.4957, + "filename": "console.html", + "host": "127.0.0.1:41007", + "log_url": "http://logs.openstack.org/42/119842/8/gate/gate-tempest-dsvm-neutron-heat-slow/82bfdd9/console.html", + "message": "Looks like the node went offline during the build. Check the slave log for the details.FATAL: /var/lib/jenkins/logs/slaves/devstack-trusty-hpcloud-b4-35452/slave.log (No such file or directory)", + "project": "openstack/horizon", + "received_at": "2014-11-24 22:50:29 UTC", + "tags": [ + "console.html", + "console" + ], + "type": "jenkins" + }, + "_type": "jenkins", + "sort": [ + 1416869150414 + ] + }, + { + "_id": "uAE-yongTju2EpDgTu0hzw", + "_index": "logstash-2014.11.24", + "_score": null, + "_source": { + "@timestamp": "2014-11-24T22:45:47.333+00:00", + "@version": "1", + "build_branch": "master", + "build_change": "136054", + "build_master": "jenkins07.openstack.org", + "build_name": "check-grenade-dsvm", + "build_node": "devstack-trusty-rax-iad-35629", + "build_patchset": "3", + "build_queue": "check", + "build_ref": "refs/zuul/master/Za753b29b1c424960b2ca90b90964e694", + "build_short_uuid": "af7a903", + "build_status": "FAILURE", + "build_uuid": "af7a9034721742d4b415d8ff968b6cd6", + "error_pr": -7.6444, + "filename": "console.html", + "host": "127.0.0.1:42430", + "log_url": "http://logs.openstack.org/54/136054/3/check/check-grenade-dsvm/af7a903/console.html", + "message": "Looks like the node went offline during the build. Check the slave log for the details.FATAL: /var/lib/jenkins/logs/slaves/devstack-trusty-rax-iad-35629/slave.log (No such file or directory)", + "project": "openstack/nova", + "received_at": "2014-11-24 22:51:07 UTC", + "tags": [ + "console.html", + "console" + ], + "type": "jenkins" + }, + "_type": "jenkins", + "sort": [ + 1416869147333 + ] + }, + { + "_id": "6e-0mzBxRX2od6v8HSblsQ", + "_index": "logstash-2014.11.24", + "_score": null, + "_source": { + "@timestamp": "2014-11-24T22:45:46.059+00:00", + "@version": "1", + "build_branch": "master", + "build_change": "135260", + "build_master": "jenkins04.openstack.org", + "build_name": "check-tempest-dsvm-full", + "build_node": "devstack-trusty-hpcloud-b1-35002", + "build_patchset": "6", + "build_queue": "check", + "build_ref": "refs/zuul/master/Z3b77290eed324dc09001b9f93d552ace", + "build_short_uuid": "cbd67c2", + "build_status": "FAILURE", + "build_uuid": "cbd67c2436ce4783843c8971b373a659", + "error_pr": -7.8539, + "filename": "console.html", + "host": "127.0.0.1:56890", + "log_url": "http://logs.openstack.org/60/135260/6/check/check-tempest-dsvm-full/cbd67c2/console.html", + "message": "Looks like the node went offline during the build. Check the slave log for the details.FATAL: /var/lib/jenkins/logs/slaves/devstack-trusty-hpcloud-b1-35002/slave.log (No such file or directory)", + "project": "openstack/nova", + "received_at": "2014-11-24 22:47:27 UTC", + "tags": [ + "console.html", + "console" + ], + "type": "jenkins" + }, + "_type": "jenkins", + "sort": [ + 1416869146059 + ] + }, + { + "_id": "vU-QV14QTEy-v70nwvGryA", + "_index": "logstash-2014.11.24", + "_score": null, + "_source": { + "@timestamp": "2014-11-24T22:45:44.891+00:00", + "@version": "1", + "build_branch": "master", + "build_change": "136811", + "build_master": "jenkins04.openstack.org", + "build_name": "check-tempest-dsvm-ironic-pxe_ssh", + "build_node": "devstack-trusty-hpcloud-b2-35401", + "build_patchset": "1", + "build_queue": "check", + "build_ref": "refs/zuul/master/Z10b70fce43c0412f879d1c1a36c9e910", + "build_short_uuid": "9345fbd", + "build_status": "FAILURE", + "build_uuid": "9345fbd3b47840579015a968f5eca64a", + "error_pr": -7.6507, + "filename": "console.html", + "host": "127.0.0.1:36517", + "log_url": "http://logs.openstack.org/11/136811/1/check/check-tempest-dsvm-ironic-pxe_ssh/9345fbd/console.html", + "message": "Looks like the node went offline during the build. Check the slave log for the details.FATAL: /var/lib/jenkins/logs/slaves/devstack-trusty-hpcloud-b2-35401/slave.log (No such file or directory)", + "project": "openstack-infra/devstack-gate", + "received_at": "2014-11-24 22:46:13 UTC", + "tags": [ + "console.html", + "console" + ], + "type": "jenkins" + }, + "_type": "jenkins", + "sort": [ + 1416869144891 + ] + }, + { + "_id": "LZVjR3CQQ8qOrZ4pu86poA", + "_index": "logstash-2014.11.24", + "_score": null, + "_source": { + "@timestamp": "2014-11-24T22:45:41.289+00:00", + "@version": "1", + "build_branch": "master", + "build_change": "131490", + "build_master": "jenkins01.openstack.org", + "build_name": "check-tempest-dsvm-ironic-pxe_ssh", + "build_node": "devstack-trusty-hpcloud-b2-35410", + "build_patchset": "4", + "build_queue": "check", + "build_ref": "refs/zuul/master/Z07c857d520254f1b867114ac520314e0", + "build_short_uuid": "74780ab", + "build_status": "FAILURE", + "build_uuid": "74780ab8e74e4e15bd797225782e57ed", + "error_pr": -7.4422, + "filename": "console.html", + "host": "127.0.0.1:51071", + "log_url": "http://logs.openstack.org/90/131490/4/check/check-tempest-dsvm-ironic-pxe_ssh/74780ab/console.html", + "message": "Looks like the node went offline during the build. Check the slave log for the details.FATAL: /var/lib/jenkins/logs/slaves/devstack-trusty-hpcloud-b2-35410/slave.log (No such file or directory)", + "project": "openstack/nova", + "received_at": "2014-11-24 22:46:15 UTC", + "tags": [ + "console.html", + "console" + ], + "type": "jenkins" + }, + "_type": "jenkins", + "sort": [ + 1416869141289 + ] + }, + { + "_id": "_mDNJyppQmOgmZph6CgIkw", + "_index": "logstash-2014.11.24", + "_score": null, + "_source": { + "@timestamp": "2014-11-24T22:45:39.230+00:00", + "@version": "1", + "build_branch": "master", + "build_change": "136529", + "build_master": "jenkins05.openstack.org", + "build_name": "check-neutron-dsvm-functional", + "build_node": "devstack-trusty-hpcloud-b1-35366", + "build_patchset": "1", + "build_queue": "check", + "build_ref": "refs/zuul/master/Ze22d254309504be788abc066e2cfc586", + "build_short_uuid": "7e800f9", + "build_status": "FAILURE", + "build_uuid": "7e800f94d8b2475eacd84c2d6b7547d1", + "error_pr": -8.0072, + "filename": "console.html", + "host": "127.0.0.1:47631", + "log_url": "http://logs.openstack.org/29/136529/1/check/check-neutron-dsvm-functional/7e800f9/console.html", + "message": "Looks like the node went offline during the build. Check the slave log for the details.FATAL: /var/lib/jenkins/logs/slaves/devstack-trusty-hpcloud-b1-35366/slave.log (No such file or directory)", + "project": "openstack/neutron", + "received_at": "2014-11-24 22:46:13 UTC", + "tags": [ + "console.html", + "console" + ], + "type": "jenkins" + }, + "_type": "jenkins", + "sort": [ + 1416869139230 + ] + }, + { + "_id": "wfOU-OTcTtm23UrbEICMyg", + "_index": "logstash-2014.11.24", + "_score": null, + "_source": { + "@timestamp": "2014-11-24T22:45:31.212+00:00", + "@version": "1", + "build_branch": "master", + "build_change": "134347", + "build_master": "jenkins01.openstack.org", + "build_name": "check-grenade-dsvm", + "build_node": "devstack-trusty-hpcloud-b4-35093", + "build_patchset": "4", + "build_queue": "check", + "build_ref": "refs/zuul/master/Z2232d6fc83bb43589e1d3d99c265e6fa", + "build_short_uuid": "b8a5b22", + "build_status": "FAILURE", + "build_uuid": "b8a5b22b42134fe99e0a391f00dc268a", + "error_pr": -8.0539, + "filename": "console.html", + "host": "127.0.0.1:47661", + "log_url": "http://logs.openstack.org/47/134347/4/check/check-grenade-dsvm/b8a5b22/console.html", + "message": "Looks like the node went offline during the build. Check the slave log for the details.FATAL: /var/lib/jenkins/logs/slaves/devstack-trusty-hpcloud-b4-35093/slave.log (No such file or directory)", + "project": "openstack/swift", + "received_at": "2014-11-24 22:52:33 UTC", + "tags": [ + "console.html", + "console" + ], + "type": "jenkins" + }, + "_type": "jenkins", + "sort": [ + 1416869131212 + ] + }, + { + "_id": "YTZj72riR-eRv1ILNPZBdw", + "_index": "logstash-2014.11.24", + "_score": null, + "_source": { + "@timestamp": "2014-11-24T22:45:24.678+00:00", + "@version": "1", + "build_branch": "master", + "build_change": "135798", + "build_master": "jenkins02.openstack.org", + "build_name": "check-grenade-dsvm-partial-ncpu", + "build_node": "devstack-trusty-rax-iad-35653", + "build_patchset": "3", + "build_queue": "check", + "build_ref": "refs/zuul/master/Z4860175ffb384093a7e70c7d19f72e0b", + "build_short_uuid": "4260209", + "build_status": "FAILURE", + "build_uuid": "42602095d173432f8fc8ed60a87aead0", + "error_pr": -7.8693, + "filename": "console.html", + "host": "127.0.0.1:56890", + "log_url": "http://logs.openstack.org/98/135798/3/check/check-grenade-dsvm-partial-ncpu/4260209/console.html", + "message": "Looks like the node went offline during the build. Check the slave log for the details.FATAL: /var/lib/jenkins/logs/slaves/devstack-trusty-rax-iad-35653/slave.log (No such file or directory)", + "project": "openstack/nova", + "received_at": "2014-11-24 22:47:00 UTC", + "tags": [ + "console.html", + "console" + ], + "type": "jenkins" + }, + "_type": "jenkins", + "sort": [ + 1416869124678 + ] + }, + { + "_id": "b-x1xrvmRiWFNjET6xNjxA", + "_index": "logstash-2014.11.24", + "_score": null, + "_source": { + "@timestamp": "2014-11-24T22:45:23.149+00:00", + "@version": "1", + "build_branch": "master", + "build_change": "131860", + "build_master": "jenkins06.openstack.org", + "build_name": "check-grenade-dsvm", + "build_node": "devstack-trusty-hpcloud-b4-35082", + "build_patchset": "10", + "build_queue": "check", + "build_ref": "refs/zuul/master/Z6a8e17b7995948ac8260cddafed9eddc", + "build_short_uuid": "208e045", + "build_status": "FAILURE", + "build_uuid": "208e04584c9141f2a1271a4fce8573d5", + "error_pr": -7.8706, + "filename": "console.html", + "host": "127.0.0.1:56890", + "log_url": "http://logs.openstack.org/60/131860/10/check/check-grenade-dsvm/208e045/console.html", + "message": "Looks like the node went offline during the build. Check the slave log for the details.FATAL: /var/lib/jenkins/logs/slaves/devstack-trusty-hpcloud-b4-35082/slave.log (No such file or directory)", + "project": "openstack/cinder", + "received_at": "2014-11-24 22:46:53 UTC", + "tags": [ + "console.html", + "console" + ], + "type": "jenkins" + }, + "_type": "jenkins", + "sort": [ + 1416869123149 + ] + }, + { + "_id": "Z0TRxrNwQQqCcyRFWj9s5g", + "_index": "logstash-2014.11.24", + "_score": null, + "_source": { + "@timestamp": "2014-11-24T22:45:17.938+00:00", + "@version": "1", + "build_branch": "master", + "build_change": "136816", + "build_master": "jenkins02.openstack.org", + "build_name": "check-zaqarclient-dsvm-functional", + "build_node": "devstack-trusty-hpcloud-b5-35521", + "build_patchset": "1", + "build_queue": "check", + "build_ref": "refs/zuul/master/Z21439dcfccde4ce29fb54f074223664d", + "build_short_uuid": "08ac555", + "build_status": "FAILURE", + "build_uuid": "08ac5559fbc442d08b04b46e0c2ddada", + "error_pr": -7.639, + "filename": "console.html", + "host": "127.0.0.1:42420", + "log_url": "http://logs.openstack.org/16/136816/1/check/check-zaqarclient-dsvm-functional/08ac555/console.html", + "message": "Looks like the node went offline during the build. Check the slave log for the details.FATAL: /var/lib/jenkins/logs/slaves/devstack-trusty-hpcloud-b5-35521/slave.log (No such file or directory)", + "project": "openstack/python-zaqarclient", + "received_at": "2014-11-24 22:53:31 UTC", + "tags": [ + "console.html", + "console" + ], + "type": "jenkins" + }, + "_type": "jenkins", + "sort": [ + 1416869117938 + ] + }, + { + "_id": "n5vOEwxOTk-Bo0jNSZpjIA", + "_index": "logstash-2014.11.24", + "_score": null, + "_source": { + "@timestamp": "2014-11-24T22:45:15.647+00:00", + "@version": "1", + "build_branch": "master", + "build_change": "136054", + "build_master": "jenkins04.openstack.org", + "build_name": "check-grenade-dsvm-partial-ncpu", + "build_node": "devstack-trusty-rax-ord-35538", + "build_patchset": "3", + "build_queue": "check", + "build_ref": "refs/zuul/master/Za753b29b1c424960b2ca90b90964e694", + "build_short_uuid": "ebeb7b5", + "build_status": "FAILURE", + "build_uuid": "ebeb7b5f596748938f3203739362955b", + "error_pr": -7.8702, + "filename": "console.html", + "host": "127.0.0.1:56886", + "log_url": "http://logs.openstack.org/54/136054/3/check/check-grenade-dsvm-partial-ncpu/ebeb7b5/console.html", + "message": "Looks like the node went offline during the build. Check the slave log for the details.FATAL: /var/lib/jenkins/logs/slaves/devstack-trusty-rax-ord-35538/slave.log (No such file or directory)", + "project": "openstack/nova", + "received_at": "2014-11-24 22:46:42 UTC", + "tags": [ + "console.html", + "console" + ], + "type": "jenkins" + }, + "_type": "jenkins", + "sort": [ + 1416869115647 + ] + }, + { + "_id": "s9xhmS-MRzub_tBKH_d1hg", + "_index": "logstash-2014.11.24", + "_score": null, + "_source": { + "@timestamp": "2014-11-24T22:45:10.311+00:00", + "@version": "1", + "build_branch": "master", + "build_change": "113467", + "build_master": "jenkins05.openstack.org", + "build_name": "check-tempest-dsvm-neutron-pg-full", + "build_node": "devstack-trusty-rax-ord-35143", + "build_patchset": "5", + "build_queue": "check", + "build_ref": "refs/zuul/master/Z9e458faa25df4a7d983797e14a1ad2c4", + "build_short_uuid": "979a0e2", + "build_status": "FAILURE", + "build_uuid": "979a0e2a8fc048b4812632a6d41ff925", + "error_pr": -7.8605, + "filename": "console.html", + "host": "127.0.0.1:56886", + "log_url": "http://logs.openstack.org/67/113467/5/check/check-tempest-dsvm-neutron-pg-full/979a0e2/console.html", + "message": "Looks like the node went offline during the build. Check the slave log for the details.FATAL: /var/lib/jenkins/logs/slaves/devstack-trusty-rax-ord-35143/slave.log (No such file or directory)", + "project": "openstack/neutron", + "received_at": "2014-11-24 22:46:53 UTC", + "tags": [ + "console.html", + "console" + ], + "type": "jenkins" + }, + "_type": "jenkins", + "sort": [ + 1416869110311 + ] + }, + { + "_id": "H7NY35vDTuamMEcfeRZFfA", + "_index": "logstash-2014.11.24", + "_score": null, + "_source": { + "@timestamp": "2014-11-24T22:45:00.594+00:00", + "@version": "1", + "build_branch": "master", + "build_change": "136219", + "build_master": "jenkins01.openstack.org", + "build_name": "gate-tempest-dsvm-neutron-heat-slow", + "build_node": "devstack-trusty-hpcloud-b3-35444", + "build_patchset": "1", + "build_queue": "gate", + "build_ref": "refs/zuul/master/Z64b0ade0e57b469191e3ed86fe3dc47e", + "build_short_uuid": "0166623", + "build_status": "FAILURE", + "build_uuid": "0166623e5b4541ae8fe12f06eaca4bc4", + "error_pr": -7.8384, + "filename": "console.html", + "host": "127.0.0.1:56886", + "log_url": "http://logs.openstack.org/19/136219/1/gate/gate-tempest-dsvm-neutron-heat-slow/0166623/console.html", + "message": "Looks like the node went offline during the build. Check the slave log for the details.FATAL: /var/lib/jenkins/logs/slaves/devstack-trusty-hpcloud-b3-35444/slave.log (No such file or directory)", + "project": "openstack/trove", + "received_at": "2014-11-24 22:46:40 UTC", + "tags": [ + "console.html", + "console" + ], + "type": "jenkins" + }, + "_type": "jenkins", + "sort": [ + 1416869100594 + ] + }, + { + "_id": "uBTY3DpmTpupHqSIF1KGzg", + "_index": "logstash-2014.11.24", + "_score": null, + "_source": { + "@timestamp": "2014-11-24T22:44:44.643+00:00", + "@version": "1", + "build_branch": "master", + "build_change": "136749", + "build_master": "jenkins06.openstack.org", + "build_name": "gate-tempest-dsvm-neutron-full", + "build_node": "devstack-trusty-rax-ord-35140", + "build_patchset": "1", + "build_queue": "gate", + "build_ref": "refs/zuul/master/Zb1b5a2adc58b444b8040abaf61589683", + "build_short_uuid": "08d1770", + "build_status": "FAILURE", + "build_uuid": "08d17700e1f54cf7bef6cb0b61cda3ba", + "filename": "console.html", + "host": "127.0.0.1:56890", + "log_url": "http://logs.openstack.org/49/136749/1/gate/gate-tempest-dsvm-neutron-full/08d1770/console.html", + "message": "Looks like the node went offline during the build. Check the slave log for the details.FATAL: /var/lib/jenkins/logs/slaves/devstack-trusty-rax-ord-35140/slave.log (No such file or directory)", + "project": "openstack/keystone", + "received_at": "2014-11-24 22:46:47 UTC", + "tags": [ + "console.html", + "console" + ], + "type": "jenkins" + }, + "_type": "jenkins", + "sort": [ + 1416869084643 + ] + }, + { + "_id": "TW73aOasTci2oz4MOF6a-Q", + "_index": "logstash-2014.11.24", + "_score": null, + "_source": { + "@timestamp": "2014-11-24T22:44:32.460+00:00", + "@version": "1", + "build_branch": "master", + "build_change": "135503", + "build_master": "jenkins03.openstack.org", + "build_name": "check-grenade-dsvm", + "build_node": "devstack-trusty-hpcloud-b5-34920", + "build_patchset": "2", + "build_queue": "check", + "build_ref": "refs/zuul/master/Z6c7812a87041416296aba4ce8cf9a22b", + "build_short_uuid": "8186774", + "build_status": "FAILURE", + "build_uuid": "81867747e0b94ffe8237165ab0d45752", + "error_pr": -7.8405, + "filename": "console.html", + "host": "127.0.0.1:56890", + "log_url": "http://logs.openstack.org/03/135503/2/check/check-grenade-dsvm/8186774/console.html", + "message": "Looks like the node went offline during the build. Check the slave log for the details.FATAL: /var/lib/jenkins/logs/slaves/devstack-trusty-hpcloud-b5-34920/slave.log (No such file or directory)", + "project": "openstack-dev/devstack", + "received_at": "2014-11-24 22:46:45 UTC", + "tags": [ + "console.html", + "console" + ], + "type": "jenkins" + }, + "_type": "jenkins", + "sort": [ + 1416869072460 + ] + }, + { + "_id": "cF4eJJ5HS1eNnHZr-RzeeQ", + "_index": "logstash-2014.11.24", + "_score": null, + "_source": { + "@timestamp": "2014-11-24T22:44:29.739+00:00", + "@version": "1", + "build_branch": "master", + "build_change": "136800", + "build_master": "jenkins02.openstack.org", + "build_name": "gate-tempest-dsvm-neutron-src-python-ceilometerclient", + "build_node": "devstack-trusty-hpcloud-b4-34408", + "build_patchset": "1", + "build_queue": "check", + "build_ref": "refs/zuul/master/Z54ef8d8728694b839b3ac81fdb65f0fc", + "build_short_uuid": "9101521", + "build_status": "FAILURE", + "build_uuid": "91015217531a41d5919ad07010efc002", + "filename": "console.html", + "host": "127.0.0.1:36501", + "log_url": "http://logs.openstack.org/00/136800/1/check/gate-tempest-dsvm-neutron-src-python-ceilometerclient/9101521/console.html", + "message": "Looks like the node went offline during the build. Check the slave log for the details.FATAL: /var/lib/jenkins/logs/slaves/devstack-trusty-hpcloud-b4-34408/slave.log (No such file or directory)", + "project": "openstack/python-ceilometerclient", + "received_at": "2014-11-24 22:46:32 UTC", + "tags": [ + "console.html", + "console" + ], + "type": "jenkins" + }, + "_type": "jenkins", + "sort": [ + 1416869069739 + ] + }, + { + "_id": "YdLEuI1ARpawJsIPnR48-A", + "_index": "logstash-2014.11.24", + "_score": null, + "_source": { + "@timestamp": "2014-11-24T22:44:29.578+00:00", + "@version": "1", + "build_branch": "master", + "build_change": "115334", + "build_master": "jenkins05.openstack.org", + "build_name": "check-devstack-dsvm-cells", + "build_node": "devstack-trusty-hpcloud-b1-35361", + "build_patchset": "10", + "build_queue": "check", + "build_ref": "refs/zuul/master/Z0891ff76d015464b952390e2c805bbf5", + "build_short_uuid": "8a16053", + "build_status": "FAILURE", + "build_uuid": "8a16053038fb438eaf901ba77f287670", + "error_pr": -7.7391, + "filename": "console.html", + "host": "127.0.0.1:56890", + "log_url": "http://logs.openstack.org/34/115334/10/check/check-devstack-dsvm-cells/8a16053/console.html", + "message": "Looks like the node went offline during the build. Check the slave log for the details.FATAL: /var/lib/jenkins/logs/slaves/devstack-trusty-hpcloud-b1-35361/slave.log (No such file or directory)", + "project": "openstack/nova", + "received_at": "2014-11-24 22:46:39 UTC", + "tags": [ + "console.html", + "console" + ], + "type": "jenkins" + }, + "_type": "jenkins", + "sort": [ + 1416869069578 + ] + }, + { + "_id": "BKFD9XLwTYqM4Hb2WBjmhg", + "_index": "logstash-2014.11.24", + "_score": null, + "_source": { + "@timestamp": "2014-11-24T22:44:22.774+00:00", + "@version": "1", + "build_branch": "master", + "build_change": "135186", + "build_master": "jenkins06.openstack.org", + "build_name": "check-grenade-dsvm", + "build_node": "devstack-trusty-hpcloud-b2-34884", + "build_patchset": "5", + "build_queue": "check", + "build_ref": "refs/zuul/master/Z51535d76fb074c88b719a135c45e3ad4", + "build_short_uuid": "07ca446", + "build_status": "FAILURE", + "build_uuid": "07ca446bbf624722948d6867a3e260f3", + "error_pr": -7.6999, + "filename": "console.html", + "host": "127.0.0.1:33368", + "log_url": "http://logs.openstack.org/86/135186/5/check/check-grenade-dsvm/07ca446/console.html", + "message": "Looks like the node went offline during the build. Check the slave log for the details.FATAL: /var/lib/jenkins/logs/slaves/devstack-trusty-hpcloud-b2-34884/slave.log (No such file or directory)", + "project": "openstack/ceilometer", + "received_at": "2014-11-24 22:48:10 UTC", + "tags": [ + "console.html", + "console" + ], + "type": "jenkins" + }, + "_type": "jenkins", + "sort": [ + 1416869062774 + ] + }, + { + "_id": "JeNFf6u_SyCHEA6SI1M3xQ", + "_index": "logstash-2014.11.24", + "_score": null, + "_source": { + "@timestamp": "2014-11-24T22:44:04.597+00:00", + "@version": "1", + "build_branch": "master", + "build_change": "135798", + "build_master": "jenkins05.openstack.org", + "build_name": "check-tempest-dsvm-ironic-pxe_ssh", + "build_node": "devstack-trusty-rax-ord-35537", + "build_patchset": "3", + "build_queue": "check", + "build_ref": "refs/zuul/master/Z4860175ffb384093a7e70c7d19f72e0b", + "build_short_uuid": "977ac25", + "build_status": "FAILURE", + "build_uuid": "977ac258f1c5461588644c20dc458cb4", + "error_pr": -7.8641, + "filename": "console.html", + "host": "127.0.0.1:56886", + "log_url": "http://logs.openstack.org/98/135798/3/check/check-tempest-dsvm-ironic-pxe_ssh/977ac25/console.html", + "message": "Looks like the node went offline during the build. Check the slave log for the details.FATAL: /var/lib/jenkins/logs/slaves/devstack-trusty-rax-ord-35537/slave.log (No such file or directory)", + "project": "openstack/nova", + "received_at": "2014-11-24 22:46:33 UTC", + "tags": [ + "console.html", + "console" + ], + "type": "jenkins" + }, + "_type": "jenkins", + "sort": [ + 1416869044597 + ] + }, + { + "_id": "h9pt4nDaTOGJ7SkFzlrWmw", + "_index": "logstash-2014.11.24", + "_score": null, + "_source": { + "@timestamp": "2014-11-24T22:43:58.046+00:00", + "@version": "1", + "build_branch": "master", + "build_change": "136811", + "build_master": "jenkins06.openstack.org", + "build_name": "check-tempest-dsvm-centos7", + "build_node": "devstack-centos7-rax-dfw-35154", + "build_patchset": "1", + "build_queue": "check", + "build_ref": "refs/zuul/master/Z10b70fce43c0412f879d1c1a36c9e910", + "build_short_uuid": "1722f13", + "build_status": "FAILURE", + "build_uuid": "1722f1316c8a49228c16145d7585132e", + "error_pr": -7.877, + "filename": "console.html", + "host": "127.0.0.1:56890", + "log_url": "http://logs.openstack.org/11/136811/1/check/check-tempest-dsvm-centos7/1722f13/console.html", + "message": "Looks like the node went offline during the build. Check the slave log for the details.FATAL: /var/lib/jenkins/logs/slaves/devstack-centos7-rax-dfw-35154/slave.log (No such file or directory)", + "project": "openstack-infra/devstack-gate", + "received_at": "2014-11-24 22:45:51 UTC", + "tags": [ + "console.html", + "console" + ], + "type": "jenkins" + }, + "_type": "jenkins", + "sort": [ + 1416869038046 + ] + }, + { + "_id": "nYiIqSd1QZiXqlaTGV2Zvw", + "_index": "logstash-2014.11.24", + "_score": null, + "_source": { + "@timestamp": "2014-11-24T22:43:51.265+00:00", + "@version": "1", + "build_branch": "master", + "build_change": "136344", + "build_master": "jenkins07.openstack.org", + "build_name": "check-tempest-dsvm-full", + "build_node": "devstack-trusty-rax-ord-35138", + "build_patchset": "3", + "build_queue": "check", + "build_ref": "refs/zuul/master/Z12626a95f34e467e88c6f5760cace815", + "build_short_uuid": "c76e0d0", + "build_status": "FAILURE", + "build_uuid": "c76e0d0999ac40989d2dbeecb410d49f", + "error_pr": -7.8383, + "filename": "console.html", + "host": "127.0.0.1:56890", + "log_url": "http://logs.openstack.org/44/136344/3/check/check-tempest-dsvm-full/c76e0d0/console.html", + "message": "Looks like the node went offline during the build. Check the slave log for the details.FATAL: /var/lib/jenkins/logs/slaves/devstack-trusty-rax-ord-35138/slave.log (No such file or directory)", + "project": "openstack/nova", + "received_at": "2014-11-24 22:46:11 UTC", + "tags": [ + "console.html", + "console" + ], + "type": "jenkins" + }, + "_type": "jenkins", + "sort": [ + 1416869031265 + ] + }, + { + "_id": "gKhI3nDgQJyrR3uL6Wf5vA", + "_index": "logstash-2014.11.24", + "_score": null, + "_source": { + "@timestamp": "2014-11-24T22:43:47.692+00:00", + "@version": "1", + "build_branch": "master", + "build_change": "136876", + "build_master": "jenkins01.openstack.org", + "build_name": "gate-horizon-dsvm-integration", + "build_node": "devstack-trusty-hpcloud-b3-35442", + "build_patchset": "1", + "build_queue": "check", + "build_ref": "refs/zuul/master/Zf6e92450e7924dab94bbecaa66ac3872", + "build_short_uuid": "71ed1b8", + "build_status": "FAILURE", + "build_uuid": "71ed1b8c8bbe484f89cb27ad79fd0112", + "error_pr": -7.8715, + "filename": "console.html", + "host": "127.0.0.1:56890", + "log_url": "http://logs.openstack.org/76/136876/1/check/gate-horizon-dsvm-integration/71ed1b8/console.html", + "message": "Looks like the node went offline during the build. Check the slave log for the details.FATAL: /var/lib/jenkins/logs/slaves/devstack-trusty-hpcloud-b3-35442/slave.log (No such file or directory)", + "project": "openstack/horizon", + "received_at": "2014-11-24 22:45:54 UTC", + "tags": [ + "console.html", + "console" + ], + "type": "jenkins" + }, + "_type": "jenkins", + "sort": [ + 1416869027692 + ] + }, + { + "_id": "OkLr_ywPSoayO58j9vCyPw", + "_index": "logstash-2014.11.24", + "_score": null, + "_source": { + "@timestamp": "2014-11-24T22:43:25.346+00:00", + "@version": "1", + "build_branch": "master", + "build_change": "136797", + "build_master": "jenkins03.openstack.org", + "build_name": "gate-tempest-dsvm-neutron-src-oslo.db-juno", + "build_node": "devstack-trusty-hpcloud-b1-34224", + "build_patchset": "2", + "build_queue": "check", + "build_ref": "refs/zuul/master/Z5c4bc007bc0449e5a62a6798d8e19379", + "build_short_uuid": "44e9926", + "build_status": "FAILURE", + "build_uuid": "44e9926cf3184cd98f0e0019f237944f", + "error_pr": -7.5887, + "filename": "console.html", + "host": "127.0.0.1:33368", + "log_url": "http://logs.openstack.org/97/136797/2/check/gate-tempest-dsvm-neutron-src-oslo.db-juno/44e9926/console.html", + "message": "Looks like the node went offline during the build. Check the slave log for the details.FATAL: /var/lib/jenkins/logs/slaves/devstack-trusty-hpcloud-b1-34224/slave.log (No such file or directory)", + "project": "openstack/oslo.db", + "received_at": "2014-11-24 22:48:03 UTC", + "tags": [ + "console.html", + "console" + ], + "type": "jenkins" + }, + "_type": "jenkins", + "sort": [ + 1416869005346 + ] + }, + { + "_id": "o3XFew9dTKKR-VQKQ5kfYA", + "_index": "logstash-2014.11.24", + "_score": null, + "_source": { + "@timestamp": "2014-11-24T22:43:25.040+00:00", + "@version": "1", + "build_branch": "master", + "build_change": "136035", + "build_master": "jenkins04.openstack.org", + "build_name": "gate-tempest-dsvm-neutron-pg-full", + "build_node": "devstack-trusty-rax-dfw-34951", + "build_patchset": "4", + "build_queue": "gate", + "build_ref": "refs/zuul/master/Zdac7f6a6b5ed4a768dd2c2fc362e9eb7", + "build_short_uuid": "5c0df6e", + "build_status": "FAILURE", + "build_uuid": "5c0df6eeda6e44d5acf4dc82bc947c72", + "error_pr": -7.8736, + "filename": "console.html", + "host": "127.0.0.1:56902", + "log_url": "http://logs.openstack.org/35/136035/4/gate/gate-tempest-dsvm-neutron-pg-full/5c0df6e/console.html", + "message": "Looks like the node went offline during the build. Check the slave log for the details.FATAL: /var/lib/jenkins/logs/slaves/devstack-trusty-rax-dfw-34951/slave.log (No such file or directory)", + "project": "openstack/neutron", + "received_at": "2014-11-24 22:53:36 UTC", + "tags": [ + "console.html", + "console" + ], + "type": "jenkins" + }, + "_type": "jenkins", + "sort": [ + 1416869005040 + ] + }, + { + "_id": "fs9dAHOnSRWAAB_-Yxq4hw", + "_index": "logstash-2014.11.24", + "_score": null, + "_source": { + "@timestamp": "2014-11-24T22:43:18.839+00:00", + "@version": "1", + "build_branch": "master", + "build_change": "136891", + "build_master": "jenkins07.openstack.org", + "build_name": "check-tripleo-ironic-overcloud-f20-nonha", + "build_node": "tripleo-f20-tripleo-test-cloud-rh1-32932", + "build_patchset": "1", + "build_queue": "check-tripleo", + "build_ref": "refs/zuul/master/Zbf112501c0a840b9a50043870544d17c", + "build_short_uuid": "869b8c5", + "build_status": "FAILURE", + "build_uuid": "869b8c5c38484ce8a5c0af5c6fbc7552", + "filename": "console.html", + "host": "127.0.0.1:56902", + "log_url": "http://logs.openstack.org/91/136891/1/check-tripleo/check-tripleo-ironic-overcloud-f20-nonha/869b8c5/console.html", + "message": "Looks like the node went offline during the build. Check the slave log for the details.FATAL: /var/lib/jenkins/logs/slaves/tripleo-f20-tripleo-test-cloud-rh1-32932/slave.log (No such file or directory)", + "project": "openstack/tripleo-heat-templates", + "received_at": "2014-11-24 23:00:36 UTC", + "tags": [ + "console.html", + "console" + ], + "type": "jenkins" + }, + "_type": "jenkins", + "sort": [ + 1416868998839 + ] + }, + { + "_id": "ypU26w8sTE2AJnVOH0pQRg", + "_index": "logstash-2014.11.24", + "_score": null, + "_source": { + "@timestamp": "2014-11-24T22:43:08.517+00:00", + "@version": "1", + "build_branch": "master", + "build_change": "135798", + "build_master": "jenkins01.openstack.org", + "build_name": "check-grenade-dsvm", + "build_node": "devstack-trusty-rax-iad-35656", + "build_patchset": "3", + "build_queue": "check", + "build_ref": "refs/zuul/master/Z4860175ffb384093a7e70c7d19f72e0b", + "build_short_uuid": "c2044c6", + "build_status": "FAILURE", + "build_uuid": "c2044c6a2dfa4d37b9a3b66c81d28ab2", + "filename": "console.html", + "host": "127.0.0.1:56890", + "log_url": "http://logs.openstack.org/98/135798/3/check/check-grenade-dsvm/c2044c6/console.html", + "message": "Looks like the node went offline during the build. Check the slave log for the details.FATAL: /var/lib/jenkins/logs/slaves/devstack-trusty-rax-iad-35656/slave.log (No such file or directory)", + "project": "openstack/nova", + "received_at": "2014-11-24 22:45:25 UTC", + "tags": [ + "console.html", + "console" + ], + "type": "jenkins" + }, + "_type": "jenkins", + "sort": [ + 1416868988517 + ] + }, + { + "_id": "lAyZQP3iS9GyWXGBnSHLDA", + "_index": "logstash-2014.11.24", + "_score": null, + "_source": { + "@timestamp": "2014-11-24T22:43:02.883+00:00", + "@version": "1", + "build_branch": "master", + "build_change": "133904", + "build_master": "jenkins04.openstack.org", + "build_name": "check-devstack-dsvm-cells", + "build_node": "devstack-trusty-hpcloud-b4-35467", + "build_patchset": "3", + "build_queue": "check", + "build_ref": "refs/zuul/master/Za5c1598a7f81424a94f6da3ace79847c", + "build_short_uuid": "99390df", + "build_status": "FAILURE", + "build_uuid": "99390df2cdb74c439b34a5c2b192b0ec", + "error_pr": -7.8706, + "filename": "console.html", + "host": "127.0.0.1:56890", + "log_url": "http://logs.openstack.org/04/133904/3/check/check-devstack-dsvm-cells/99390df/console.html", + "message": "Looks like the node went offline during the build. Check the slave log for the details.FATAL: /var/lib/jenkins/logs/slaves/devstack-trusty-hpcloud-b4-35467/slave.log (No such file or directory)", + "project": "openstack/nova", + "received_at": "2014-11-24 22:45:19 UTC", + "tags": [ + "console.html", + "console" + ], + "type": "jenkins" + }, + "_type": "jenkins", + "sort": [ + 1416868982883 + ] + }, + { + "_id": "xvIl0N1iSAmAnFGRFS_ngQ", + "_index": "logstash-2014.11.24", + "_score": null, + "_source": { + "@timestamp": "2014-11-24T22:42:41.221+00:00", + "@version": "1", + "build_branch": "feature/lbaasv2", + "build_change": "126244", + "build_master": "jenkins04.openstack.org", + "build_name": "check-tempest-dsvm-neutron-dvr", + "build_node": "devstack-trusty-rax-dfw-35594", + "build_patchset": "4", + "build_queue": "check", + "build_ref": "refs/zuul/feature/lbaasv2/Z37a2fcfdd54a431b8797c891a108673d", + "build_short_uuid": "8d1f5e6", + "build_status": "FAILURE", + "build_uuid": "8d1f5e667faa4e1193d27483e97110e3", + "error_pr": -7.882, + "filename": "console.html", + "host": "127.0.0.1:56902", + "log_url": "http://logs.openstack.org/44/126244/4/check/check-tempest-dsvm-neutron-dvr/8d1f5e6/console.html", + "message": "Looks like the node went offline during the build. Check the slave log for the details.FATAL: /var/lib/jenkins/logs/slaves/devstack-trusty-rax-dfw-35594/slave.log (No such file or directory)", + "project": "openstack/neutron", + "received_at": "2014-11-24 22:53:18 UTC", + "tags": [ + "console.html", + "console" + ], + "type": "jenkins" + }, + "_type": "jenkins", + "sort": [ + 1416868961221 + ] + }, + { + "_id": "kG5MldFgSRu9Zejx36QFbw", + "_index": "logstash-2014.11.24", + "_score": null, + "_source": { + "@timestamp": "2014-11-24T22:42:10.070+00:00", + "@version": "1", + "build_branch": "master", + "build_change": "131865", + "build_master": "jenkins05.openstack.org", + "build_name": "check-devstack-dsvm-cells", + "build_node": "devstack-trusty-hpcloud-b3-35424", + "build_patchset": "6", + "build_queue": "check", + "build_ref": "refs/zuul/master/Z8fa8a837ccec42068bda3ee39ad6290a", + "build_short_uuid": "9228772", + "build_status": "FAILURE", + "build_uuid": "922877293e2a44db8cd17a141d873b0e", + "filename": "console.html", + "host": "127.0.0.1:56890", + "log_url": "http://logs.openstack.org/65/131865/6/check/check-devstack-dsvm-cells/9228772/console.html", + "message": "Looks like the node went offline during the build. Check the slave log for the details.FATAL: /var/lib/jenkins/logs/slaves/devstack-trusty-hpcloud-b3-35424/slave.log (No such file or directory)", + "project": "openstack/cinder", + "received_at": "2014-11-24 22:44:41 UTC", + "tags": [ + "console.html", + "console" + ], + "type": "jenkins" + }, + "_type": "jenkins", + "sort": [ + 1416868930070 + ] + }, + { + "_id": "91cX59JzQJGUTJc3bEpCdQ", + "_index": "logstash-2014.11.24", + "_score": null, + "_source": { + "@timestamp": "2014-11-24T22:41:55.294+00:00", + "@version": "1", + "build_branch": "master", + "build_change": "136511", + "build_master": "jenkins03.openstack.org", + "build_name": "check-tempest-dsvm-neutron-dvr", + "build_node": "devstack-trusty-hpcloud-b4-35088", + "build_patchset": "4", + "build_queue": "check", + "build_ref": "refs/zuul/master/Z9e1b73a6bd4840d7919d7871967d3e43", + "build_short_uuid": "e903ee6", + "build_status": "FAILURE", + "build_uuid": "e903ee6fae154ab1b4fe961ae70582d2", + "error_pr": -7.8779, + "filename": "console.html", + "host": "127.0.0.1:56890", + "log_url": "http://logs.openstack.org/11/136511/4/check/check-tempest-dsvm-neutron-dvr/e903ee6/console.html", + "message": "Looks like the node went offline during the build. Check the slave log for the details.FATAL: /var/lib/jenkins/logs/slaves/devstack-trusty-hpcloud-b4-35088/slave.log (No such file or directory)", + "project": "openstack/neutron", + "received_at": "2014-11-24 22:44:20 UTC", + "tags": [ + "console.html", + "console" + ], + "type": "jenkins" + }, + "_type": "jenkins", + "sort": [ + 1416868915294 + ] + }, + { + "_id": "9UEDYzGcQeqWBDuQxGleQQ", + "_index": "logstash-2014.11.24", + "_score": null, + "_source": { + "@timestamp": "2014-11-24T22:41:54.959+00:00", + "@version": "1", + "build_branch": "master", + "build_change": "134623", + "build_master": "jenkins04.openstack.org", + "build_name": "check-devstack-dsvm-cells", + "build_node": "devstack-trusty-hpcloud-b1-35376", + "build_patchset": "3", + "build_queue": "check", + "build_ref": "refs/zuul/master/Z34fe4766c66d411db29e8e85d8373bb0", + "build_short_uuid": "a225911", + "build_status": "FAILURE", + "build_uuid": "a22591118ca54789a347768707d68c50", + "error_pr": -7.8785, + "filename": "console.html", + "host": "127.0.0.1:56902", + "log_url": "http://logs.openstack.org/23/134623/3/check/check-devstack-dsvm-cells/a225911/console.html", + "message": "Looks like the node went offline during the build. Check the slave log for the details.FATAL: /var/lib/jenkins/logs/slaves/devstack-trusty-hpcloud-b1-35376/slave.log (No such file or directory)", + "project": "openstack/nova", + "received_at": "2014-11-24 22:52:54 UTC", + "tags": [ + "console.html", + "console" + ], + "type": "jenkins" + }, + "_type": "jenkins", + "sort": [ + 1416868914959 + ] + }, + { + "_id": "2Gx68alITu6g7HJfw6asrQ", + "_index": "logstash-2014.11.24", + "_score": null, + "_source": { + "@timestamp": "2014-11-24T22:41:42.021+00:00", + "@version": "1", + "build_branch": "master", + "build_change": "119842", + "build_master": "jenkins06.openstack.org", + "build_name": "check-devstack-dsvm-cells", + "build_node": "devstack-trusty-hpcloud-b4-35454", + "build_patchset": "8", + "build_queue": "gate", + "build_ref": "refs/zuul/master/Z3feee14a2d3f4989af925318ed24f176", + "build_short_uuid": "91f1883", + "build_status": "FAILURE", + "build_uuid": "91f18834568943d3a16cc670a50d5c6a", + "error_pr": -9.2901, + "filename": "console.html", + "host": "127.0.0.1:48296", + "log_url": "http://logs.openstack.org/42/119842/8/gate/check-devstack-dsvm-cells/91f1883/console.html", + "message": "Looks like the node went offline during the build. Check the slave log for the details.FATAL: /var/lib/jenkins/logs/slaves/devstack-trusty-hpcloud-b4-35454/slave.log (No such file or directory)", + "project": "openstack/horizon", + "received_at": "2014-11-24 22:46:57 UTC", + "tags": [ + "console.html", + "console" + ], + "type": "jenkins" + }, + "_type": "jenkins", + "sort": [ + 1416868902021 + ] + }, + { + "_id": "QcrFcK3WSU2-LTRqN6rQQA", + "_index": "logstash-2014.11.24", + "_score": null, + "_source": { + "@timestamp": "2014-11-24T22:41:41.664+00:00", + "@version": "1", + "build_branch": "master", + "build_change": "136772", + "build_master": "jenkins05.openstack.org", + "build_name": "check-tempest-dsvm-ironic-pxe_ssh", + "build_node": "devstack-trusty-rax-dfw-35581", + "build_patchset": "2", + "build_queue": "check", + "build_ref": "refs/zuul/master/Z208e92672b8146bb8300fb2e1199effe", + "build_short_uuid": "08e9286", + "build_status": "FAILURE", + "build_uuid": "08e9286376244002bea14049fa60fd47", + "filename": "console.html", + "host": "127.0.0.1:56890", + "log_url": "http://logs.openstack.org/72/136772/2/check/check-tempest-dsvm-ironic-pxe_ssh/08e9286/console.html", + "message": "Looks like the node went offline during the build. Check the slave log for the details.FATAL: /var/lib/jenkins/logs/slaves/devstack-trusty-rax-dfw-35581/slave.log (No such file or directory)", + "project": "openstack/nova", + "received_at": "2014-11-24 22:44:18 UTC", + "tags": [ + "console.html", + "console" + ], + "type": "jenkins" + }, + "_type": "jenkins", + "sort": [ + 1416868901664 + ] + }, + { + "_id": "z7sADiqNREKrXz0rIzAsDQ", + "_index": "logstash-2014.11.24", + "_score": null, + "_source": { + "@timestamp": "2014-11-24T22:41:40.578+00:00", + "@version": "1", + "build_branch": "master", + "build_change": "136590", + "build_master": "jenkins01.openstack.org", + "build_name": "check-tempest-dsvm-neutron-full", + "build_node": "devstack-trusty-hpcloud-b1-34247", + "build_patchset": "2", + "build_queue": "check", + "build_ref": "refs/zuul/master/Z15155e0fcc19491f8cce9bf88dd4e3fc", + "build_short_uuid": "2fafd6f", + "build_status": "FAILURE", + "build_uuid": "2fafd6fd9cbd47c2a006a18c1772ee79", + "filename": "console.html", + "host": "127.0.0.1:56902", + "log_url": "http://logs.openstack.org/90/136590/2/check/check-tempest-dsvm-neutron-full/2fafd6f/console.html", + "message": "Looks like the node went offline during the build. Check the slave log for the details.FATAL: /var/lib/jenkins/logs/slaves/devstack-trusty-hpcloud-b1-34247/slave.log (No such file or directory)", + "project": "openstack/swift", + "received_at": "2014-11-24 22:53:14 UTC", + "tags": [ + "console.html", + "console" + ], + "type": "jenkins" + }, + "_type": "jenkins", + "sort": [ + 1416868900578 + ] + }, + { + "_id": "pTPsENR5QyGQ29mV84olqw", + "_index": "logstash-2014.11.24", + "_score": null, + "_source": { + "@timestamp": "2014-11-24T22:41:34.737+00:00", + "@version": "1", + "build_branch": "master", + "build_change": "129256", + "build_master": "jenkins04.openstack.org", + "build_name": "check-grenade-dsvm", + "build_node": "devstack-trusty-hpcloud-b4-34907", + "build_patchset": "1", + "build_queue": "check", + "build_ref": "refs/zuul/master/Zd1674d93a4d94cb28e65a2b80abd5090", + "build_short_uuid": "ed5380a", + "build_status": "FAILURE", + "build_uuid": "ed5380a61ccc4e5d8b75892baa6536bd", + "error_pr": -7.8651, + "filename": "console.html", + "host": "127.0.0.1:56886", + "log_url": "http://logs.openstack.org/56/129256/1/check/check-grenade-dsvm/ed5380a/console.html", + "message": "Looks like the node went offline during the build. Check the slave log for the details.FATAL: /var/lib/jenkins/logs/slaves/devstack-trusty-hpcloud-b4-34907/slave.log (No such file or directory)", + "project": "openstack/keystone", + "received_at": "2014-11-24 22:43:38 UTC", + "tags": [ + "console.html", + "console" + ], + "type": "jenkins" + }, + "_type": "jenkins", + "sort": [ + 1416868894737 + ] + }, + { + "_id": "g1j2vlCQTZScuk6KgpyQBQ", + "_index": "logstash-2014.11.24", + "_score": null, + "_source": { + "@timestamp": "2014-11-24T22:41:31.513+00:00", + "@version": "1", + "build_branch": "master", + "build_change": "125746", + "build_master": "jenkins02.openstack.org", + "build_name": "check-tempest-dsvm-neutron-heat-slow", + "build_node": "devstack-trusty-rax-ord-35544", + "build_patchset": "4", + "build_queue": "check", + "build_ref": "refs/zuul/master/Zbff65f90b54143e0b2c23629e9fb4e5e", + "build_short_uuid": "a0ece75", + "build_status": "FAILURE", + "build_uuid": "a0ece75ebde34debb380cbc950102fdf", + "error_pr": -7.7738, + "filename": "console.html", + "host": "127.0.0.1:56902", + "log_url": "http://logs.openstack.org/46/125746/4/check/check-tempest-dsvm-neutron-heat-slow/a0ece75/console.html", + "message": "Looks like the node went offline during the build. Check the slave log for the details.FATAL: /var/lib/jenkins/logs/slaves/devstack-trusty-rax-ord-35544/slave.log (No such file or directory)", + "project": "openstack/swift", + "received_at": "2014-11-24 22:51:47 UTC", + "tags": [ + "console.html", + "console" + ], + "type": "jenkins" + }, + "_type": "jenkins", + "sort": [ + 1416868891513 + ] + }, + { + "_id": "OmkVe7FlQ7uY6xLQWUQdkg", + "_index": "logstash-2014.11.24", + "_score": null, + "_source": { + "@timestamp": "2014-11-24T22:41:23.886+00:00", + "@version": "1", + "build_branch": "master", + "build_change": "135260", + "build_master": "jenkins05.openstack.org", + "build_name": "check-tempest-dsvm-postgres-full", + "build_node": "devstack-trusty-hpcloud-b1-35001", + "build_patchset": "6", + "build_queue": "check", + "build_ref": "refs/zuul/master/Z3b77290eed324dc09001b9f93d552ace", + "build_short_uuid": "efeeefd", + "build_status": "FAILURE", + "build_uuid": "efeeefd1569c4094807e8bdb571a80ff", + "error_pr": -7.8553, + "filename": "console.html", + "host": "127.0.0.1:56902", + "log_url": "http://logs.openstack.org/60/135260/6/check/check-tempest-dsvm-postgres-full/efeeefd/console.html", + "message": "Looks like the node went offline during the build. Check the slave log for the details.FATAL: /var/lib/jenkins/logs/slaves/devstack-trusty-hpcloud-b1-35001/slave.log (No such file or directory)", + "project": "openstack/nova", + "received_at": "2014-11-24 22:52:09 UTC", + "tags": [ + "console.html", + "console" + ], + "type": "jenkins" + }, + "_type": "jenkins", + "sort": [ + 1416868883886 + ] + }, + { + "_id": "yrlcAx4nRD-UvAlMjM_Gsw", + "_index": "logstash-2014.11.24", + "_score": null, + "_source": { + "@timestamp": "2014-11-24T22:41:17.943+00:00", + "@version": "1", + "build_branch": "master", + "build_change": "131865", + "build_master": "jenkins03.openstack.org", + "build_name": "gate-rally-dsvm-cinder", + "build_node": "devstack-trusty-hpcloud-b1-35380", + "build_patchset": "6", + "build_queue": "check", + "build_ref": "refs/zuul/master/Z8fa8a837ccec42068bda3ee39ad6290a", + "build_short_uuid": "82a78f7", + "build_status": "FAILURE", + "build_uuid": "82a78f701daa4444a545cd1628d8f46e", + "error_pr": -7.874, + "filename": "console.html", + "host": "127.0.0.1:56890", + "log_url": "http://logs.openstack.org/65/131865/6/check/gate-rally-dsvm-cinder/82a78f7/console.html", + "message": "Looks like the node went offline during the build. Check the slave log for the details.FATAL: /var/lib/jenkins/logs/slaves/devstack-trusty-hpcloud-b1-35380/slave.log (No such file or directory)", + "project": "openstack/cinder", + "received_at": "2014-11-24 22:44:18 UTC", + "tags": [ + "console.html", + "console" + ], + "type": "jenkins" + }, + "_type": "jenkins", + "sort": [ + 1416868877943 + ] + }, + { + "_id": "bcUx7KbjTN-PUikaOCa9qw", + "_index": "logstash-2014.11.24", + "_score": null, + "_source": { + "@timestamp": "2014-11-24T22:41:10.456+00:00", + "@version": "1", + "build_branch": "master", + "build_change": "127923", + "build_master": "jenkins06.openstack.org", + "build_name": "check-tempest-dsvm-postgres-full", + "build_node": "devstack-trusty-hpcloud-b1-34881", + "build_patchset": "5", + "build_queue": "check", + "build_ref": "refs/zuul/master/Zb4e719aa4bd54f718c6fd5d66a484518", + "build_short_uuid": "1757170", + "build_status": "FAILURE", + "build_uuid": "175717049b70422190c8c26d88a4e856", + "error_pr": -8.4487, + "filename": "console.html", + "host": "127.0.0.1:42361", + "log_url": "http://logs.openstack.org/23/127923/5/check/check-tempest-dsvm-postgres-full/1757170/console.html", + "message": "Looks like the node went offline during the build. Check the slave log for the details.FATAL: /var/lib/jenkins/logs/slaves/devstack-trusty-hpcloud-b1-34881/slave.log (No such file or directory)", + "project": "openstack/glance", + "received_at": "2014-11-24 22:42:48 UTC", + "tags": [ + "console.html", + "console" + ], + "type": "jenkins" + }, + "_type": "jenkins", + "sort": [ + 1416868870456 + ] + }, + { + "_id": "-grxzpGlRsGlfK1T1ceO7Q", + "_index": "logstash-2014.11.24", + "_score": null, + "_source": { + "@timestamp": "2014-11-24T22:40:58.747+00:00", + "@version": "1", + "build_branch": "master", + "build_change": "136811", + "build_master": "jenkins07.openstack.org", + "build_name": "gate-tempest-dsvm-neutron-large-ops", + "build_node": "devstack-trusty-hpcloud-b2-35386", + "build_patchset": "1", + "build_queue": "check", + "build_ref": "refs/zuul/master/Z10b70fce43c0412f879d1c1a36c9e910", + "build_short_uuid": "58b49c6", + "build_status": "FAILURE", + "build_uuid": "58b49c66c3af491084a69bd278ba2506", + "error_pr": -7.8726, + "filename": "console.html", + "host": "127.0.0.1:56890", + "log_url": "http://logs.openstack.org/11/136811/1/check/gate-tempest-dsvm-neutron-large-ops/58b49c6/console.html", + "message": "Looks like the node went offline during the build. Check the slave log for the details.FATAL: /var/lib/jenkins/logs/slaves/devstack-trusty-hpcloud-b2-35386/slave.log (No such file or directory)", + "project": "openstack-infra/devstack-gate", + "received_at": "2014-11-24 22:44:07 UTC", + "tags": [ + "console.html", + "console" + ], + "type": "jenkins" + }, + "_type": "jenkins", + "sort": [ + 1416868858747 + ] + }, + { + "_id": "-Z0LhDg3TLO4MwtIBAQH4A", + "_index": "logstash-2014.11.24", + "_score": null, + "_source": { + "@timestamp": "2014-11-24T22:40:51.128+00:00", + "@version": "1", + "build_branch": "master", + "build_change": "136799", + "build_master": "jenkins04.openstack.org", + "build_name": "gate-ceilometer-python33", + "build_node": "py3k-precise-rax-iad-35767", + "build_patchset": "1", + "build_queue": "gate", + "build_ref": "refs/zuul/master/Z58648a0df698415fa9aba671d3f61026", + "build_short_uuid": "ace114a", + "build_status": "FAILURE", + "build_uuid": "ace114a907474f3782f03c34c5aae01c", + "error_pr": -7.8539, + "filename": "console.html", + "host": "127.0.0.1:56886", + "log_url": "http://logs.openstack.org/99/136799/1/gate/gate-ceilometer-python33/ace114a/console.html", + "message": "Looks like the node went offline during the build. Check the slave log for the details.FATAL: /var/lib/jenkins/logs/slaves/py3k-precise-rax-iad-35767/slave.log (No such file or directory)", + "project": "openstack/ceilometer", + "received_at": "2014-11-24 22:42:45 UTC", + "tags": [ + "console.html", + "console" + ], + "type": "jenkins" + }, + "_type": "jenkins", + "sort": [ + 1416868851128 + ] + }, + { + "_id": "tPoqVDRtTLCzpEthe7U3pA", + "_index": "logstash-2014.11.24", + "_score": null, + "_source": { + "@timestamp": "2014-11-24T22:40:46.028+00:00", + "@version": "1", + "build_branch": "master", + "build_change": "136876", + "build_master": "jenkins06.openstack.org", + "build_name": "check-devstack-dsvm-cells", + "build_node": "devstack-trusty-hpcloud-b1-35359", + "build_patchset": "1", + "build_queue": "check", + "build_ref": "refs/zuul/master/Zf6e92450e7924dab94bbecaa66ac3872", + "build_short_uuid": "859890b", + "build_status": "FAILURE", + "build_uuid": "859890bff8f848aa908b137dd3f0b0c3", + "error_pr": -7.8612, + "filename": "console.html", + "host": "127.0.0.1:56890", + "log_url": "http://logs.openstack.org/76/136876/1/check/check-devstack-dsvm-cells/859890b/console.html", + "message": "Looks like the node went offline during the build. Check the slave log for the details.FATAL: /var/lib/jenkins/logs/slaves/devstack-trusty-hpcloud-b1-35359/slave.log (No such file or directory)", + "project": "openstack/horizon", + "received_at": "2014-11-24 22:44:06 UTC", + "tags": [ + "console.html", + "console" + ], + "type": "jenkins" + }, + "_type": "jenkins", + "sort": [ + 1416868846028 + ] + }, + { + "_id": "9pyObnFNRwWP3lbGUMsyGA", + "_index": "logstash-2014.11.24", + "_score": null, + "_source": { + "@timestamp": "2014-11-24T22:40:23.489+00:00", + "@version": "1", + "build_branch": "master", + "build_change": "136345", + "build_master": "jenkins03.openstack.org", + "build_name": "check-tempest-dsvm-full", + "build_node": "devstack-trusty-rax-ord-35149", + "build_patchset": "3", + "build_queue": "check", + "build_ref": "refs/zuul/master/Z10cb7d5fd8d449a59d073a5e88dca42d", + "build_short_uuid": "99f8fc4", + "build_status": "FAILURE", + "build_uuid": "99f8fc4033864c2fa082f08a61356b87", + "error_pr": -7.5302, + "filename": "console.html", + "host": "127.0.0.1:33368", + "log_url": "http://logs.openstack.org/45/136345/3/check/check-tempest-dsvm-full/99f8fc4/console.html", + "message": "Looks like the node went offline during the build. Check the slave log for the details.FATAL: /var/lib/jenkins/logs/slaves/devstack-trusty-rax-ord-35149/slave.log (No such file or directory)", + "project": "openstack/nova", + "received_at": "2014-11-24 22:47:12 UTC", + "tags": [ + "console.html", + "console" + ], + "type": "jenkins" + }, + "_type": "jenkins", + "sort": [ + 1416868823489 + ] + }, + { + "_id": "MpiVwXcQTuGIIHFAMwM74Q", + "_index": "logstash-2014.11.24", + "_score": null, + "_source": { + "@timestamp": "2014-11-24T22:40:23.194+00:00", + "@version": "1", + "build_branch": "master", + "build_change": "130437", + "build_master": "jenkins04.openstack.org", + "build_name": "gate-tempest-dsvm-src-oslo.messaging", + "build_node": "devstack-trusty-rax-iad-34980", + "build_patchset": "8", + "build_queue": "check", + "build_ref": "refs/zuul/master/Z6b6ab5f6b0b24ce9b87aee5f6fd8d73a", + "build_short_uuid": "83c73bc", + "build_status": "FAILURE", + "build_uuid": "83c73bc118a243259a1015189a176795", + "error_pr": -7.817, + "filename": "console.html", + "host": "127.0.0.1:56890", + "log_url": "http://logs.openstack.org/37/130437/8/check/gate-tempest-dsvm-src-oslo.messaging/83c73bc/console.html", + "message": "Looks like the node went offline during the build. Check the slave log for the details.FATAL: /var/lib/jenkins/logs/slaves/devstack-trusty-rax-iad-34980/slave.log (No such file or directory)", + "project": "openstack/oslo.messaging", + "received_at": "2014-11-24 22:43:40 UTC", + "tags": [ + "console.html", + "console" + ], + "type": "jenkins" + }, + "_type": "jenkins", + "sort": [ + 1416868823194 + ] + }, + { + "_id": "TKtNvzplRi65xAezaKRqaQ", + "_index": "logstash-2014.11.24", + "_score": null, + "_source": { + "@timestamp": "2014-11-24T22:39:58.803+00:00", + "@version": "1", + "build_branch": "master", + "build_change": "136895", + "build_master": "jenkins04.openstack.org", + "build_name": "check-tripleo-ironic-overcloud-precise-nonha", + "build_node": "tripleo-precise-tripleo-test-cloud-rh1-35293", + "build_patchset": "1", + "build_queue": "check-tripleo", + "build_ref": "refs/zuul/master/Z639ba396eab948ef8d2ca2aeff4b335e", + "build_short_uuid": "50568b1", + "build_status": "FAILURE", + "build_uuid": "50568b1dde2649f7af71e93d37ee3f1d", + "filename": "console.html", + "host": "127.0.0.1:56902", + "log_url": "http://logs.openstack.org/95/136895/1/check-tripleo/check-tripleo-ironic-overcloud-precise-nonha/50568b1/console.html", + "message": "Looks like the node went offline during the build. Check the slave log for the details.FATAL: /var/lib/jenkins/logs/slaves/tripleo-precise-tripleo-test-cloud-rh1-35293/slave.log (No such file or directory)", + "project": "openstack/tripleo-image-elements", + "received_at": "2014-11-24 22:51:34 UTC", + "tags": [ + "console.html", + "console" + ], + "type": "jenkins" + }, + "_type": "jenkins", + "sort": [ + 1416868798803 + ] + }, + { + "_id": "ah1E-8fgQ0yNUuxiXFIINg", + "_index": "logstash-2014.11.24", + "_score": null, + "_source": { + "@timestamp": "2014-11-24T22:39:52.975+00:00", + "@version": "1", + "build_branch": "master", + "build_change": "131490", + "build_master": "jenkins06.openstack.org", + "build_name": "gate-tempest-dsvm-large-ops", + "build_node": "devstack-trusty-hpcloud-b2-35390", + "build_patchset": "4", + "build_queue": "check", + "build_ref": "refs/zuul/master/Z07c857d520254f1b867114ac520314e0", + "build_short_uuid": "99bcb41", + "build_status": "FAILURE", + "build_uuid": "99bcb411e46445159e0934242ea85d5c", + "error_pr": -8.5514, + "filename": "console.html", + "host": "127.0.0.1:47877", + "log_url": "http://logs.openstack.org/90/131490/4/check/gate-tempest-dsvm-large-ops/99bcb41/console.html", + "message": "Looks like the node went offline during the build. Check the slave log for the details.FATAL: /var/lib/jenkins/logs/slaves/devstack-trusty-hpcloud-b2-35390/slave.log (No such file or directory)", + "project": "openstack/nova", + "received_at": "2014-11-24 22:42:32 UTC", + "tags": [ + "console.html", + "console" + ], + "type": "jenkins" + }, + "_type": "jenkins", + "sort": [ + 1416868792975 + ] + }, + { + "_id": "CvYA00tNQFKfKD9GCdbZVg", + "_index": "logstash-2014.11.24", + "_score": null, + "_source": { + "@timestamp": "2014-11-24T22:39:31.992+00:00", + "@version": "1", + "build_branch": "master", + "build_change": "136345", + "build_master": "jenkins07.openstack.org", + "build_name": "check-tempest-dsvm-neutron-full", + "build_node": "devstack-trusty-rax-iad-34973", + "build_patchset": "3", + "build_queue": "check", + "build_ref": "refs/zuul/master/Z10cb7d5fd8d449a59d073a5e88dca42d", + "build_short_uuid": "1919c14", + "build_status": "FAILURE", + "build_uuid": "1919c147cc0b4468aedf1584539e7440", + "error_pr": -7.481, + "filename": "console.html", + "host": "127.0.0.1:39143", + "log_url": "http://logs.openstack.org/45/136345/3/check/check-tempest-dsvm-neutron-full/1919c14/console.html", + "message": "Looks like the node went offline during the build. Check the slave log for the details.FATAL: /var/lib/jenkins/logs/slaves/devstack-trusty-rax-iad-34973/slave.log (No such file or directory)", + "project": "openstack/nova", + "received_at": "2014-11-24 22:40:28 UTC", + "tags": [ + "console.html", + "console" + ], + "type": "jenkins" + }, + "_type": "jenkins", + "sort": [ + 1416868771992 + ] + }, + { + "_id": "3pL7heskQeuyW1cN3cMWew", + "_index": "logstash-2014.11.24", + "_score": null, + "_source": { + "@timestamp": "2014-11-24T22:39:31.322+00:00", + "@version": "1", + "build_branch": "master", + "build_change": "114311", + "build_master": "jenkins01.openstack.org", + "build_name": "gate-manila-tempest-dsvm-neutron-multibackend", + "build_node": "devstack-trusty-hpcloud-b1-35008", + "build_patchset": "17", + "build_queue": "check", + "build_ref": "refs/zuul/master/Z7209219443ac4b49a5b06c5f33e6a744", + "build_short_uuid": "4d4b4ce", + "build_status": "FAILURE", + "build_uuid": "4d4b4ce4369d4a0b89d08e24fa7deaac", + "error_pr": -7.8295, + "filename": "console.html", + "host": "127.0.0.1:56890", + "log_url": "http://logs.openstack.org/11/114311/17/check/gate-manila-tempest-dsvm-neutron-multibackend/4d4b4ce/console.html", + "message": "Looks like the node went offline during the build. Check the slave log for the details.FATAL: /var/lib/jenkins/logs/slaves/devstack-trusty-hpcloud-b1-35008/slave.log (No such file or directory)", + "project": "openstack/manila", + "received_at": "2014-11-24 22:43:00 UTC", + "tags": [ + "console.html", + "console" + ], + "type": "jenkins" + }, + "_type": "jenkins", + "sort": [ + 1416868771322 + ] + }, + { + "_id": "mPT4LcDVQ3yS1S4FkPZZqw", + "_index": "logstash-2014.11.24", + "_score": null, + "_source": { + "@timestamp": "2014-11-24T22:39:28.589+00:00", + "@version": "1", + "build_branch": "master", + "build_change": "136803", + "build_master": "jenkins06.openstack.org", + "build_name": "check-tempest-dsvm-neutron-full", + "build_node": "devstack-trusty-rax-iad-35270", + "build_patchset": "1", + "build_queue": "check", + "build_ref": "refs/zuul/master/Z03a6ae11bac64275bec551c054ea59da", + "build_short_uuid": "0b70597", + "build_status": "FAILURE", + "build_uuid": "0b705972787e41e28b467215f2bbce53", + "error_pr": -7.847, + "filename": "console.html", + "host": "127.0.0.1:56886", + "log_url": "http://logs.openstack.org/03/136803/1/check/check-tempest-dsvm-neutron-full/0b70597/console.html", + "message": "Looks like the node went offline during the build. Check the slave log for the details.FATAL: /var/lib/jenkins/logs/slaves/devstack-trusty-rax-iad-35270/slave.log (No such file or directory)", + "project": "openstack-dev/devstack", + "received_at": "2014-11-24 22:42:28 UTC", + "tags": [ + "console.html", + "console" + ], + "type": "jenkins" + }, + "_type": "jenkins", + "sort": [ + 1416868768589 + ] + }, + { + "_id": "u9Fyn-yHScSKIgF6IYcmQg", + "_index": "logstash-2014.11.24", + "_score": null, + "_source": { + "@timestamp": "2014-11-24T22:39:19.456+00:00", + "@version": "1", + "build_branch": "master", + "build_change": "136800", + "build_master": "jenkins06.openstack.org", + "build_name": "gate-tempest-dsvm-neutron-src-python-ceilometerclient-juno", + "build_node": "devstack-trusty-hpcloud-b1-34204", + "build_patchset": "1", + "build_queue": "check", + "build_ref": "refs/zuul/master/Z54ef8d8728694b839b3ac81fdb65f0fc", + "build_short_uuid": "552ae9c", + "build_status": "FAILURE", + "build_uuid": "552ae9cddbe9472a9e4e3c049ea32a61", + "error_pr": -7.8369, + "filename": "console.html", + "host": "127.0.0.1:56893", + "log_url": "http://logs.openstack.org/00/136800/1/check/gate-tempest-dsvm-neutron-src-python-ceilometerclient-juno/552ae9c/console.html", + "message": "Looks like the node went offline during the build. Check the slave log for the details.FATAL: /var/lib/jenkins/logs/slaves/devstack-trusty-hpcloud-b1-34204/slave.log (No such file or directory)", + "project": "openstack/python-ceilometerclient", + "received_at": "2014-11-24 22:52:12 UTC", + "tags": [ + "console.html", + "console" + ], + "type": "jenkins" + }, + "_type": "jenkins", + "sort": [ + 1416868759456 + ] + }, + { + "_id": "Tl9mgzlWQBG6111SAuGrFg", + "_index": "logstash-2014.11.24", + "_score": null, + "_source": { + "@timestamp": "2014-11-24T22:39:17.531+00:00", + "@version": "1", + "build_branch": "master", + "build_change": "136811", + "build_master": "jenkins07.openstack.org", + "build_name": "gate-tempest-dsvm-large-ops", + "build_node": "devstack-trusty-hpcloud-b2-35388", + "build_patchset": "1", + "build_queue": "check", + "build_ref": "refs/zuul/master/Z10b70fce43c0412f879d1c1a36c9e910", + "build_short_uuid": "e570fec", + "build_status": "FAILURE", + "build_uuid": "e570fece4e414d5a85a52b7ce59c1ba9", + "error_pr": -7.8356, + "filename": "console.html", + "host": "127.0.0.1:56886", + "log_url": "http://logs.openstack.org/11/136811/1/check/gate-tempest-dsvm-large-ops/e570fec/console.html", + "message": "Looks like the node went offline during the build. Check the slave log for the details.FATAL: /var/lib/jenkins/logs/slaves/devstack-trusty-hpcloud-b2-35388/slave.log (No such file or directory)", + "project": "openstack-infra/devstack-gate", + "received_at": "2014-11-24 22:42:14 UTC", + "tags": [ + "console.html", + "console" + ], + "type": "jenkins" + }, + "_type": "jenkins", + "sort": [ + 1416868757531 + ] + }, + { + "_id": "Li-hK0MtRTKD7hiwOFQ8mQ", + "_index": "logstash-2014.11.24", + "_score": null, + "_source": { + "@timestamp": "2014-11-24T22:39:15.202+00:00", + "@version": "1", + "build_branch": "master", + "build_change": "136266", + "build_master": "jenkins06.openstack.org", + "build_name": "gate-tempest-dsvm-large-ops", + "build_node": "devstack-trusty-rax-ord-35534", + "build_patchset": "4", + "build_queue": "check", + "build_ref": "refs/zuul/master/Z64c7dc2f6d4c42bdaf70a701e16547ff", + "build_short_uuid": "3587412", + "build_status": "FAILURE", + "build_uuid": "358741252ab54711a0da830eb5d3fe03", + "error_pr": -7.8338, + "filename": "console.html", + "host": "127.0.0.1:56893", + "log_url": "http://logs.openstack.org/66/136266/4/check/gate-tempest-dsvm-large-ops/3587412/console.html", + "message": "Looks like the node went offline during the build. Check the slave log for the details.FATAL: /var/lib/jenkins/logs/slaves/devstack-trusty-rax-ord-35534/slave.log (No such file or directory)", + "project": "openstack/nova", + "received_at": "2014-11-24 22:51:53 UTC", + "tags": [ + "console.html", + "console" + ], + "type": "jenkins" + }, + "_type": "jenkins", + "sort": [ + 1416868755202 + ] + }, + { + "_id": "1Y8tTAWqRlG_5e3UyqA4lA", + "_index": "logstash-2014.11.24", + "_score": null, + "_source": { + "@timestamp": "2014-11-24T22:39:12.322+00:00", + "@version": "1", + "build_branch": "master", + "build_change": "136035", + "build_master": "jenkins03.openstack.org", + "build_name": "gate-tempest-dsvm-neutron-pg-2", + "build_node": "devstack-trusty-rax-dfw-34956", + "build_patchset": "4", + "build_queue": "gate", + "build_ref": "refs/zuul/master/Zdac7f6a6b5ed4a768dd2c2fc362e9eb7", + "build_short_uuid": "a12aa50", + "build_status": "FAILURE", + "build_uuid": "a12aa50da0d84bc889278916a32df75f", + "filename": "console.html", + "host": "127.0.0.1:56902", + "log_url": "http://logs.openstack.org/35/136035/4/gate/gate-tempest-dsvm-neutron-pg-2/a12aa50/console.html", + "message": "Looks like the node went offline during the build. Check the slave log for the details.FATAL: /var/lib/jenkins/logs/slaves/devstack-trusty-rax-dfw-34956/slave.log (No such file or directory)", + "project": "openstack/neutron", + "received_at": "2014-11-24 22:44:41 UTC", + "tags": [ + "console.html", + "console" + ], + "type": "jenkins" + }, + "_type": "jenkins", + "sort": [ + 1416868752322 + ] + }, + { + "_id": "pvqFtd6ATj-AP331ftxH3w", + "_index": "logstash-2014.11.24", + "_score": null, + "_source": { + "@timestamp": "2014-11-24T22:39:08.167+00:00", + "@version": "1", + "build_branch": "master", + "build_change": "136597", + "build_master": "jenkins02.openstack.org", + "build_name": "gate-infra-puppet-apply-centos6", + "build_node": "bare-centos6-rax-dfw-35738", + "build_patchset": "10", + "build_queue": "check", + "build_ref": "refs/zuul/master/Zcc0a3cb00e1e467ca0e1709779e28c98", + "build_short_uuid": "78ce34f", + "build_status": "FAILURE", + "build_uuid": "78ce34fe49364f148ed10b4b6eacd917", + "error_pr": -7.8447, + "filename": "console.html", + "host": "127.0.0.1:56890", + "log_url": "http://logs.openstack.org/97/136597/10/check/gate-infra-puppet-apply-centos6/78ce34f/console.html", + "message": "Looks like the node went offline during the build. Check the slave log for the details.FATAL: /var/lib/jenkins/logs/slaves/bare-centos6-rax-dfw-35738/slave.log (No such file or directory)", + "project": "openstack-infra/system-config", + "received_at": "2014-11-24 22:42:33 UTC", + "tags": [ + "console.html", + "console" + ], + "type": "jenkins" + }, + "_type": "jenkins", + "sort": [ + 1416868748167 + ] + }, + { + "_id": "RJn5y_aVSAeAN1MmgErPyg", + "_index": "logstash-2014.11.24", + "_score": null, + "_source": { + "@timestamp": "2014-11-24T22:38:56.199+00:00", + "@version": "1", + "build_branch": "master", + "build_change": "131490", + "build_master": "jenkins02.openstack.org", + "build_name": "gate-tempest-dsvm-neutron-large-ops", + "build_node": "devstack-trusty-hpcloud-b2-35408", + "build_patchset": "4", + "build_queue": "check", + "build_ref": "refs/zuul/master/Z07c857d520254f1b867114ac520314e0", + "build_short_uuid": "7dccb18", + "build_status": "FAILURE", + "build_uuid": "7dccb1814a5347f0bec5476d351c2f2a", + "error_pr": -7.8685, + "filename": "console.html", + "host": "127.0.0.1:47639", + "log_url": "http://logs.openstack.org/90/131490/4/check/gate-tempest-dsvm-neutron-large-ops/7dccb18/console.html", + "message": "Looks like the node went offline during the build. Check the slave log for the details.FATAL: /var/lib/jenkins/logs/slaves/devstack-trusty-hpcloud-b2-35408/slave.log (No such file or directory)", + "project": "openstack/nova", + "received_at": "2014-11-24 22:42:27 UTC", + "tags": [ + "console.html", + "console" + ], + "type": "jenkins" + }, + "_type": "jenkins", + "sort": [ + 1416868736199 + ] + }, + { + "_id": "HcjLFGhPRd2ZghtyHOAL4g", + "_index": "logstash-2014.11.24", + "_score": null, + "_source": { + "@timestamp": "2014-11-24T22:38:49.743+00:00", + "@version": "1", + "build_branch": "master", + "build_change": "136286", + "build_master": "jenkins07.openstack.org", + "build_name": "gate-rally-dsvm-rally", + "build_node": "devstack-trusty-hpcloud-b5-34915", + "build_patchset": "7", + "build_queue": "check", + "build_ref": "refs/zuul/master/Zb0962e18f3a640738da5f02dfdf23339", + "build_short_uuid": "14a5144", + "build_status": "FAILURE", + "build_uuid": "14a514452bb74089949cb4acb2494b10", + "filename": "console.html", + "host": "127.0.0.1:56902", + "log_url": "http://logs.openstack.org/86/136286/7/check/gate-rally-dsvm-rally/14a5144/console.html", + "message": "Looks like the node went offline during the build. Check the slave log for the details.FATAL: /var/lib/jenkins/logs/slaves/devstack-trusty-hpcloud-b5-34915/slave.log (No such file or directory)", + "project": "stackforge/rally", + "received_at": "2014-11-24 22:45:56 UTC", + "tags": [ + "console.html", + "console" + ], + "type": "jenkins" + }, + "_type": "jenkins", + "sort": [ + 1416868729743 + ] + }, + { + "_id": "vBZJEtPIQZGRgbxfoqDm8Q", + "_index": "logstash-2014.11.24", + "_score": null, + "_source": { + "@timestamp": "2014-11-24T22:38:46.429+00:00", + "@version": "1", + "build_branch": "feature/lbaasv2", + "build_change": "123485", + "build_master": "jenkins06.openstack.org", + "build_name": "gate-tempest-dsvm-neutron-pg-full", + "build_node": "devstack-trusty-rax-ord-34927", + "build_patchset": "9", + "build_queue": "gate", + "build_ref": "refs/zuul/feature/lbaasv2/Z55be94d20e11430dbb43a07f4822494f", + "build_short_uuid": "57438ed", + "build_status": "FAILURE", + "build_uuid": "57438eda08764ff8a6262dba7e3ea050", + "error_pr": -7.3006, + "filename": "console.html", + "host": "127.0.0.1:42430", + "log_url": "http://logs.openstack.org/85/123485/9/gate/gate-tempest-dsvm-neutron-pg-full/57438ed/console.html", + "message": "Looks like the node went offline during the build. Check the slave log for the details.FATAL: /var/lib/jenkins/logs/slaves/devstack-trusty-rax-ord-34927/slave.log (No such file or directory)", + "project": "openstack/neutron", + "received_at": "2014-11-24 22:44:39 UTC", + "tags": [ + "console.html", + "console" + ], + "type": "jenkins" + }, + "_type": "jenkins", + "sort": [ + 1416868726429 + ] + }, + { + "_id": "rIs6I6qcSh6Y9RLYPaSAxA", + "_index": "logstash-2014.11.24", + "_score": null, + "_source": { + "@timestamp": "2014-11-24T22:38:30.998+00:00", + "@version": "1", + "build_branch": "stable/juno", + "build_change": "136544", + "build_master": "jenkins02.openstack.org", + "build_name": "check-tempest-dsvm-neutron-full", + "build_node": "devstack-trusty-hpcloud-b5-34434", + "build_patchset": "2", + "build_queue": "check", + "build_ref": "refs/zuul/stable/juno/Z733e455c48144a38bf3007e7ab348c5a", + "build_short_uuid": "db48700", + "build_status": "FAILURE", + "build_uuid": "db487003651a41f1a6aae214560ba9c7", + "error_pr": -7.57, + "filename": "console.html", + "host": "127.0.0.1:42420", + "log_url": "http://logs.openstack.org/44/136544/2/check/check-tempest-dsvm-neutron-full/db48700/console.html", + "message": "Looks like the node went offline during the build. Check the slave log for the details.FATAL: /var/lib/jenkins/logs/slaves/devstack-trusty-hpcloud-b5-34434/slave.log (No such file or directory)", + "project": "openstack/nova", + "received_at": "2014-11-24 22:46:51 UTC", + "tags": [ + "console.html", + "console" + ], + "type": "jenkins" + }, + "_type": "jenkins", + "sort": [ + 1416868710998 + ] + }, + { + "_id": "FQCNvY4jThSd-ObetDbvog", + "_index": "logstash-2014.11.24", + "_score": null, + "_source": { + "@timestamp": "2014-11-24T22:38:27.912+00:00", + "@version": "1", + "build_branch": "master", + "build_change": "136811", + "build_master": "jenkins02.openstack.org", + "build_name": "check-tempest-dsvm-neutron-heat-slow", + "build_node": "devstack-trusty-hpcloud-b2-35405", + "build_patchset": "1", + "build_queue": "check", + "build_ref": "refs/zuul/master/Z10b70fce43c0412f879d1c1a36c9e910", + "build_short_uuid": "47ac957", + "build_status": "FAILURE", + "build_uuid": "47ac957c6007442599abea8615c91283", + "error_pr": -7.7149, + "filename": "console.html", + "host": "127.0.0.1:56890", + "log_url": "http://logs.openstack.org/11/136811/1/check/check-tempest-dsvm-neutron-heat-slow/47ac957/console.html", + "message": "Looks like the node went offline during the build. Check the slave log for the details.FATAL: /var/lib/jenkins/logs/slaves/devstack-trusty-hpcloud-b2-35405/slave.log (No such file or directory)", + "project": "openstack-infra/devstack-gate", + "received_at": "2014-11-24 22:42:31 UTC", + "tags": [ + "console.html", + "console" + ], + "type": "jenkins" + }, + "_type": "jenkins", + "sort": [ + 1416868707912 + ] + }, + { + "_id": "ekDe-_kCSDW4M_R6eEYn5A", + "_index": "logstash-2014.11.24", + "_score": null, + "_source": { + "@timestamp": "2014-11-24T22:38:26.759+00:00", + "@version": "1", + "build_branch": "master", + "build_change": "127923", + "build_master": "jenkins05.openstack.org", + "build_name": "check-tempest-dsvm-full", + "build_node": "devstack-trusty-hpcloud-b1-34999", + "build_patchset": "5", + "build_queue": "check", + "build_ref": "refs/zuul/master/Zb4e719aa4bd54f718c6fd5d66a484518", + "build_short_uuid": "b84f798", + "build_status": "FAILURE", + "build_uuid": "b84f7981b65d49d7bf8539ada66413ca", + "filename": "console.html", + "host": "127.0.0.1:56886", + "log_url": "http://logs.openstack.org/23/127923/5/check/check-tempest-dsvm-full/b84f798/console.html", + "message": "Looks like the node went offline during the build. Check the slave log for the details.FATAL: /var/lib/jenkins/logs/slaves/devstack-trusty-hpcloud-b1-34999/slave.log (No such file or directory)", + "project": "openstack/glance", + "received_at": "2014-11-24 22:42:08 UTC", + "tags": [ + "console.html", + "console" + ], + "type": "jenkins" + }, + "_type": "jenkins", + "sort": [ + 1416868706759 + ] + }, + { + "_id": "CLG1pgGITL-nk-IXJXbvcQ", + "_index": "logstash-2014.11.24", + "_score": null, + "_source": { + "@timestamp": "2014-11-24T22:37:18.944+00:00", + "@version": "1", + "build_branch": "master", + "build_change": "136688", + "build_master": "jenkins01.openstack.org", + "build_name": "gate-tempest-dsvm-full", + "build_node": "devstack-trusty-rax-ord-35153", + "build_patchset": "1", + "build_queue": "gate", + "build_ref": "refs/zuul/master/Ze5c3dd5ecdb44d1482ae5d27092e952f", + "build_short_uuid": "ed55280", + "build_status": "FAILURE", + "build_uuid": "ed552803d161454fb144126dfc0a52ef", + "filename": "console.html", + "host": "127.0.0.1:56890", + "log_url": "http://logs.openstack.org/88/136688/1/gate/gate-tempest-dsvm-full/ed55280/console.html", + "message": "Looks like the node went offline during the build. Check the slave log for the details.FATAL: /var/lib/jenkins/logs/slaves/devstack-trusty-rax-ord-35153/slave.log (No such file or directory)", + "project": "openstack/cinder", + "received_at": "2014-11-24 22:42:30 UTC", + "tags": [ + "console.html", + "console" + ], + "type": "jenkins" + }, + "_type": "jenkins", + "sort": [ + 1416868638944 + ] + }, + { + "_id": "NCYrFwwUQ7OflFGOjyUoeg", + "_index": "logstash-2014.11.24", + "_score": null, + "_source": { + "@timestamp": "2014-11-24T22:37:17.591+00:00", + "@version": "1", + "build_branch": "master", + "build_change": "131490", + "build_master": "jenkins05.openstack.org", + "build_name": "check-tempest-dsvm-neutron-heat-slow", + "build_node": "devstack-trusty-hpcloud-b2-35395", + "build_patchset": "4", + "build_queue": "check", + "build_ref": "refs/zuul/master/Z07c857d520254f1b867114ac520314e0", + "build_short_uuid": "ede1afd", + "build_status": "FAILURE", + "build_uuid": "ede1afdffcf5451e901460c2889721a5", + "error_pr": -7.8377, + "filename": "console.html", + "host": "127.0.0.1:56890", + "log_url": "http://logs.openstack.org/90/131490/4/check/check-tempest-dsvm-neutron-heat-slow/ede1afd/console.html", + "message": "Looks like the node went offline during the build. Check the slave log for the details.FATAL: /var/lib/jenkins/logs/slaves/devstack-trusty-hpcloud-b2-35395/slave.log (No such file or directory)", + "project": "openstack/nova", + "received_at": "2014-11-24 22:42:14 UTC", + "tags": [ + "console.html", + "console" + ], + "type": "jenkins" + }, + "_type": "jenkins", + "sort": [ + 1416868637591 + ] + }, + { + "_id": "9mxL0iAvSia7hLtDAY6j8A", + "_index": "logstash-2014.11.24", + "_score": null, + "_source": { + "@timestamp": "2014-11-24T22:37:14.076+00:00", + "@version": "1", + "build_branch": "master", + "build_change": "134388", + "build_master": "jenkins06.openstack.org", + "build_name": "gate-tempest-dsvm-neutron-full", + "build_node": "devstack-trusty-rax-dfw-34942", + "build_patchset": "3", + "build_queue": "gate", + "build_ref": "refs/zuul/master/Za8e39c120afc491db7e7ce4ea54f70b7", + "build_short_uuid": "e11dc33", + "build_status": "FAILURE", + "build_uuid": "e11dc331a4b447cb837ae6d52eea0130", + "error_pr": -7.795, + "filename": "console.html", + "host": "127.0.0.1:56893", + "log_url": "http://logs.openstack.org/88/134388/3/gate/gate-tempest-dsvm-neutron-full/e11dc33/console.html", + "message": "Looks like the node went offline during the build. Check the slave log for the details.FATAL: /var/lib/jenkins/logs/slaves/devstack-trusty-rax-dfw-34942/slave.log (No such file or directory)", + "project": "openstack/keystone", + "received_at": "2014-11-24 22:50:28 UTC", + "tags": [ + "console.html", + "console" + ], + "type": "jenkins" + }, + "_type": "jenkins", + "sort": [ + 1416868634076 + ] + }, + { + "_id": "Q9h5jWo-S3Ch129vDPfjFw", + "_index": "logstash-2014.11.24", + "_score": null, + "_source": { + "@timestamp": "2014-11-24T22:37:03.422+00:00", + "@version": "1", + "build_branch": "master", + "build_change": "136803", + "build_master": "jenkins07.openstack.org", + "build_name": "check-tempest-dsvm-centos7", + "build_node": "devstack-centos7-rax-iad-34063", + "build_patchset": "1", + "build_queue": "check", + "build_ref": "refs/zuul/master/Z03a6ae11bac64275bec551c054ea59da", + "build_short_uuid": "585782e", + "build_status": "FAILURE", + "build_uuid": "585782e953394fe19b9a19d3d5fce044", + "error_pr": -7.4587, + "filename": "console.html", + "host": "127.0.0.1:42430", + "log_url": "http://logs.openstack.org/03/136803/1/check/check-tempest-dsvm-centos7/585782e/console.html", + "message": "Looks like the node went offline during the build. Check the slave log for the details.FATAL: /var/lib/jenkins/logs/slaves/devstack-centos7-rax-iad-34063/slave.log (No such file or directory)", + "project": "openstack-dev/devstack", + "received_at": "2014-11-24 22:43:22 UTC", + "tags": [ + "console.html", + "console" + ], + "type": "jenkins" + }, + "_type": "jenkins", + "sort": [ + 1416868623422 + ] + }, + { + "_id": "ZK1Bh_zWTRWY9YFo8LZElQ", + "_index": "logstash-2014.11.24", + "_score": null, + "_source": { + "@timestamp": "2014-11-24T22:36:34.747+00:00", + "@version": "1", + "build_branch": "master", + "build_change": "136346", + "build_master": "jenkins02.openstack.org", + "build_name": "check-tempest-dsvm-neutron-full", + "build_node": "devstack-trusty-rax-dfw-34965", + "build_patchset": "3", + "build_queue": "check", + "build_ref": "refs/zuul/master/Z3f7a701e2a5d4178ac3e9dea3189e781", + "build_short_uuid": "e0c9d6d", + "build_status": "FAILURE", + "build_uuid": "e0c9d6d505354b6cb36157e88a83012c", + "filename": "console.html", + "host": "127.0.0.1:41038", + "log_url": "http://logs.openstack.org/46/136346/3/check/check-tempest-dsvm-neutron-full/e0c9d6d/console.html", + "message": "Looks like the node went offline during the build. Check the slave log for the details.FATAL: /var/lib/jenkins/logs/slaves/devstack-trusty-rax-dfw-34965/slave.log (No such file or directory)", + "project": "openstack/nova", + "received_at": "2014-11-24 22:41:09 UTC", + "tags": [ + "console.html", + "console" + ], + "type": "jenkins" + }, + "_type": "jenkins", + "sort": [ + 1416868594747 + ] + }, + { + "_id": "SfbaRVsBTiW9da4KPrpcpw", + "_index": "logstash-2014.11.24", + "_score": null, + "_source": { + "@timestamp": "2014-11-24T22:36:27.477+00:00", + "@version": "1", + "build_branch": "master", + "build_change": "113467", + "build_master": "jenkins01.openstack.org", + "build_name": "check-tempest-dsvm-neutron-pg-full-2", + "build_node": "devstack-trusty-rax-dfw-35237", + "build_patchset": "5", + "build_queue": "check", + "build_ref": "refs/zuul/master/Z9e458faa25df4a7d983797e14a1ad2c4", + "build_short_uuid": "ed8ee6a", + "build_status": "FAILURE", + "build_uuid": "ed8ee6aa1cfa436b9f06c02ab8ceba58", + "filename": "console.html", + "host": "127.0.0.1:42352", + "log_url": "http://logs.openstack.org/67/113467/5/check/check-tempest-dsvm-neutron-pg-full-2/ed8ee6a/console.html", + "message": "Looks like the node went offline during the build. Check the slave log for the details.FATAL: /var/lib/jenkins/logs/slaves/devstack-trusty-rax-dfw-35237/slave.log (No such file or directory)", + "project": "openstack/neutron", + "received_at": "2014-11-24 22:38:24 UTC", + "tags": [ + "console.html", + "console" + ], + "type": "jenkins" + }, + "_type": "jenkins", + "sort": [ + 1416868587477 + ] + }, + { + "_id": "CrrgcGJ6Q8KFlTAfZXwi2w", + "_index": "logstash-2014.11.24", + "_score": null, + "_source": { + "@timestamp": "2014-11-24T22:36:24.551+00:00", + "@version": "1", + "build_branch": "master", + "build_change": "136803", + "build_master": "jenkins02.openstack.org", + "build_name": "check-tempest-dsvm-full", + "build_node": "devstack-trusty-rax-iad-34985", + "build_patchset": "1", + "build_queue": "check", + "build_ref": "refs/zuul/master/Z03a6ae11bac64275bec551c054ea59da", + "build_short_uuid": "840505c", + "build_status": "FAILURE", + "build_uuid": "840505c071a74f48b03ef757930e49e9", + "error_pr": -7.4012, + "filename": "console.html", + "host": "127.0.0.1:39174", + "log_url": "http://logs.openstack.org/03/136803/1/check/check-tempest-dsvm-full/840505c/console.html", + "message": "Looks like the node went offline during the build. Check the slave log for the details.FATAL: /var/lib/jenkins/logs/slaves/devstack-trusty-rax-iad-34985/slave.log (No such file or directory)", + "project": "openstack-dev/devstack", + "received_at": "2014-11-24 22:37:22 UTC", + "tags": [ + "console.html", + "console" + ], + "type": "jenkins" + }, + "_type": "jenkins", + "sort": [ + 1416868584551 + ] + }, + { + "_id": "qijwh79CRre3bqBiyn1_EA", + "_index": "logstash-2014.11.24", + "_score": null, + "_source": { + "@timestamp": "2014-11-24T20:27:29.583+00:00", + "@version": "1", + "build_branch": "stable/icehouse", + "build_change": "136798", + "build_master": "jenkins02.openstack.org", + "build_name": "gate-tempest-dsvm-neutron", + "build_node": "devstack-precise-hpcloud-b1-32769", + "build_patchset": "1", + "build_queue": "gate", + "build_ref": "refs/zuul/stable/icehouse/Z4269010c2f514debbefaf0f459724ea5", + "build_short_uuid": "0884613", + "build_status": "FAILURE", + "build_uuid": "08846137d05249bb897cf00f60596dc2", + "error_pr": -7.7299, + "filename": "console.html", + "host": "127.0.0.1:56890", + "log_url": "http://logs.openstack.org/98/136798/1/gate/gate-tempest-dsvm-neutron/0884613/console.html", + "message": "Looks like the node went offline during the build. Check the slave log for the details.FATAL: /var/lib/jenkins/logs/slaves/devstack-precise-hpcloud-b1-32769/slave.log (No such file or directory)", + "project": "openstack/cinder", + "received_at": "2014-11-24 20:28:12 UTC", + "tags": [ + "console.html", + "console" + ], + "type": "jenkins" + }, + "_type": "jenkins", + "sort": [ + 1416860849583 + ] + }, + { + "_id": "Uninr3jGTSuq9vMAQyHF-A", + "_index": "logstash-2014.11.24", + "_score": null, + "_source": { + "@timestamp": "2014-11-24T20:27:23.032+00:00", + "@version": "1", + "build_branch": "master", + "build_change": "136792", + "build_master": "jenkins07.openstack.org", + "build_name": "check-tempest-dsvm-neutron-juno", + "build_node": "devstack-trusty-hpcloud-b2-32831", + "build_patchset": "2", + "build_queue": "check", + "build_ref": "refs/zuul/master/Zaac62205853b4dbda8de8ff955e40ef5", + "build_short_uuid": "9625c78", + "build_status": "FAILURE", + "build_uuid": "9625c7842a57425bbff01424596e6b7f", + "error_pr": -7.5292, + "filename": "console.html", + "host": "127.0.0.1:33368", + "log_url": "http://logs.openstack.org/92/136792/2/check/check-tempest-dsvm-neutron-juno/9625c78/console.html", + "message": "Looks like the node went offline during the build. Check the slave log for the details.FATAL: /var/lib/jenkins/logs/slaves/devstack-trusty-hpcloud-b2-32831/slave.log (No such file or directory)", + "project": "openstack/tempest", + "received_at": "2014-11-24 20:27:54 UTC", + "tags": [ + "console.html", + "console" + ], + "type": "jenkins" + }, + "_type": "jenkins", + "sort": [ + 1416860843032 + ] + }, + { + "_id": "imi8Z6umRH2aSt6quCrFDg", + "_index": "logstash-2014.11.24", + "_score": null, + "_source": { + "@timestamp": "2014-11-24T20:26:52.836+00:00", + "@version": "1", + "build_branch": "master", + "build_change": "136792", + "build_master": "jenkins07.openstack.org", + "build_name": "check-tempest-dsvm-neutron-full-juno", + "build_node": "devstack-trusty-hpcloud-b2-32830", + "build_patchset": "2", + "build_queue": "check", + "build_ref": "refs/zuul/master/Zaac62205853b4dbda8de8ff955e40ef5", + "build_short_uuid": "0d5a226", + "build_status": "FAILURE", + "build_uuid": "0d5a226c709f4531b383d80f50397c08", + "error_pr": -7.8168, + "filename": "console.html", + "host": "127.0.0.1:56890", + "log_url": "http://logs.openstack.org/92/136792/2/check/check-tempest-dsvm-neutron-full-juno/0d5a226/console.html", + "message": "Looks like the node went offline during the build. Check the slave log for the details.FATAL: /var/lib/jenkins/logs/slaves/devstack-trusty-hpcloud-b2-32830/slave.log (No such file or directory)", + "project": "openstack/tempest", + "received_at": "2014-11-24 20:27:57 UTC", + "tags": [ + "console.html", + "console" + ], + "type": "jenkins" + }, + "_type": "jenkins", + "sort": [ + 1416860812836 + ] + }, + { + "_id": "6kxgISBfR5KMFIVuwWKmxA", + "_index": "logstash-2014.11.24", + "_score": null, + "_source": { + "@timestamp": "2014-11-24T20:24:38.722+00:00", + "@version": "1", + "build_branch": "master", + "build_change": "136792", + "build_master": "jenkins07.openstack.org", + "build_name": "check-tempest-dsvm-neutron-full", + "build_node": "devstack-trusty-hpcloud-b2-33643", + "build_patchset": "2", + "build_queue": "check", + "build_ref": "refs/zuul/master/Zaac62205853b4dbda8de8ff955e40ef5", + "build_short_uuid": "e30933f", + "build_status": "FAILURE", + "build_uuid": "e30933ff56834980b00a00a4ec0978c7", + "error_pr": -7.7827, + "filename": "console.html", + "host": "127.0.0.1:46088", + "log_url": "http://logs.openstack.org/92/136792/2/check/check-tempest-dsvm-neutron-full/e30933f/console.html", + "message": "Looks like the node went offline during the build. Check the slave log for the details.FATAL: /var/lib/jenkins/logs/slaves/devstack-trusty-hpcloud-b2-33643/slave.log (No such file or directory)", + "project": "openstack/tempest", + "received_at": "2014-11-24 20:26:38 UTC", + "tags": [ + "console.html", + "console" + ], + "type": "jenkins" + }, + "_type": "jenkins", + "sort": [ + 1416860678722 + ] + }, + { + "_id": "LbQKv6pwT-qXb4AhCGloYw", + "_index": "logstash-2014.11.24", + "_score": null, + "_source": { + "@timestamp": "2014-11-24T20:22:27.434+00:00", + "@version": "1", + "build_branch": "master", + "build_change": "128258", + "build_master": "jenkins04.openstack.org", + "build_name": "check-tempest-dsvm-neutron-pg-full-2", + "build_node": "devstack-trusty-rax-dfw-33146", + "build_patchset": "6", + "build_queue": "check", + "build_ref": "refs/zuul/master/Zf1e55b373baa4a94ba598776f7900e02", + "build_short_uuid": "db3d37c", + "build_status": "FAILURE", + "build_uuid": "db3d37c1538e4fdc9edeab09f66bb4a4", + "error_pr": -7.8318, + "filename": "console.html", + "host": "127.0.0.1:56890", + "log_url": "http://logs.openstack.org/58/128258/6/check/check-tempest-dsvm-neutron-pg-full-2/db3d37c/console.html", + "message": "Looks like the node went offline during the build. Check the slave log for the details.FATAL: /var/lib/jenkins/logs/slaves/devstack-trusty-rax-dfw-33146/slave.log (No such file or directory)", + "project": "openstack/neutron", + "received_at": "2014-11-24 20:22:57 UTC", + "tags": [ + "console.html", + "console" + ], + "type": "jenkins" + }, + "_type": "jenkins", + "sort": [ + 1416860547434 + ] + }, + { + "_id": "V1EZO25qS1-2D6EVJxhvOQ", + "_index": "logstash-2014.11.24", + "_score": null, + "_source": { + "@timestamp": "2014-11-24T20:19:56.801+00:00", + "@version": "1", + "build_branch": "master", + "build_change": "128258", + "build_master": "jenkins04.openstack.org", + "build_name": "check-tempest-dsvm-neutron-pg-2", + "build_node": "devstack-trusty-rax-iad-33646", + "build_patchset": "6", + "build_queue": "check", + "build_ref": "refs/zuul/master/Zf1e55b373baa4a94ba598776f7900e02", + "build_short_uuid": "e408269", + "build_status": "FAILURE", + "build_uuid": "e408269c84124169a3f0b9423a292961", + "error_pr": -7.8327, + "filename": "console.html", + "host": "127.0.0.1:56890", + "log_url": "http://logs.openstack.org/58/128258/6/check/check-tempest-dsvm-neutron-pg-2/e408269/console.html", + "message": "Looks like the node went offline during the build. Check the slave log for the details.FATAL: /var/lib/jenkins/logs/slaves/devstack-trusty-rax-iad-33646/slave.log (No such file or directory)", + "project": "openstack/neutron", + "received_at": "2014-11-24 20:20:34 UTC", + "tags": [ + "console.html", + "console" + ], + "type": "jenkins" + }, + "_type": "jenkins", + "sort": [ + 1416860396801 + ] + }, + { + "_id": "1qDhwaqfScKZY1p1B9cHAg", + "_index": "logstash-2014.11.24", + "_score": null, + "_source": { + "@timestamp": "2014-11-24T20:18:40.437+00:00", + "@version": "1", + "build_branch": "master", + "build_change": "136792", + "build_master": "jenkins03.openstack.org", + "build_name": "check-tempest-dsvm-full-juno", + "build_node": "devstack-trusty-hpcloud-b2-32836", + "build_patchset": "2", + "build_queue": "check", + "build_ref": "refs/zuul/master/Zaac62205853b4dbda8de8ff955e40ef5", + "build_short_uuid": "21d8ac7", + "build_status": "FAILURE", + "build_uuid": "21d8ac7621244e3dab2964202973a81e", + "error_pr": -8.9378, + "filename": "console.html", + "host": "127.0.0.1:56189", + "log_url": "http://logs.openstack.org/92/136792/2/check/check-tempest-dsvm-full-juno/21d8ac7/console.html", + "message": "Looks like the node went offline during the build. Check the slave log for the details.FATAL: /var/lib/jenkins/logs/slaves/devstack-trusty-hpcloud-b2-32836/slave.log (No such file or directory)", + "project": "openstack/tempest", + "received_at": "2014-11-24 20:19:15 UTC", + "tags": [ + "console.html", + "console" + ], + "type": "jenkins" + }, + "_type": "jenkins", + "sort": [ + 1416860320437 + ] + }, + { + "_id": "5e-YnQHRSHOenX_nJBlzCA", + "_index": "logstash-2014.11.24", + "_score": null, + "_source": { + "@timestamp": "2014-11-24T20:17:35.336+00:00", + "@version": "1", + "build_branch": "master", + "build_change": "136792", + "build_master": "jenkins03.openstack.org", + "build_name": "check-tempest-dsvm-full", + "build_node": "devstack-trusty-hpcloud-b1-32796", + "build_patchset": "2", + "build_queue": "check", + "build_ref": "refs/zuul/master/Zaac62205853b4dbda8de8ff955e40ef5", + "build_short_uuid": "1994cbd", + "build_status": "FAILURE", + "build_uuid": "1994cbde23594fd8b7694a8e5b15238b", + "error_pr": -7.6617, + "filename": "console.html", + "host": "127.0.0.1:46095", + "log_url": "http://logs.openstack.org/92/136792/2/check/check-tempest-dsvm-full/1994cbd/console.html", + "message": "Looks like the node went offline during the build. Check the slave log for the details.FATAL: /var/lib/jenkins/logs/slaves/devstack-trusty-hpcloud-b1-32796/slave.log (No such file or directory)", + "project": "openstack/tempest", + "received_at": "2014-11-24 20:19:12 UTC", + "tags": [ + "console.html", + "console" + ], + "type": "jenkins" + }, + "_type": "jenkins", + "sort": [ + 1416860255336 + ] + }, + { + "_id": "aETBFdCPRkev6tkNg4Gkqg", + "_index": "logstash-2014.11.24", + "_score": null, + "_source": { + "@timestamp": "2014-11-24T20:16:53.833+00:00", + "@version": "1", + "build_branch": "master", + "build_change": "128258", + "build_master": "jenkins05.openstack.org", + "build_name": "check-tempest-dsvm-neutron-full-2", + "build_node": "devstack-trusty-rax-dfw-33145", + "build_patchset": "6", + "build_queue": "check", + "build_ref": "refs/zuul/master/Zf1e55b373baa4a94ba598776f7900e02", + "build_short_uuid": "6d5fb7b", + "build_status": "FAILURE", + "build_uuid": "6d5fb7bb5e8a4cd0b2e7461886b6f9ea", + "error_pr": -7.4643, + "filename": "console.html", + "host": "127.0.0.1:36517", + "log_url": "http://logs.openstack.org/58/128258/6/check/check-tempest-dsvm-neutron-full-2/6d5fb7b/console.html", + "message": "Looks like the node went offline during the build. Check the slave log for the details.FATAL: /var/lib/jenkins/logs/slaves/devstack-trusty-rax-dfw-33145/slave.log (No such file or directory)", + "project": "openstack/neutron", + "received_at": "2014-11-24 20:17:16 UTC", + "tags": [ + "console.html", + "console" + ], + "type": "jenkins" + }, + "_type": "jenkins", + "sort": [ + 1416860213833 + ] + }, + { + "_id": "OrBaHv9jROOYeV-jj3OmRw", + "_index": "logstash-2014.11.24", + "_score": null, + "_source": { + "@timestamp": "2014-11-24T20:16:34.760+00:00", + "@version": "1", + "build_branch": "master", + "build_change": "136792", + "build_master": "jenkins02.openstack.org", + "build_name": "check-tempest-dsvm-postgres-full-juno", + "build_node": "devstack-trusty-hpcloud-b2-32841", + "build_patchset": "2", + "build_queue": "check", + "build_ref": "refs/zuul/master/Zaac62205853b4dbda8de8ff955e40ef5", + "build_short_uuid": "45f70a2", + "build_status": "FAILURE", + "build_uuid": "45f70a24927246e09260aa8f190edea7", + "error_pr": -7.8021, + "filename": "console.html", + "host": "127.0.0.1:56890", + "log_url": "http://logs.openstack.org/92/136792/2/check/check-tempest-dsvm-postgres-full-juno/45f70a2/console.html", + "message": "Looks like the node went offline during the build. Check the slave log for the details.FATAL: /var/lib/jenkins/logs/slaves/devstack-trusty-hpcloud-b2-32841/slave.log (No such file or directory)", + "project": "openstack/tempest", + "received_at": "2014-11-24 20:18:24 UTC", + "tags": [ + "console.html", + "console" + ], + "type": "jenkins" + }, + "_type": "jenkins", + "sort": [ + 1416860194760 + ] + }, + { + "_id": "Dw_Pkay_SQa4QoyoYsQl0Q", + "_index": "logstash-2014.11.24", + "_score": null, + "_source": { + "@timestamp": "2014-11-24T20:14:28.285+00:00", + "@version": "1", + "build_branch": "master", + "build_change": "128258", + "build_master": "jenkins03.openstack.org", + "build_name": "check-tempest-dsvm-neutron-pg-full", + "build_node": "devstack-trusty-hpcloud-b2-32837", + "build_patchset": "6", + "build_queue": "check", + "build_ref": "refs/zuul/master/Zf1e55b373baa4a94ba598776f7900e02", + "build_short_uuid": "93d563d", + "build_status": "FAILURE", + "build_uuid": "93d563dc3b1c47f8b862249c5d3c7ae3", + "filename": "console.html", + "host": "127.0.0.1:39167", + "log_url": "http://logs.openstack.org/58/128258/6/check/check-tempest-dsvm-neutron-pg-full/93d563d/console.html", + "message": "Looks like the node went offline during the build. Check the slave log for the details.FATAL: /var/lib/jenkins/logs/slaves/devstack-trusty-hpcloud-b2-32837/slave.log (No such file or directory)", + "project": "openstack/neutron", + "received_at": "2014-11-24 20:15:35 UTC", + "tags": [ + "console.html", + "console" + ], + "type": "jenkins" + }, + "_type": "jenkins", + "sort": [ + 1416860068285 + ] + }, + { + "_id": "YIQhWZqoTwuJEF-KDIqh0w", + "_index": "logstash-2014.11.24", + "_score": null, + "_source": { + "@timestamp": "2014-11-24T20:12:21.686+00:00", + "@version": "1", + "build_branch": "master", + "build_change": "136792", + "build_master": "jenkins06.openstack.org", + "build_name": "check-grenade-dsvm", + "build_node": "devstack-trusty-hpcloud-b1-32789", + "build_patchset": "2", + "build_queue": "check", + "build_ref": "refs/zuul/master/Zaac62205853b4dbda8de8ff955e40ef5", + "build_short_uuid": "4d0358d", + "build_status": "FAILURE", + "build_uuid": "4d0358def1a24e96b8118006e2db7d6c", + "error_pr": -7.8418, + "filename": "console.html", + "host": "127.0.0.1:56890", + "log_url": "http://logs.openstack.org/92/136792/2/check/check-grenade-dsvm/4d0358d/console.html", + "message": "Looks like the node went offline during the build. Check the slave log for the details.FATAL: /var/lib/jenkins/logs/slaves/devstack-trusty-hpcloud-b1-32789/slave.log (No such file or directory)", + "project": "openstack/tempest", + "received_at": "2014-11-24 20:13:50 UTC", + "tags": [ + "console.html", + "console" + ], + "type": "jenkins" + }, + "_type": "jenkins", + "sort": [ + 1416859941686 + ] + }, + { + "_id": "CU7SI9tTQza5uEHkEz-0yw", + "_index": "logstash-2014.11.24", + "_score": null, + "_source": { + "@timestamp": "2014-11-24T20:11:44.474+00:00", + "@version": "1", + "build_branch": "master", + "build_change": "128258", + "build_master": "jenkins03.openstack.org", + "build_name": "check-grenade-dsvm-neutron", + "build_node": "devstack-trusty-hpcloud-b2-32840", + "build_patchset": "6", + "build_queue": "check", + "build_ref": "refs/zuul/master/Zf1e55b373baa4a94ba598776f7900e02", + "build_short_uuid": "4d848e7", + "build_status": "FAILURE", + "build_uuid": "4d848e72f676488f8f067dcbc624e459", + "filename": "console.html", + "host": "127.0.0.1:56890", + "log_url": "http://logs.openstack.org/58/128258/6/check/check-grenade-dsvm-neutron/4d848e7/console.html", + "message": "Looks like the node went offline during the build. Check the slave log for the details.FATAL: /var/lib/jenkins/logs/slaves/devstack-trusty-hpcloud-b2-32840/slave.log (No such file or directory)", + "project": "openstack/neutron", + "received_at": "2014-11-24 20:13:37 UTC", + "tags": [ + "console.html", + "console" + ], + "type": "jenkins" + }, + "_type": "jenkins", + "sort": [ + 1416859904474 + ] + }, + { + "_id": "7BpPdF2BRPmdKpzBt4HWwA", + "_index": "logstash-2014.11.24", + "_score": null, + "_source": { + "@timestamp": "2014-11-24T20:11:43.882+00:00", + "@version": "1", + "build_branch": "master", + "build_change": "136792", + "build_master": "jenkins05.openstack.org", + "build_name": "check-grenade-dsvm-partial-ncpu", + "build_node": "devstack-trusty-hpcloud-b4-32916", + "build_patchset": "2", + "build_queue": "check", + "build_ref": "refs/zuul/master/Zaac62205853b4dbda8de8ff955e40ef5", + "build_short_uuid": "512e20f", + "build_status": "FAILURE", + "build_uuid": "512e20f25e2b4a9b8ab2a0578d6de330", + "error_pr": -7.6137, + "filename": "console.html", + "host": "127.0.0.1:36511", + "log_url": "http://logs.openstack.org/92/136792/2/check/check-grenade-dsvm-partial-ncpu/512e20f/console.html", + "message": "Looks like the node went offline during the build. Check the slave log for the details.FATAL: /var/lib/jenkins/logs/slaves/devstack-trusty-hpcloud-b4-32916/slave.log (No such file or directory)", + "project": "openstack/tempest", + "received_at": "2014-11-24 20:12:26 UTC", + "tags": [ + "console.html", + "console" + ], + "type": "jenkins" + }, + "_type": "jenkins", + "sort": [ + 1416859903882 + ] + }, + { + "_id": "eHsP8GTKTWKE9miacz70LQ", + "_index": "logstash-2014.11.24", + "_score": null, + "_source": { + "@timestamp": "2014-11-24T20:11:16.117+00:00", + "@version": "1", + "build_branch": "master", + "build_change": "136792", + "build_master": "jenkins01.openstack.org", + "build_name": "check-tempest-dsvm-postgres-full", + "build_node": "devstack-trusty-hpcloud-b2-32847", + "build_patchset": "2", + "build_queue": "check", + "build_ref": "refs/zuul/master/Zaac62205853b4dbda8de8ff955e40ef5", + "build_short_uuid": "6a8a440", + "build_status": "FAILURE", + "build_uuid": "6a8a4401bbda4a4a86836f42ee1b199b", + "filename": "console.html", + "host": "127.0.0.1:33969", + "log_url": "http://logs.openstack.org/92/136792/2/check/check-tempest-dsvm-postgres-full/6a8a440/console.html", + "message": "Looks like the node went offline during the build. Check the slave log for the details.FATAL: /var/lib/jenkins/logs/slaves/devstack-trusty-hpcloud-b2-32847/slave.log (No such file or directory)", + "project": "openstack/tempest", + "received_at": "2014-11-24 20:12:10 UTC", + "tags": [ + "console.html", + "console" + ], + "type": "jenkins" + }, + "_type": "jenkins", + "sort": [ + 1416859876117 + ] + }, + { + "_id": "BC3ZBdOPSpGlyAjOfUvPUA", + "_index": "logstash-2014.11.24", + "_score": null, + "_source": { + "@timestamp": "2014-11-24T20:10:04.222+00:00", + "@version": "1", + "build_branch": "master", + "build_change": "128258", + "build_master": "jenkins03.openstack.org", + "build_name": "check-tempest-dsvm-neutron-dvr", + "build_node": "devstack-trusty-hpcloud-b1-32795", + "build_patchset": "6", + "build_queue": "check", + "build_ref": "refs/zuul/master/Zf1e55b373baa4a94ba598776f7900e02", + "build_short_uuid": "b510fd0", + "build_status": "FAILURE", + "build_uuid": "b510fd07cfc74a328c0d2a0f16f5f6fa", + "error_pr": -7.8149, + "filename": "console.html", + "host": "127.0.0.1:56902", + "log_url": "http://logs.openstack.org/58/128258/6/check/check-tempest-dsvm-neutron-dvr/b510fd0/console.html", + "message": "Looks like the node went offline during the build. Check the slave log for the details.FATAL: /var/lib/jenkins/logs/slaves/devstack-trusty-hpcloud-b1-32795/slave.log (No such file or directory)", + "project": "openstack/neutron", + "received_at": "2014-11-24 20:12:07 UTC", + "tags": [ + "console.html", + "console" + ], + "type": "jenkins" + }, + "_type": "jenkins", + "sort": [ + 1416859804222 + ] + }, + { + "_id": "T-qfF6gNRiKiVWwEBckRaQ", + "_index": "logstash-2014.11.24", + "_score": null, + "_source": { + "@timestamp": "2014-11-24T20:09:09.742+00:00", + "@version": "1", + "build_branch": "master", + "build_change": "128259", + "build_master": "jenkins03.openstack.org", + "build_name": "check-tempest-dsvm-neutron-pg-full-2", + "build_node": "devstack-trusty-rax-ord-33153", + "build_patchset": "7", + "build_queue": "check", + "build_ref": "refs/zuul/master/Zc79fbefc22984ee8b37c732bc5cb9088", + "build_short_uuid": "dec225e", + "build_status": "FAILURE", + "build_uuid": "dec225e29c1b4a27b1baa8928a457930", + "error_pr": -7.3851, + "filename": "console.html", + "host": "127.0.0.1:42430", + "log_url": "http://logs.openstack.org/59/128259/7/check/check-tempest-dsvm-neutron-pg-full-2/dec225e/console.html", + "message": "Looks like the node went offline during the build. Check the slave log for the details.FATAL: /var/lib/jenkins/logs/slaves/devstack-trusty-rax-ord-33153/slave.log (No such file or directory)", + "project": "openstack/neutron", + "received_at": "2014-11-24 20:09:47 UTC", + "tags": [ + "console.html", + "console" + ], + "type": "jenkins" + }, + "_type": "jenkins", + "sort": [ + 1416859749742 + ] + }, + { + "_id": "m3FQTyEfThGY3Rmu4xCI-g", + "_index": "logstash-2014.11.24", + "_score": null, + "_source": { + "@timestamp": "2014-11-24T20:07:38.200+00:00", + "@version": "1", + "build_branch": "master", + "build_change": "128258", + "build_master": "jenkins01.openstack.org", + "build_name": "check-tempest-dsvm-neutron-full", + "build_node": "devstack-trusty-hpcloud-b1-32799", + "build_patchset": "6", + "build_queue": "check", + "build_ref": "refs/zuul/master/Zf1e55b373baa4a94ba598776f7900e02", + "build_short_uuid": "9de837a", + "build_status": "FAILURE", + "build_uuid": "9de837aa71924de38b042f525dd09c10", + "error_pr": -7.8222, + "filename": "console.html", + "host": "127.0.0.1:56886", + "log_url": "http://logs.openstack.org/58/128258/6/check/check-tempest-dsvm-neutron-full/9de837a/console.html", + "message": "Looks like the node went offline during the build. Check the slave log for the details.FATAL: /var/lib/jenkins/logs/slaves/devstack-trusty-hpcloud-b1-32799/slave.log (No such file or directory)", + "project": "openstack/neutron", + "received_at": "2014-11-24 20:08:24 UTC", + "tags": [ + "console.html", + "console" + ], + "type": "jenkins" + }, + "_type": "jenkins", + "sort": [ + 1416859658200 + ] + }, + { + "_id": "u45YubbtRFeVxz8MZsENKQ", + "_index": "logstash-2014.11.24", + "_score": null, + "_source": { + "@timestamp": "2014-11-24T20:07:09.443+00:00", + "@version": "1", + "build_branch": "master", + "build_change": "128259", + "build_master": "jenkins03.openstack.org", + "build_name": "check-tempest-dsvm-neutron-full-2", + "build_node": "devstack-trusty-hpcloud-b2-32838", + "build_patchset": "7", + "build_queue": "check", + "build_ref": "refs/zuul/master/Zc79fbefc22984ee8b37c732bc5cb9088", + "build_short_uuid": "720c1c1", + "build_status": "FAILURE", + "build_uuid": "720c1c1e74c147eaa1bf200d0e4211b8", + "error_pr": -7.8172, + "filename": "console.html", + "host": "127.0.0.1:56886", + "log_url": "http://logs.openstack.org/59/128259/7/check/check-tempest-dsvm-neutron-full-2/720c1c1/console.html", + "message": "Looks like the node went offline during the build. Check the slave log for the details.FATAL: /var/lib/jenkins/logs/slaves/devstack-trusty-hpcloud-b2-32838/slave.log (No such file or directory)", + "project": "openstack/neutron", + "received_at": "2014-11-24 20:08:00 UTC", + "tags": [ + "console.html", + "console" + ], + "type": "jenkins" + }, + "_type": "jenkins", + "sort": [ + 1416859629443 + ] + }, + { + "_id": "wf2DPWVUSVu7Vkg1dGnfzg", + "_index": "logstash-2014.11.24", + "_score": null, + "_source": { + "@timestamp": "2014-11-24T20:06:30.824+00:00", + "@version": "1", + "build_branch": "master", + "build_change": "128258", + "build_master": "jenkins01.openstack.org", + "build_name": "check-tempest-dsvm-neutron-pg", + "build_node": "devstack-trusty-hpcloud-b1-32798", + "build_patchset": "6", + "build_queue": "check", + "build_ref": "refs/zuul/master/Zf1e55b373baa4a94ba598776f7900e02", + "build_short_uuid": "e55b3b3", + "build_status": "FAILURE", + "build_uuid": "e55b3b3e47924ac5989205913529d39d", + "error_pr": -9.2387, + "filename": "console.html", + "host": "127.0.0.1:48303", + "log_url": "http://logs.openstack.org/58/128258/6/check/check-tempest-dsvm-neutron-pg/e55b3b3/console.html", + "message": "Looks like the node went offline during the build. Check the slave log for the details.FATAL: /var/lib/jenkins/logs/slaves/devstack-trusty-hpcloud-b1-32798/slave.log (No such file or directory)", + "project": "openstack/neutron", + "received_at": "2014-11-24 20:07:00 UTC", + "tags": [ + "console.html", + "console" + ], + "type": "jenkins" + }, + "_type": "jenkins", + "sort": [ + 1416859590824 + ] + }, + { + "_id": "aopkhlvfT66v7Rt_npBbMw", + "_index": "logstash-2014.11.24", + "_score": null, + "_source": { + "@timestamp": "2014-11-24T20:05:33.792+00:00", + "@version": "1", + "build_branch": "stable/icehouse", + "build_change": "136798", + "build_master": "jenkins04.openstack.org", + "build_name": "gate-tempest-dsvm-full", + "build_node": "devstack-precise-rax-dfw-33041", + "build_patchset": "1", + "build_queue": "gate", + "build_ref": "refs/zuul/stable/icehouse/Z4269010c2f514debbefaf0f459724ea5", + "build_short_uuid": "4cb8d10", + "build_status": "FAILURE", + "build_uuid": "4cb8d10010b044a891c235e29146c378", + "filename": "console.html", + "host": "127.0.0.1:35477", + "log_url": "http://logs.openstack.org/98/136798/1/gate/gate-tempest-dsvm-full/4cb8d10/console.html", + "message": "Looks like the node went offline during the build. Check the slave log for the details.FATAL: /var/lib/jenkins/logs/slaves/devstack-precise-rax-dfw-33041/slave.log (No such file or directory)", + "project": "openstack/cinder", + "received_at": "2014-11-24 20:06:06 UTC", + "tags": [ + "console.html", + "console" + ], + "type": "jenkins" + }, + "_type": "jenkins", + "sort": [ + 1416859533792 + ] + }, + { + "_id": "SmkTvl_ySWO79ojjPLkeHw", + "_index": "logstash-2014.11.24", + "_score": null, + "_source": { + "@timestamp": "2014-11-24T20:02:17.971+00:00", + "@version": "1", + "build_branch": "master", + "build_change": "136792", + "build_master": "jenkins06.openstack.org", + "build_name": "check-tempest-dsvm-ironic-pxe_ssh", + "build_node": "devstack-trusty-hpcloud-b2-32833", + "build_patchset": "2", + "build_queue": "check", + "build_ref": "refs/zuul/master/Zaac62205853b4dbda8de8ff955e40ef5", + "build_short_uuid": "773375b", + "build_status": "FAILURE", + "build_uuid": "773375bcd30e4166ae950a69e98e4fbc", + "error_pr": -7.8239, + "filename": "console.html", + "host": "127.0.0.1:56890", + "log_url": "http://logs.openstack.org/92/136792/2/check/check-tempest-dsvm-ironic-pxe_ssh/773375b/console.html", + "message": "Looks like the node went offline during the build. Check the slave log for the details.FATAL: /var/lib/jenkins/logs/slaves/devstack-trusty-hpcloud-b2-32833/slave.log (No such file or directory)", + "project": "openstack/tempest", + "received_at": "2014-11-24 20:02:50 UTC", + "tags": [ + "console.html", + "console" + ], + "type": "jenkins" + }, + "_type": "jenkins", + "sort": [ + 1416859337971 + ] + }, + { + "_id": "v3-4iIOITvOYhtpnt_npgw", + "_index": "logstash-2014.11.24", + "_score": null, + "_source": { + "@timestamp": "2014-11-24T20:01:18.731+00:00", + "@version": "1", + "build_branch": "master", + "build_change": "99964", + "build_master": "jenkins02.openstack.org", + "build_name": "check-tripleo-ironic-overcloud-f20-nonha", + "build_node": "tripleo-f20-tripleo-test-cloud-rh1-32288", + "build_patchset": "8", + "build_queue": "check-tripleo", + "build_ref": "refs/zuul/master/Z73614843d97941a3b10fb2068f79ec87", + "build_short_uuid": "d3e9419", + "build_status": "FAILURE", + "build_uuid": "d3e941972ad94a70ae4019153e6dc913", + "filename": "console.html", + "host": "127.0.0.1:41007", + "log_url": "http://logs.openstack.org/64/99964/8/check-tripleo/check-tripleo-ironic-overcloud-f20-nonha/d3e9419/console.html", + "message": "Looks like the node went offline during the build. Check the slave log for the details.FATAL: /var/lib/jenkins/logs/slaves/tripleo-f20-tripleo-test-cloud-rh1-32288/slave.log (No such file or directory)", + "project": "openstack/tripleo-image-elements", + "received_at": "2014-11-24 20:04:00 UTC", + "tags": [ + "console.html", + "console" + ], + "type": "jenkins" + }, + "_type": "jenkins", + "sort": [ + 1416859278731 + ] + }, + { + "_id": "rsYMAaSWTqKbH8npv4J2cw", + "_index": "logstash-2014.11.24", + "_score": null, + "_source": { + "@timestamp": "2014-11-24T20:01:15.819+00:00", + "@version": "1", + "build_branch": "master", + "build_change": "134616", + "build_master": "jenkins06.openstack.org", + "build_name": "check-tripleo-ironic-overcloud-f20-nonha", + "build_node": "tripleo-f20-tripleo-test-cloud-rh1-32558", + "build_patchset": "3", + "build_queue": "check-tripleo", + "build_ref": "refs/zuul/master/Zc0e8714c7ed74de6b5c60cd12cf3080f", + "build_short_uuid": "54f667c", + "build_status": "FAILURE", + "build_uuid": "54f667c2893c43e3be5574317dcd3d4f", + "filename": "console.html", + "host": "127.0.0.1:56902", + "log_url": "http://logs.openstack.org/16/134616/3/check-tripleo/check-tripleo-ironic-overcloud-f20-nonha/54f667c/console.html", + "message": "Looks like the node went offline during the build. Check the slave log for the details.FATAL: /var/lib/jenkins/logs/slaves/tripleo-f20-tripleo-test-cloud-rh1-32558/slave.log (No such file or directory)", + "project": "openstack/tripleo-image-elements", + "received_at": "2014-11-24 20:04:05 UTC", + "tags": [ + "console.html", + "console" + ], + "type": "jenkins" + }, + "_type": "jenkins", + "sort": [ + 1416859275819 + ] + }, + { + "_id": "IdMf5PZEQU-maXXiuqpXpw", + "_index": "logstash-2014.11.24", + "_score": null, + "_source": { + "@timestamp": "2014-11-24T20:01:07.208+00:00", + "@version": "1", + "build_branch": "stable/icehouse", + "build_change": "136798", + "build_master": "jenkins03.openstack.org", + "build_name": "gate-tempest-dsvm-postgres-full", + "build_node": "devstack-precise-hpcloud-b2-32804", + "build_patchset": "1", + "build_queue": "gate", + "build_ref": "refs/zuul/stable/icehouse/Z4269010c2f514debbefaf0f459724ea5", + "build_short_uuid": "6557bd9", + "build_status": "FAILURE", + "build_uuid": "6557bd94f7d84cb790c85d94b014799e", + "error_pr": -7.8085, + "filename": "console.html", + "host": "127.0.0.1:56890", + "log_url": "http://logs.openstack.org/98/136798/1/gate/gate-tempest-dsvm-postgres-full/6557bd9/console.html", + "message": "Looks like the node went offline during the build. Check the slave log for the details.FATAL: /var/lib/jenkins/logs/slaves/devstack-precise-hpcloud-b2-32804/slave.log (No such file or directory)", + "project": "openstack/cinder", + "received_at": "2014-11-24 20:04:00 UTC", + "tags": [ + "console.html", + "console" + ], + "type": "jenkins" + }, + "_type": "jenkins", + "sort": [ + 1416859267208 + ] + }, + { + "_id": "8ZwEkxttQ6KDxKCXTnmzNA", + "_index": "logstash-2014.11.24", + "_score": null, + "_source": { + "@timestamp": "2014-11-24T19:57:17.145+00:00", + "@version": "1", + "build_branch": "master", + "build_change": "136596", + "build_master": "jenkins07.openstack.org", + "build_name": "check-tempest-dsvm-centos7", + "build_node": "devstack-centos7-rax-iad-31091", + "build_patchset": "5", + "build_queue": "check", + "build_ref": "refs/zuul/master/Z1308fa3ade8544379e1998ab096f7e81", + "build_short_uuid": "a0cb946", + "build_status": "FAILURE", + "build_uuid": "a0cb946817af4c32a80cfa6a69d87e49", + "error_pr": -7.8027, + "filename": "console.html", + "host": "127.0.0.1:56902", + "log_url": "http://logs.openstack.org/96/136596/5/check/check-tempest-dsvm-centos7/a0cb946/console.html", + "message": "Looks like the node went offline during the build. Check the slave log for the details.FATAL: /var/lib/jenkins/logs/slaves/devstack-centos7-rax-iad-31091/slave.log (No such file or directory)", + "project": "openstack-infra/devstack-gate", + "received_at": "2014-11-24 19:58:05 UTC", + "tags": [ + "console.html", + "console" + ], + "type": "jenkins" + }, + "_type": "jenkins", + "sort": [ + 1416859037145 + ] + }, + { + "_id": "mkqnj_BJQaSgzHbP9i5sCA", + "_index": "logstash-2014.11.24", + "_score": null, + "_source": { + "@timestamp": "2014-11-24T19:57:15.779+00:00", + "@version": "1", + "build_branch": "master", + "build_change": "136511", + "build_master": "jenkins04.openstack.org", + "build_name": "gate-neutron-python27", + "build_node": "bare-trusty-hpcloud-b4-32905", + "build_patchset": "4", + "build_queue": "check", + "build_ref": "refs/zuul/master/Z252a70b65bee463ea853427b3d5e9e52", + "build_short_uuid": "eb13300", + "build_status": "FAILURE", + "build_uuid": "eb133001a26a477596d4975f3aef630e", + "filename": "console.html", + "host": "127.0.0.1:56890", + "log_url": "http://logs.openstack.org/11/136511/4/check/gate-neutron-python27/eb13300/console.html", + "message": "Looks like the node went offline during the build. Check the slave log for the details.FATAL: /var/lib/jenkins/logs/slaves/bare-trusty-hpcloud-b4-32905/slave.log (No such file or directory)", + "project": "openstack/neutron", + "received_at": "2014-11-24 19:58:28 UTC", + "tags": [ + "console.html", + "console" + ], + "type": "jenkins" + }, + "_type": "jenkins", + "sort": [ + 1416859035779 + ] + }, + { + "_id": "GnmhMs_rTYaRDMbHJETEFg", + "_index": "logstash-2014.11.24", + "_score": null, + "_source": { + "@timestamp": "2014-11-24T19:56:48.083+00:00", + "@version": "1", + "build_branch": "master", + "build_change": "135990", + "build_master": "jenkins04.openstack.org", + "build_name": "check-tripleo-ironic-overcloud-f20-nonha", + "build_node": "tripleo-f20-tripleo-test-cloud-rh1-24348", + "build_patchset": "1", + "build_queue": "check-tripleo", + "build_ref": "refs/zuul/master/Za17319a695d04cbc91af83d3545848ef", + "build_short_uuid": "c1407ee", + "build_status": "FAILURE", + "build_uuid": "c1407eea3385483f8d952970b0e2b6b7", + "error_pr": -7.4865, + "filename": "console.html", + "host": "127.0.0.1:56887", + "log_url": "http://logs.openstack.org/90/135990/1/check-tripleo/check-tripleo-ironic-overcloud-f20-nonha/c1407ee/console.html", + "message": "Looks like the node went offline during the build. Check the slave log for the details.FATAL: /var/lib/jenkins/logs/slaves/tripleo-f20-tripleo-test-cloud-rh1-24348/slave.log (No such file or directory)", + "project": "openstack/python-tuskarclient", + "received_at": "2014-11-24 20:01:15 UTC", + "tags": [ + "console.html", + "console" + ], + "type": "jenkins" + }, + "_type": "jenkins", + "sort": [ + 1416859008083 + ] + }, + { + "_id": "_w1kpyrxSWCyTAwF1KGvxg", + "_index": "logstash-2014.11.24", + "_score": null, + "_source": { + "@timestamp": "2014-11-24T19:55:33.012+00:00", + "@version": "1", + "build_branch": "master", + "build_change": "136792", + "build_master": "jenkins07.openstack.org", + "build_name": "gate-tempest-dsvm-neutron-large-ops", + "build_node": "devstack-trusty-hpcloud-b2-32832", + "build_patchset": "2", + "build_queue": "check", + "build_ref": "refs/zuul/master/Zaac62205853b4dbda8de8ff955e40ef5", + "build_short_uuid": "0a20c45", + "build_status": "FAILURE", + "build_uuid": "0a20c45f397b4e08874a43a4f62cb279", + "error_pr": -8.4853, + "filename": "console.html", + "host": "127.0.0.1:41029", + "log_url": "http://logs.openstack.org/92/136792/2/check/gate-tempest-dsvm-neutron-large-ops/0a20c45/console.html", + "message": "Looks like the node went offline during the build. Check the slave log for the details.FATAL: /var/lib/jenkins/logs/slaves/devstack-trusty-hpcloud-b2-32832/slave.log (No such file or directory)", + "project": "openstack/tempest", + "received_at": "2014-11-24 19:55:56 UTC", + "tags": [ + "console.html", + "console" + ], + "type": "jenkins" + }, + "_type": "jenkins", + "sort": [ + 1416858933012 + ] + }, + { + "_id": "SHUPPdCFQ9OkNWiCda5nBQ", + "_index": "logstash-2014.11.24", + "_score": null, + "_source": { + "@timestamp": "2014-11-24T19:54:57.782+00:00", + "@version": "1", + "build_branch": "stable/juno", + "build_change": "136729", + "build_master": "jenkins07.openstack.org", + "build_name": "check-tripleo-ironic-overcloud-precise-nonha", + "build_node": "tripleo-precise-tripleo-test-cloud-rh1-32935", + "build_patchset": "2", + "build_queue": "check-tripleo", + "build_ref": "refs/zuul/stable/juno/Z98f011e8dc8e47ad8ab55c57e8669fff", + "build_short_uuid": "31451a3", + "build_status": "FAILURE", + "build_uuid": "31451a3797f840018b87473d7f2dbbb2", + "error_pr": -7.5175, + "filename": "console.html", + "host": "127.0.0.1:36511", + "log_url": "http://logs.openstack.org/29/136729/2/check-tripleo/check-tripleo-ironic-overcloud-precise-nonha/31451a3/console.html", + "message": "Looks like the node went offline during the build. Check the slave log for the details.FATAL: /var/lib/jenkins/logs/slaves/tripleo-precise-tripleo-test-cloud-rh1-32935/slave.log (No such file or directory)", + "project": "openstack/heat", + "received_at": "2014-11-24 19:58:10 UTC", + "tags": [ + "console.html", + "console" + ], + "type": "jenkins" + }, + "_type": "jenkins", + "sort": [ + 1416858897782 + ] + }, + { + "_id": "rGxOVuNBTUOHWvgzlAhLPg", + "_index": "logstash-2014.11.24", + "_score": null, + "_source": { + "@timestamp": "2014-11-24T19:54:31.582+00:00", + "@version": "1", + "build_branch": "master", + "build_change": "136792", + "build_master": "jenkins06.openstack.org", + "build_name": "gate-tempest-dsvm-large-ops", + "build_node": "devstack-trusty-hpcloud-b2-32834", + "build_patchset": "2", + "build_queue": "check", + "build_ref": "refs/zuul/master/Zaac62205853b4dbda8de8ff955e40ef5", + "build_short_uuid": "e0d4a99", + "build_status": "FAILURE", + "build_uuid": "e0d4a99bf60c473a8600a4b8c1eeb696", + "error_pr": -7.8422, + "filename": "console.html", + "host": "127.0.0.1:56890", + "log_url": "http://logs.openstack.org/92/136792/2/check/gate-tempest-dsvm-large-ops/e0d4a99/console.html", + "message": "Looks like the node went offline during the build. Check the slave log for the details.FATAL: /var/lib/jenkins/logs/slaves/devstack-trusty-hpcloud-b2-32834/slave.log (No such file or directory)", + "project": "openstack/tempest", + "received_at": "2014-11-24 19:58:07 UTC", + "tags": [ + "console.html", + "console" + ], + "type": "jenkins" + }, + "_type": "jenkins", + "sort": [ + 1416858871582 + ] + }, + { + "_id": "c2U4H5DwQXmdxjuaLfM_Fw", + "_index": "logstash-2014.11.24", + "_score": null, + "_source": { + "@timestamp": "2014-11-24T19:54:03.933+00:00", + "@version": "1", + "build_branch": "master", + "build_change": "136792", + "build_master": "jenkins03.openstack.org", + "build_name": "check-tempest-dsvm-neutron-heat-slow-juno", + "build_node": "devstack-trusty-hpcloud-b4-32918", + "build_patchset": "2", + "build_queue": "check", + "build_ref": "refs/zuul/master/Zaac62205853b4dbda8de8ff955e40ef5", + "build_short_uuid": "4ecb067", + "build_status": "FAILURE", + "build_uuid": "4ecb0673539c4bba99b31dbcc0799d30", + "error_pr": -7.8198, + "filename": "console.html", + "host": "127.0.0.1:56890", + "log_url": "http://logs.openstack.org/92/136792/2/check/check-tempest-dsvm-neutron-heat-slow-juno/4ecb067/console.html", + "message": "Looks like the node went offline during the build. Check the slave log for the details.FATAL: /var/lib/jenkins/logs/slaves/devstack-trusty-hpcloud-b4-32918/slave.log (No such file or directory)", + "project": "openstack/tempest", + "received_at": "2014-11-24 19:58:06 UTC", + "tags": [ + "console.html", + "console" + ], + "type": "jenkins" + }, + "_type": "jenkins", + "sort": [ + 1416858843933 + ] + }, + { + "_id": "w6kZ-VLER1-_aCdI9Lhe-Q", + "_index": "logstash-2014.11.24", + "_score": null, + "_source": { + "@timestamp": "2014-11-24T19:53:56.963+00:00", + "@version": "1", + "build_branch": "master", + "build_change": "123000", + "build_master": "jenkins04.openstack.org", + "build_name": "check-tempest-dsvm-neutron-full-2", + "build_node": "devstack-trusty-rax-ord-33061", + "build_patchset": "8", + "build_queue": "check", + "build_ref": "refs/zuul/master/Zd0f6a3a11a8c40e3a6c87f3309f915ee", + "build_short_uuid": "78d5bf3", + "build_status": "FAILURE", + "build_uuid": "78d5bf35c22e40c49cfcd195986c77b0", + "error_pr": -9.0989, + "filename": "console.html", + "host": "127.0.0.1:48303", + "log_url": "http://logs.openstack.org/00/123000/8/check/check-tempest-dsvm-neutron-full-2/78d5bf3/console.html", + "message": "Looks like the node went offline during the build. Check the slave log for the details.FATAL: /var/lib/jenkins/logs/slaves/devstack-trusty-rax-ord-33061/slave.log (No such file or directory)", + "project": "openstack/neutron", + "received_at": "2014-11-24 19:54:51 UTC", + "tags": [ + "console.html", + "console" + ], + "type": "jenkins" + }, + "_type": "jenkins", + "sort": [ + 1416858836963 + ] + }, + { + "_id": "z-41BVpETDSy5TumnHbBvA", + "_index": "logstash-2014.11.24", + "_score": null, + "_source": { + "@timestamp": "2014-11-24T19:53:28.490+00:00", + "@version": "1", + "build_branch": "master", + "build_change": "136604", + "build_master": "jenkins07.openstack.org", + "build_name": "gate-neutron-python27", + "build_node": "bare-trusty-rax-ord-33460", + "build_patchset": "3", + "build_queue": "check", + "build_ref": "refs/zuul/master/Zffeeba58b2704ec4af64f13a330b07fa", + "build_short_uuid": "b7ea318", + "build_status": "FAILURE", + "build_uuid": "b7ea3182db254a108983d62b79380acd", + "filename": "console.html", + "host": "127.0.0.1:56886", + "log_url": "http://logs.openstack.org/04/136604/3/check/gate-neutron-python27/b7ea318/console.html", + "message": "Looks like the node went offline during the build. Check the slave log for the details.FATAL: /var/lib/jenkins/logs/slaves/bare-trusty-rax-ord-33460/slave.log (No such file or directory)", + "project": "openstack/neutron", + "received_at": "2014-11-24 19:55:00 UTC", + "tags": [ + "console.html", + "console" + ], + "type": "jenkins" + }, + "_type": "jenkins", + "sort": [ + 1416858808490 + ] + }, + { + "_id": "8jbUIZjhQq-RS3cb0UvcJA", + "_index": "logstash-2014.11.24", + "_score": null, + "_source": { + "@timestamp": "2014-11-24T19:53:23.550+00:00", + "@version": "1", + "build_branch": "master", + "build_change": "135260", + "build_master": "jenkins07.openstack.org", + "build_name": "gate-nova-python27", + "build_node": "bare-trusty-hpcloud-b2-32808", + "build_patchset": "6", + "build_queue": "check", + "build_ref": "refs/zuul/master/Zca33975e596e46c495c3a1581d9957ce", + "build_short_uuid": "372b677", + "build_status": "FAILURE", + "build_uuid": "372b6770908f440f8147012d397c5186", + "filename": "console.html", + "host": "127.0.0.1:35474", + "log_url": "http://logs.openstack.org/60/135260/6/check/gate-nova-python27/372b677/console.html", + "message": "Looks like the node went offline during the build. Check the slave log for the details.FATAL: /var/lib/jenkins/logs/slaves/bare-trusty-hpcloud-b2-32808/slave.log (No such file or directory)", + "project": "openstack/nova", + "received_at": "2014-11-24 19:54:55 UTC", + "tags": [ + "console.html", + "console" + ], + "type": "jenkins" + }, + "_type": "jenkins", + "sort": [ + 1416858803550 + ] + }, + { + "_id": "nJiHcXSVSMiUBPNQHXemJw", + "_index": "logstash-2014.11.24", + "_score": null, + "_source": { + "@timestamp": "2014-11-24T19:52:36.780+00:00", + "@version": "1", + "build_branch": "master", + "build_change": "136489", + "build_master": "jenkins07.openstack.org", + "build_name": "gate-neutron-python27", + "build_node": "bare-trusty-rax-ord-33462", + "build_patchset": "4", + "build_queue": "check", + "build_ref": "refs/zuul/master/Z861b60983f3b4244978a4e41b1e0eaf6", + "build_short_uuid": "a31ac8e", + "build_status": "FAILURE", + "build_uuid": "a31ac8ee9dc84c1da80b1a3e2725227d", + "error_pr": -8.2312, + "filename": "console.html", + "host": "127.0.0.1:45748", + "log_url": "http://logs.openstack.org/89/136489/4/check/gate-neutron-python27/a31ac8e/console.html", + "message": "Looks like the node went offline during the build. Check the slave log for the details.FATAL: /var/lib/jenkins/logs/slaves/bare-trusty-rax-ord-33462/slave.log (No such file or directory)", + "project": "openstack/neutron", + "received_at": "2014-11-24 19:54:08 UTC", + "tags": [ + "console.html", + "console" + ], + "type": "jenkins" + }, + "_type": "jenkins", + "sort": [ + 1416858756780 + ] + }, + { + "_id": "FnnXLi2VSFuEEatpQX90lw", + "_index": "logstash-2014.11.24", + "_score": null, + "_source": { + "@timestamp": "2014-11-24T19:52:24.642+00:00", + "@version": "1", + "build_branch": "master", + "build_change": "126330", + "build_master": "jenkins06.openstack.org", + "build_name": "gate-tempest-dsvm-neutron-src-oslo.messaging", + "build_node": "devstack-trusty-hpcloud-b5-31894", + "build_patchset": "14", + "build_queue": "check", + "build_ref": "refs/zuul/master/Zaab340acbd4d4db89fb3c35c45eea5c8", + "build_short_uuid": "d05a2c7", + "build_status": "FAILURE", + "build_uuid": "d05a2c79181b4a67b97e8a3e5570589a", + "error_pr": -7.8105, + "filename": "console.html", + "host": "127.0.0.1:56886", + "log_url": "http://logs.openstack.org/30/126330/14/check/gate-tempest-dsvm-neutron-src-oslo.messaging/d05a2c7/console.html", + "message": "Looks like the node went offline during the build. Check the slave log for the details.FATAL: /var/lib/jenkins/logs/slaves/devstack-trusty-hpcloud-b5-31894/slave.log (No such file or directory)", + "project": "openstack/oslo.messaging", + "received_at": "2014-11-24 19:52:55 UTC", + "tags": [ + "console.html", + "console" + ], + "type": "jenkins" + }, + "_type": "jenkins", + "sort": [ + 1416858744642 + ] + }, + { + "_id": "TVJPgFXzS_OitMsUPLOBew", + "_index": "logstash-2014.11.24", + "_score": null, + "_source": { + "@timestamp": "2014-11-24T19:52:06.839+00:00", + "@version": "1", + "build_branch": "master", + "build_change": "136792", + "build_master": "jenkins03.openstack.org", + "build_name": "check-tempest-dsvm-neutron-heat-slow", + "build_node": "devstack-trusty-hpcloud-b1-32794", + "build_patchset": "2", + "build_queue": "check", + "build_ref": "refs/zuul/master/Zaac62205853b4dbda8de8ff955e40ef5", + "build_short_uuid": "fdd6baa", + "build_status": "FAILURE", + "build_uuid": "fdd6baa2e3ec48da9c7736c4422fce75", + "error_pr": -7.8258, + "filename": "console.html", + "host": "127.0.0.1:56886", + "log_url": "http://logs.openstack.org/92/136792/2/check/check-tempest-dsvm-neutron-heat-slow/fdd6baa/console.html", + "message": "Looks like the node went offline during the build. Check the slave log for the details.FATAL: /var/lib/jenkins/logs/slaves/devstack-trusty-hpcloud-b1-32794/slave.log (No such file or directory)", + "project": "openstack/tempest", + "received_at": "2014-11-24 19:52:35 UTC", + "tags": [ + "console.html", + "console" + ], + "type": "jenkins" + }, + "_type": "jenkins", + "sort": [ + 1416858726839 + ] + }, + { + "_id": "RE3MuSgCTmWnTRtmbxROEQ", + "_index": "logstash-2014.11.24", + "_score": null, + "_source": { + "@timestamp": "2014-11-24T19:52:06.241+00:00", + "@version": "1", + "build_branch": "master", + "build_change": "135260", + "build_master": "jenkins06.openstack.org", + "build_name": "gate-nova-pylint", + "build_node": "bare-trusty-rax-dfw-33519", + "build_patchset": "6", + "build_queue": "check", + "build_ref": "refs/zuul/master/Zca33975e596e46c495c3a1581d9957ce", + "build_short_uuid": "f799b19", + "build_status": "FAILURE", + "build_uuid": "f799b199745d4dd3b9052eb3b5249a9b", + "error_pr": -7.8015, + "filename": "console.html", + "host": "127.0.0.1:56886", + "log_url": "http://logs.openstack.org/60/135260/6/check/gate-nova-pylint/f799b19/console.html", + "message": "Looks like the node went offline during the build. Check the slave log for the details.FATAL: /var/lib/jenkins/logs/slaves/bare-trusty-rax-dfw-33519/slave.log (No such file or directory)", + "project": "openstack/nova", + "received_at": "2014-11-24 19:52:14 UTC", + "tags": [ + "console.html", + "console" + ], + "type": "jenkins" + }, + "_type": "jenkins", + "sort": [ + 1416858726241 + ] + }, + { + "_id": "QvknAJr_SCmfrBf5_Tzxhw", + "_index": "logstash-2014.11.24", + "_score": null, + "_source": { + "@timestamp": "2014-11-24T19:51:58.893+00:00", + "@version": "1", + "build_branch": "master", + "build_change": "126330", + "build_master": "jenkins07.openstack.org", + "build_name": "gate-tempest-dsvm-src-oslo.messaging", + "build_node": "devstack-trusty-hpcloud-b2-31763", + "build_patchset": "14", + "build_queue": "check", + "build_ref": "refs/zuul/master/Zaab340acbd4d4db89fb3c35c45eea5c8", + "build_short_uuid": "f9d6b3e", + "build_status": "FAILURE", + "build_uuid": "f9d6b3eb3d434b2c8f84e175a87ba759", + "error_pr": -7.8106, + "filename": "console.html", + "host": "127.0.0.1:56886", + "log_url": "http://logs.openstack.org/30/126330/14/check/gate-tempest-dsvm-src-oslo.messaging/f9d6b3e/console.html", + "message": "Looks like the node went offline during the build. Check the slave log for the details.FATAL: /var/lib/jenkins/logs/slaves/devstack-trusty-hpcloud-b2-31763/slave.log (No such file or directory)", + "project": "openstack/oslo.messaging", + "received_at": "2014-11-24 19:52:19 UTC", + "tags": [ + "console.html", + "console" + ], + "type": "jenkins" + }, + "_type": "jenkins", + "sort": [ + 1416858718893 + ] + }, + { + "_id": "xZTylZ2lQcWbjHYZB2g_Kg", + "_index": "logstash-2014.11.24", + "_score": null, + "_source": { + "@timestamp": "2014-11-24T19:51:38.988+00:00", + "@version": "1", + "build_branch": "stable/icehouse", + "build_change": "136798", + "build_master": "jenkins02.openstack.org", + "build_name": "gate-tempest-dsvm-neutron-heat-slow", + "build_node": "devstack-precise-hpcloud-b2-32805", + "build_patchset": "1", + "build_queue": "gate", + "build_ref": "refs/zuul/stable/icehouse/Z4269010c2f514debbefaf0f459724ea5", + "build_short_uuid": "e7490c1", + "build_status": "FAILURE", + "build_uuid": "e7490c198a3043d48befdc652eb6b10c", + "error_pr": -7.7783, + "filename": "console.html", + "host": "127.0.0.1:56886", + "log_url": "http://logs.openstack.org/98/136798/1/gate/gate-tempest-dsvm-neutron-heat-slow/e7490c1/console.html", + "message": "Looks like the node went offline during the build. Check the slave log for the details.FATAL: /var/lib/jenkins/logs/slaves/devstack-precise-hpcloud-b2-32805/slave.log (No such file or directory)", + "project": "openstack/cinder", + "received_at": "2014-11-24 19:52:04 UTC", + "tags": [ + "console.html", + "console" + ], + "type": "jenkins" + }, + "_type": "jenkins", + "sort": [ + 1416858698988 + ] + }, + { + "_id": "xB7C39AwRvmIOfcHvvp7yw", + "_index": "logstash-2014.11.24", + "_score": null, + "_source": { + "@timestamp": "2014-11-24T19:49:19.437+00:00", + "@version": "1", + "build_branch": "master", + "build_change": "136596", + "build_master": "jenkins05.openstack.org", + "build_name": "check-tripleo-ironic-overcloud-f20-nonha", + "build_node": "tripleo-f20-tripleo-test-cloud-rh1-29699", + "build_patchset": "5", + "build_queue": "experimental-tripleo", + "build_ref": "refs/zuul/master/Zc9cd978ddf594ac28b054697f55e5d2f", + "build_short_uuid": "7b6c56e", + "build_status": "FAILURE", + "build_uuid": "7b6c56e5f25f412b92ebfa211c572cad", + "error_pr": -7.8283, + "filename": "console.html", + "host": "127.0.0.1:56902", + "log_url": "http://logs.openstack.org/96/136596/5/experimental-tripleo/check-tripleo-ironic-overcloud-f20-nonha/7b6c56e/console.html", + "message": "Looks like the node went offline during the build. Check the slave log for the details.FATAL: /var/lib/jenkins/logs/slaves/tripleo-f20-tripleo-test-cloud-rh1-29699/slave.log (No such file or directory)", + "project": "openstack-infra/devstack-gate", + "received_at": "2014-11-24 19:57:30 UTC", + "tags": [ + "console.html", + "console" + ], + "type": "jenkins" + }, + "_type": "jenkins", + "sort": [ + 1416858559437 + ] + }, + { + "_id": "tf2OTOFlSoaiNfhPUoLdhw", + "_index": "logstash-2014.11.24", + "_score": null, + "_source": { + "@timestamp": "2014-11-24T19:49:08.948+00:00", + "@version": "1", + "build_branch": "master", + "build_change": "136476", + "build_master": "jenkins05.openstack.org", + "build_name": "gate-neutron-python27", + "build_node": "bare-trusty-rax-ord-33471", + "build_patchset": "3", + "build_queue": "check", + "build_ref": "refs/zuul/master/Z4b1fae7ddd894d66a0527ae97d6120ad", + "build_short_uuid": "c39fa5c", + "build_status": "FAILURE", + "build_uuid": "c39fa5cd6ea64fe9bc198013bdab3149", + "filename": "console.html", + "host": "127.0.0.1:56902", + "log_url": "http://logs.openstack.org/76/136476/3/check/gate-neutron-python27/c39fa5c/console.html", + "message": "Looks like the node went offline during the build. Check the slave log for the details.FATAL: /var/lib/jenkins/logs/slaves/bare-trusty-rax-ord-33471/slave.log (No such file or directory)", + "project": "openstack/neutron", + "received_at": "2014-11-24 19:50:31 UTC", + "tags": [ + "console.html", + "console" + ], + "type": "jenkins" + }, + "_type": "jenkins", + "sort": [ + 1416858548948 + ] + }, + { + "_id": "IPAfhz4_T-eBUEICCanc5Q", + "_index": "logstash-2014.11.24", + "_score": null, + "_source": { + "@timestamp": "2014-11-24T19:48:55.688+00:00", + "@version": "1", + "build_branch": "master", + "build_change": "133857", + "build_master": "jenkins03.openstack.org", + "build_name": "check-tripleo-ironic-overcloud-f20-nonha", + "build_node": "tripleo-f20-tripleo-test-cloud-rh1-25366", + "build_patchset": "6", + "build_queue": "check-tripleo", + "build_ref": "refs/zuul/master/Zadc6f707c5504d809b001ccd1fb8c520", + "build_short_uuid": "a43e0b6", + "build_status": "FAILURE", + "build_uuid": "a43e0b65361344798762ce7b842e5221", + "error_pr": -7.7876, + "filename": "console.html", + "host": "127.0.0.1:56890", + "log_url": "http://logs.openstack.org/57/133857/6/check-tripleo/check-tripleo-ironic-overcloud-f20-nonha/a43e0b6/console.html", + "message": "Looks like the node went offline during the build. Check the slave log for the details.FATAL: /var/lib/jenkins/logs/slaves/tripleo-f20-tripleo-test-cloud-rh1-25366/slave.log (No such file or directory)", + "project": "openstack/os-cloud-config", + "received_at": "2014-11-24 19:57:52 UTC", + "tags": [ + "console.html", + "console" + ], + "type": "jenkins" + }, + "_type": "jenkins", + "sort": [ + 1416858535688 + ] + }, + { + "_id": "PfJZiix0QYesQpBvjbwviw", + "_index": "logstash-2014.11.24", + "_score": null, + "_source": { + "@timestamp": "2014-11-24T19:48:52.167+00:00", + "@version": "1", + "build_branch": "master", + "build_change": "113467", + "build_master": "jenkins07.openstack.org", + "build_name": "gate-neutron-python27", + "build_node": "bare-trusty-rax-iad-33598", + "build_patchset": "5", + "build_queue": "check", + "build_ref": "refs/zuul/master/Z14606041cf094e749d319139329602fa", + "build_short_uuid": "a7be53b", + "build_status": "FAILURE", + "build_uuid": "a7be53b5398f440ab2d09a0e8150abfa", + "filename": "console.html", + "host": "127.0.0.1:56890", + "log_url": "http://logs.openstack.org/67/113467/5/check/gate-neutron-python27/a7be53b/console.html", + "message": "Looks like the node went offline during the build. Check the slave log for the details.FATAL: /var/lib/jenkins/logs/slaves/bare-trusty-rax-iad-33598/slave.log (No such file or directory)", + "project": "openstack/neutron", + "received_at": "2014-11-24 19:49:56 UTC", + "tags": [ + "console.html", + "console" + ], + "type": "jenkins" + }, + "_type": "jenkins", + "sort": [ + 1416858532167 + ] + }, + { + "_id": "ecI0GbZSQ6uHQ3pNyEttSg", + "_index": "logstash-2014.11.24", + "_score": null, + "_source": { + "@timestamp": "2014-11-24T19:47:55.835+00:00", + "@version": "1", + "build_branch": "master", + "build_change": "136602", + "build_master": "jenkins03.openstack.org", + "build_name": "gate-neutron-python27", + "build_node": "bare-trusty-rax-iad-33626", + "build_patchset": "4", + "build_queue": "check", + "build_ref": "refs/zuul/master/Z425d7275d0274e54b164317731b9feb4", + "build_short_uuid": "d2bd58c", + "build_status": "FAILURE", + "build_uuid": "d2bd58c68e8e4063b136da2e6f9de0b3", + "filename": "console.html", + "host": "127.0.0.1:56886", + "log_url": "http://logs.openstack.org/02/136602/4/check/gate-neutron-python27/d2bd58c/console.html", + "message": "Looks like the node went offline during the build. Check the slave log for the details.FATAL: /var/lib/jenkins/logs/slaves/bare-trusty-rax-iad-33626/slave.log (No such file or directory)", + "project": "openstack/neutron", + "received_at": "2014-11-24 19:49:19 UTC", + "tags": [ + "console.html", + "console" + ], + "type": "jenkins" + }, + "_type": "jenkins", + "sort": [ + 1416858475835 + ] + }, + { + "_id": "j59Fzmn6RueCYEPMgKA1Yg", + "_index": "logstash-2014.11.24", + "_score": null, + "_source": { + "@timestamp": "2014-11-24T19:47:34.966+00:00", + "@version": "1", + "build_branch": "master", + "build_change": "136603", + "build_master": "jenkins07.openstack.org", + "build_name": "gate-neutron-python27", + "build_node": "bare-trusty-rax-dfw-33128", + "build_patchset": "3", + "build_queue": "check", + "build_ref": "refs/zuul/master/Z106adfe7591a4b189b68c71d96a1f0ba", + "build_short_uuid": "74f9a22", + "build_status": "FAILURE", + "build_uuid": "74f9a22bfcef4eccad2dca5ea7bb805d", + "filename": "console.html", + "host": "127.0.0.1:56890", + "log_url": "http://logs.openstack.org/03/136603/3/check/gate-neutron-python27/74f9a22/console.html", + "message": "Looks like the node went offline during the build. Check the slave log for the details.FATAL: /var/lib/jenkins/logs/slaves/bare-trusty-rax-dfw-33128/slave.log (No such file or directory)", + "project": "openstack/neutron", + "received_at": "2014-11-24 19:48:32 UTC", + "tags": [ + "console.html", + "console" + ], + "type": "jenkins" + }, + "_type": "jenkins", + "sort": [ + 1416858454966 + ] + }, + { + "_id": "fgXq3WHNS6eeeSgPI3RgsA", + "_index": "logstash-2014.11.24", + "_score": null, + "_source": { + "@timestamp": "2014-11-24T19:47:03.327+00:00", + "@version": "1", + "build_branch": "master", + "build_change": "128259", + "build_master": "jenkins03.openstack.org", + "build_name": "check-tempest-dsvm-neutron-pg-full", + "build_node": "devstack-trusty-hpcloud-b1-32792", + "build_patchset": "7", + "build_queue": "check", + "build_ref": "refs/zuul/master/Zc79fbefc22984ee8b37c732bc5cb9088", + "build_short_uuid": "14bb95d", + "build_status": "FAILURE", + "build_uuid": "14bb95d19c604103bd7ae43ed4bf6009", + "filename": "console.html", + "host": "127.0.0.1:56902", + "log_url": "http://logs.openstack.org/59/128259/7/check/check-tempest-dsvm-neutron-pg-full/14bb95d/console.html", + "message": "Looks like the node went offline during the build. Check the slave log for the details.FATAL: /var/lib/jenkins/logs/slaves/devstack-trusty-hpcloud-b1-32792/slave.log (No such file or directory)", + "project": "openstack/neutron", + "received_at": "2014-11-24 19:48:31 UTC", + "tags": [ + "console.html", + "console" + ], + "type": "jenkins" + }, + "_type": "jenkins", + "sort": [ + 1416858423327 + ] + }, + { + "_id": "SaZ82J_bSByMFmoqmgmtHQ", + "_index": "logstash-2014.11.24", + "_score": null, + "_source": { + "@timestamp": "2014-11-24T19:47:01.321+00:00", + "@version": "1", + "build_branch": "master", + "build_change": "135757", + "build_master": "jenkins02.openstack.org", + "build_name": "check-tripleo-ironic-overcloud-f20-nonha", + "build_node": "tripleo-f20-tripleo-test-cloud-rh1-32559", + "build_patchset": "3", + "build_queue": "check-tripleo", + "build_ref": "refs/zuul/master/Z22ee58dbfbc04db7b293dd5485bc3c59", + "build_short_uuid": "4888a1a", + "build_status": "FAILURE", + "build_uuid": "4888a1a191fc4fdda2862104371c4f13", + "filename": "console.html", + "host": "127.0.0.1:41021", + "log_url": "http://logs.openstack.org/57/135757/3/check-tripleo/check-tripleo-ironic-overcloud-f20-nonha/4888a1a/console.html", + "message": "Looks like the node went offline during the build. Check the slave log for the details.FATAL: /var/lib/jenkins/logs/slaves/tripleo-f20-tripleo-test-cloud-rh1-32559/slave.log (No such file or directory)", + "project": "openstack/diskimage-builder", + "received_at": "2014-11-24 19:49:40 UTC", + "tags": [ + "console.html", + "console" + ], + "type": "jenkins" + }, + "_type": "jenkins", + "sort": [ + 1416858421321 + ] + }, + { + "_id": "7CzTvUQMRe6hJbP6jdAuXw", + "_index": "logstash-2014.11.24", + "_score": null, + "_source": { + "@timestamp": "2014-11-24T19:46:07.188+00:00", + "@version": "1", + "build_branch": "stable/icehouse", + "build_change": "136798", + "build_master": "jenkins03.openstack.org", + "build_name": "gate-devstack-dsvm-cells", + "build_node": "devstack-precise-hpcloud-b4-32897", + "build_patchset": "1", + "build_queue": "gate", + "build_ref": "refs/zuul/stable/icehouse/Z4269010c2f514debbefaf0f459724ea5", + "build_short_uuid": "cc53cf9", + "build_status": "FAILURE", + "build_uuid": "cc53cf9868364606ace2b741015a646e", + "error_pr": -7.8266, + "filename": "console.html", + "host": "127.0.0.1:56890", + "log_url": "http://logs.openstack.org/98/136798/1/gate/gate-devstack-dsvm-cells/cc53cf9/console.html", + "message": "Looks like the node went offline during the build. Check the slave log for the details.FATAL: /var/lib/jenkins/logs/slaves/devstack-precise-hpcloud-b4-32897/slave.log (No such file or directory)", + "project": "openstack/cinder", + "received_at": "2014-11-24 19:46:36 UTC", + "tags": [ + "console.html", + "console" + ], + "type": "jenkins" + }, + "_type": "jenkins", + "sort": [ + 1416858367188 + ] + }, + { + "_id": "uiMbVoEBTaKIVB6jWF092w", + "_index": "logstash-2014.11.24", + "_score": null, + "_source": { + "@timestamp": "2014-11-24T19:45:51.001+00:00", + "@version": "1", + "build_branch": "master", + "build_change": "136541", + "build_master": "jenkins06.openstack.org", + "build_name": "gate-openstack-manuals-tox-checklang", + "build_node": "bare-trusty-rax-ord-33465", + "build_patchset": "5", + "build_queue": "check", + "build_ref": "refs/zuul/master/Zb159ea955678404698b2b4003005c40d", + "build_short_uuid": "28a2d25", + "build_status": "FAILURE", + "build_uuid": "28a2d256ec504b919a75ee4cb3ec0244", + "error_pr": -7.8215, + "filename": "console.html", + "host": "127.0.0.1:56890", + "log_url": "http://logs.openstack.org/41/136541/5/check/gate-openstack-manuals-tox-checklang/28a2d25/console.html", + "message": "Looks like the node went offline during the build. Check the slave log for the details.FATAL: /var/lib/jenkins/logs/slaves/bare-trusty-rax-ord-33465/slave.log (No such file or directory)", + "project": "openstack/openstack-manuals", + "received_at": "2014-11-24 19:46:03 UTC", + "tags": [ + "console.html", + "console" + ], + "type": "jenkins" + }, + "_type": "jenkins", + "sort": [ + 1416858351001 + ] + }, + { + "_id": "g_nXcmDFTJSwXmyrfpqj0A", + "_index": "logstash-2014.11.24", + "_score": null, + "_source": { + "@timestamp": "2014-11-24T19:43:28.210+00:00", + "@version": "1", + "build_branch": "master", + "build_change": "136529", + "build_master": "jenkins06.openstack.org", + "build_name": "check-tempest-dsvm-neutron-full-2", + "build_node": "devstack-trusty-rax-ord-32931", + "build_patchset": "1", + "build_queue": "check", + "build_ref": "refs/zuul/master/Z64202b4049564526b8f89cfd09c672a2", + "build_short_uuid": "6bfc669", + "build_status": "FAILURE", + "build_uuid": "6bfc669ef455459ab37f3ac1c1696953", + "error_pr": -7.694, + "filename": "console.html", + "host": "127.0.0.1:56890", + "log_url": "http://logs.openstack.org/29/136529/1/check/check-tempest-dsvm-neutron-full-2/6bfc669/console.html", + "message": "Looks like the node went offline during the build. Check the slave log for the details.FATAL: /var/lib/jenkins/logs/slaves/devstack-trusty-rax-ord-32931/slave.log (No such file or directory)", + "project": "openstack/neutron", + "received_at": "2014-11-24 19:44:06 UTC", + "tags": [ + "console.html", + "console" + ], + "type": "jenkins" + }, + "_type": "jenkins", + "sort": [ + 1416858208210 + ] + }, + { + "_id": "F1ocbrzMTyeJHKno3aYHoA", + "_index": "logstash-2014.11.24", + "_score": null, + "_source": { + "@timestamp": "2014-11-24T19:43:27.114+00:00", + "@version": "1", + "build_branch": "master", + "build_change": "129256", + "build_master": "jenkins04.openstack.org", + "build_name": "gate-keystone-python27", + "build_node": "bare-trusty-hpcloud-b2-32817", + "build_patchset": "1", + "build_queue": "check", + "build_ref": "refs/zuul/master/Zabbc69cd3ac8470e9fa6a3faaa9d01f8", + "build_short_uuid": "2808b7f", + "build_status": "FAILURE", + "build_uuid": "2808b7f043d24299add15c8b5f63f4ab", + "error_pr": -7.7709, + "filename": "console.html", + "host": "127.0.0.1:56890", + "log_url": "http://logs.openstack.org/56/129256/1/check/gate-keystone-python27/2808b7f/console.html", + "message": "Looks like the node went offline during the build. Check the slave log for the details.FATAL: /var/lib/jenkins/logs/slaves/bare-trusty-hpcloud-b2-32817/slave.log (No such file or directory)", + "project": "openstack/keystone", + "received_at": "2014-11-24 19:43:57 UTC", + "tags": [ + "console.html", + "console" + ], + "type": "jenkins" + }, + "_type": "jenkins", + "sort": [ + 1416858207114 + ] + } + ], + "max_score": null, + "total": 353 + }, + "kibana": { + "curl_call": "curl -XGET http://elasticsearch02.openstack.org:9200/logstash-2014.11.25/_search?pretty -d '{\n \"from\": 0,\n \"query\": {\n \"filtered\": {\n \"query\": {\n \"query_string\": {\n \"default_operator\": \"OR\",\n \"default_field\": \"message\",\n \"query\": \"message:\\\"Looks like the node went offline during the build\\\" AND message:\\\"slave.log \\\\(No such file or directory\\\\)\\\" AND tags:\\\"console.html\\\"\\n\"\n }\n },\n \"filter\": {\n \"range\": {\n \"@timestamp\": {\n \"from\": \"2014-11-15T22:04:23+00:00\",\n \"to\": \"2014-11-25T22:04:23+00:00\"\n }\n }\n }\n }\n },\n \"sort\": {\n \"@timestamp\": {\n \"order\": \"desc\"\n }\n },\n \"size\": 500\n}'", + "default_fields": [ + "message" + ], + "index": [ + "logstash-2014.11.25", + "logstash-2014.11.24", + "logstash-2014.11.23", + "logstash-2014.11.22", + "logstash-2014.11.21", + "logstash-2014.11.20", + "logstash-2014.11.19", + "logstash-2014.11.18", + "logstash-2014.11.17", + "logstash-2014.11.16", + "logstash-2014.11.15" + ], + "per_page": 500, + "time": { + "from": "2014-11-15T22:04:23+00:00", + "to": "2014-11-25T22:04:23+00:00" + } + }, + "timed_out": false, + "took": 1735 +} diff --git a/elastic_recheck/tests/unit/queries/1284371.yaml b/elastic_recheck/tests/unit/queries/1284371.yaml new file mode 100644 index 00000000..a28197a8 --- /dev/null +++ b/elastic_recheck/tests/unit/queries/1284371.yaml @@ -0,0 +1,4 @@ +query: > + message:"Looks like the node went offline during the build" + AND message:"slave.log \(No such file or directory\)" + AND filename:"console.html" diff --git a/elastic_recheck/tests/unit/test_query.py b/elastic_recheck/tests/unit/test_query.py new file mode 100644 index 00000000..040188b2 --- /dev/null +++ b/elastic_recheck/tests/unit/test_query.py @@ -0,0 +1,51 @@ +# Licensed under the Apache License, Version 2.0 (the "License"); you may +# not use this file except in compliance with the License. You may obtain +# a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT +# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the +# License for the specific language governing permissions and limitations +# under the License. + +import json +import StringIO +import sys + +import mock + +from elastic_recheck.cmd import query +from elastic_recheck.tests import unit + + +class FakeResponse(object): + def __init__(self, response_text): + super(FakeResponse, self).__init__() + self.text = response_text + self.status_code = 200 + + def json(self): + return json.loads(self.text) + + +class TestQueryCmd(unit.UnitTestCase): + def setUp(self): + super(TestQueryCmd, self).setUp() + self._stdout = sys.stdout + sys.stdout = StringIO.StringIO() + + def tearDown(self): + super(TestQueryCmd, self).tearDown() + sys.stdout = self._stdout + + def test_query(self): + with open('elastic_recheck/tests/unit/logstash/1284371.analysis') as f: + expected_stdout = f.read() + with mock.patch('requests.get') as mock_get: + with open('elastic_recheck/tests/unit/logstash/1284371.json') as f: + mock_get.return_value = FakeResponse(f.read()) + query.query('elastic_recheck/tests/unit/queries/1284371.yaml') + sys.stdout.seek(0) + self.assertEqual(expected_stdout, sys.stdout.read()) diff --git a/setup.cfg b/setup.cfg index f75ae4a2..624c4236 100644 --- a/setup.cfg +++ b/setup.cfg @@ -31,6 +31,7 @@ console_scripts = elastic-recheck-graph = elastic_recheck.cmd.graph:main elastic-recheck-success = elastic_recheck.cmd.check_success:main elastic-recheck-uncategorized = elastic_recheck.cmd.uncategorized_fails:main + elastic-recheck-query = elastic_recheck.cmd.query:main [build_sphinx] source-dir = doc/source