summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohn L. Villalovos <john.l.villalovos@intel.com>2017-01-25 13:42:16 -0800
committerJohn L. Villalovos <john.l.villalovos@intel.com>2017-01-27 09:08:05 -0800
commit7be5d3651d97b7254326aad9d0085e170a0f5f1a (patch)
tree0e2f19753abe813566289b32f4079244d4ae102f
parenteff27157f23f31ba4a096eb783410cfd529d5fac (diff)
downloadironic-7be5d3651d97b7254326aad9d0085e170a0f5f1a.tar.gz
Devstack: Create a "no ansi" logfile for the baremetal console logs
In addition to the normal bare-metal console logs that devstack generates, create a "no ansi" version of the log that will be easier to view/parse when viewing the logfiles. Conflicts: tools/run_bashate.sh Change-Id: Ic321db38f694d82362a6b1be91f891a06fb18c11 (cherry picked from commit b1b86b64175e7e82f979744dcccb4fe19b0e26c9)
-rwxr-xr-xdevstack/files/hooks/qemu13
-rwxr-xr-xdevstack/files/hooks/qemu.py102
-rw-r--r--devstack/lib/ironic2
3 files changed, 103 insertions, 14 deletions
diff --git a/devstack/files/hooks/qemu b/devstack/files/hooks/qemu
deleted file mode 100755
index 974a8877c..000000000
--- a/devstack/files/hooks/qemu
+++ /dev/null
@@ -1,13 +0,0 @@
-#!/bin/bash
-
-VM_LOG=%LOG_DIR%/$1
-VM_ACTION=$2
-
-if [ $VM_ACTION = "release" ]; then
- if [ ! -f "${VM_LOG}_console.log" ]; then
- return 0
- fi
-
- NOW=$(date +"%d-%m-%Y-%H:%M:%S")
- mv "${VM_LOG}_console.log" "${VM_LOG}_console_${NOW}.log"
-fi
diff --git a/devstack/files/hooks/qemu.py b/devstack/files/hooks/qemu.py
new file mode 100755
index 000000000..2e21d7e12
--- /dev/null
+++ b/devstack/files/hooks/qemu.py
@@ -0,0 +1,102 @@
+#!/usr/bin/python -tt
+
+# Copyright (c) 2017 Intel Corporation
+#
+# 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 datetime
+import os
+import re
+import sys
+
+# This script is run as a libvirt hook.
+# More information here: https://libvirt.org/hooks.html
+
+# The devstack/lib/ironic script in function setup_qemu_log_hook() will replace
+# LOG_DIR with the correct location. And will place the script into the correct
+# directory.
+VM_LOG_DIR = os.path.abspath("%LOG_DIR%")
+
+# Regular expression to find ANSI escape sequences at the beginning of a string
+ANSI_ESCAPE_RE = re.compile(r"""
+ ^\x1b\[ # ANSI escape codes are ESC (0x1b) [
+ ?([\d;]*)(\w)""", re.VERBOSE)
+
+NOW = datetime.datetime.now().strftime("%Y-%m-%d-%H:%M:%S")
+
+
+def main():
+ if len(sys.argv) < 3:
+ return
+
+ guest_name = sys.argv[1]
+ action = sys.argv[2]
+
+ if action != "release":
+ return
+
+ if not console_log_exists(guest_name):
+ return
+
+ new_path = move_console_log(guest_name)
+ if not new_path:
+ return
+
+ no_ansi_filename = "{}_no_ansi_{}.log".format(guest_name, NOW)
+ no_ansi_path = os.path.join(VM_LOG_DIR, no_ansi_filename)
+ create_no_ansi_file(new_path, no_ansi_path)
+
+
+def create_no_ansi_file(source_filename, dest_filename):
+ with open(source_filename) as in_file:
+ data = in_file.read()
+
+ data = remove_ansi_codes(data)
+
+ with open(dest_filename, 'w') as out_file:
+ out_file.write(data)
+
+
+def get_console_log_path(guest_name):
+ logfile_name = "{}_console.log".format(guest_name)
+ return os.path.join(VM_LOG_DIR, logfile_name)
+
+
+def console_log_exists(guest_name):
+ return os.path.isfile(get_console_log_path(guest_name))
+
+
+def move_console_log(guest_name):
+ new_logfile_name = "{}_console_{}.log".format(guest_name, NOW)
+ new_path = os.path.join(VM_LOG_DIR, new_logfile_name)
+ if os.path.exists(new_path):
+ return False
+ os.rename(get_console_log_path(guest_name), new_path)
+ return new_path
+
+
+def remove_ansi_codes(data):
+ """Remove any ansi codes from the provided string"""
+ output = ''
+ while data:
+ result = ANSI_ESCAPE_RE.match(data)
+ if not result:
+ output += data[0]
+ data = data[1:]
+ else:
+ data = data[result.end():]
+ return output
+
+
+if '__main__' == __name__:
+ sys.exit(main())
diff --git a/devstack/lib/ironic b/devstack/lib/ironic
index 18f8e8c06..34d8edfac 100644
--- a/devstack/lib/ironic
+++ b/devstack/lib/ironic
@@ -950,7 +950,7 @@ function setup_qemu_log_hook {
sudo mkdir -p $IRONIC_LIBVIRT_HOOKS_PATH
# Copy the qemu hook to the right directory
- sudo cp $IRONIC_DEVSTACK_FILES_DIR/hooks/qemu $IRONIC_LIBVIRT_HOOKS_PATH/qemu
+ sudo cp $IRONIC_DEVSTACK_FILES_DIR/hooks/qemu.py $IRONIC_LIBVIRT_HOOKS_PATH/qemu
sudo chmod -v +x $IRONIC_LIBVIRT_HOOKS_PATH/qemu
sudo sed -e "
s|%LOG_DIR%|$IRONIC_VM_LOG_DIR|g;