Convert keystone checks in python

This commit is contained in:
Mehdi Abaakouk 2014-09-10 13:05:20 +02:00
parent 38e24b36ff
commit 6c53a8fbeb
3 changed files with 45 additions and 0 deletions

View File

@ -0,0 +1,44 @@
#!/usr/bin/env python
# -*- encoding: utf-8 -*-
# Openstack Monitoring script for Sensu / Nagios
#
# Copyright © 2013-2014 eNovance <licensing@enovance.com>
#
# Author:Mehdi Abaakouk <mehdi.abaakouk@enovance.com>
#
# 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.
from oschecks import utils
def check_keystone_api():
keystone = utils.Keystone()
def check_token():
options, args, client = keystone.setup()
return client.service_catalog.get_token()
elapsed, token = utils.timeit(check_token)
if not token:
utils.critical("Unable to get a token")
if elapsed > 10:
utils.warning("Got a token after 10 seconds, it's too long."
"|response_time=%s" % elapsed)
else:
utils.ok("Got a token, Keystone API is working."
"|response_time=%s" % elapsed)
if __name__ == '__main__':
utils.safe_run(check_keystone_api)

1
scripts/keystone/oschecks Symbolic link
View File

@ -0,0 +1 @@
../oschecks