nfv/nfv/nfv-common/nfv_common/event_log/_event_log_module.py
Al Bailey 65a8eca8e1 Clean up imports based on flake8
A number of changes were done to the imports in the files.
 - Clean up flake8 H301 multiple imports per line
 - Remove noqa from top of files, allowing flake8 to run
on all files.
 - Clean up relative imports in most places. This will
simplify python3 support later.
 - Partially sort the imports. A later commit will
enable that check since doing that here would have made
the changeset even bigger.

Story: 2003499
Task: 26561
Change-Id: Id5f95559f0d4604f4db1a1d74098063fd510142c
Signed-off-by: Al Bailey <Al.Bailey@windriver.com>
2018-09-20 16:43:28 -05:00

38 lines
895 B
Python
Executable File

#
# Copyright (c) 2015-2016 Wind River Systems, Inc.
#
# SPDX-License-Identifier: Apache-2.0
#
def event_log(log_data):
"""
Log a particular event
"""
from nfv_common.event_log._event_log_thread import EventLogThread
EventLogThread().log(log_data)
def event_log_subsystem_sane():
"""
Returns true if the event log subsystem is healthy
"""
from nfv_common.event_log._event_log_thread import EventLogThread
return 600 >= EventLogThread().stall_elapsed_secs
def event_log_initialize(config):
"""
Initialize the event log subsystem
"""
from nfv_common.event_log._event_log_thread import EventLogThread
EventLogThread(config).start()
def event_log_finalize():
"""
Finalize the event log subsystem
"""
from nfv_common.event_log._event_log_thread import EventLogThread
EventLogThread().stop(max_wait_in_seconds=5)