c2aeb03b10
Since there is no central storage for the restart actions and the tests at the moment, they should have timestamped output to correlate events. Using a standard format will make this easier to do programmatically, too. The output is sent both to stdout and a log file. Additionally, Ansible output is suppressed now, so it doesn't pollute the console. Log times are in UTC, to avoid timezone mismatches between nodes (observed in multi-node AIOs). The `configure_logging` function was copied into the tests/keystone.py file instead of put into a common module in order to keep that file a standalone unit for the time being. Change-Id: I399d1827a8559896ca87e45c00241293ccd033d2
87 lines
2.7 KiB
Python
87 lines
2.7 KiB
Python
#!/usr/bin/env python
|
|
# Copyright 2017, Rackspace US, Inc.
|
|
#
|
|
# 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.
|
|
#
|
|
# (c) 2017, Nolan Brubaker <nolan.brubaker@rackspace.com>
|
|
|
|
import datetime
|
|
from keystoneauth1.identity import v3
|
|
from keystoneauth1 import session
|
|
from keystoneauth1.exceptions.connection import ConnectFailure
|
|
from keystoneauth1.exceptions.http import InternalServerError
|
|
from keystoneclient.v3 import client
|
|
import logging
|
|
import os
|
|
import sys
|
|
import time
|
|
|
|
logger = logging.getLogger(__name__)
|
|
|
|
|
|
def configure_logging():
|
|
logger.setLevel(logging.INFO)
|
|
console = logging.StreamHandler()
|
|
logfile = logging.FileHandler('/var/log/keystone_query.log', 'a')
|
|
|
|
console.setLevel(logging.INFO)
|
|
logfile.setLevel(logging.INFO)
|
|
|
|
formatter = logging.Formatter('%(asctime)s - %(levelname)s - %(message)s')
|
|
# Make sure we're using UTC for everything.
|
|
formatter.converter = time.gmtime
|
|
|
|
console.setFormatter(formatter)
|
|
logfile.setFormatter(formatter)
|
|
|
|
logger.addHandler(console)
|
|
logger.addHandler(logfile)
|
|
|
|
configure_logging()
|
|
|
|
auth_url = os.environ['OS_AUTH_URL']
|
|
password = os.environ['OS_PASSWORD']
|
|
|
|
auth = v3.Password(auth_url=auth_url, username="admin",
|
|
password=password, project_name="admin",
|
|
user_domain_id="default", project_domain_id="default")
|
|
|
|
disconnected = None
|
|
try:
|
|
while True:
|
|
try:
|
|
# Pause for a bit so we're not generating more data than we
|
|
# can handle
|
|
time.sleep(1)
|
|
start_time = datetime.datetime.now()
|
|
|
|
sess = session.Session(auth=auth)
|
|
keystone = client.Client(session=sess)
|
|
keystone.projects.list()
|
|
|
|
end_time = datetime.datetime.now()
|
|
|
|
if disconnected:
|
|
dis_delta = end_time - disconnected
|
|
disconnected = None
|
|
logger.info("Reconnect {}s".format(dis_delta.total_seconds()))
|
|
|
|
delta = end_time - start_time
|
|
|
|
logger.info("New list: {}s.".format(delta.total_seconds()))
|
|
except (ConnectFailure, InternalServerError):
|
|
if not disconnected:
|
|
disconnected = datetime.datetime.now()
|
|
except KeyboardInterrupt:
|
|
sys.exit()
|