8ffac8794d
Change-Id: I87a54972774870aa705bd0948dfa7582c8ac634d
84 lines
3.0 KiB
Python
84 lines
3.0 KiB
Python
# (C) Copyright Broadcom Corporation 2016
|
|
#
|
|
# 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 broadviewpublisherbase import BroadViewPublisherBase
|
|
from monascaclient import client
|
|
import monascaclient.exc as exc
|
|
from broadview_collector.serializers.bst_to_monasca import BSTToMonasca
|
|
import json
|
|
import ConfigParser
|
|
|
|
from oslo_log import log
|
|
|
|
LOG = log.getLogger(__name__)
|
|
|
|
class BroadViewPublisher(BroadViewPublisherBase):
|
|
|
|
def readConfig(self):
|
|
try:
|
|
bvcfg = ConfigParser.ConfigParser()
|
|
bvcfg.read("/etc/broadviewcollector.conf")
|
|
self._endpoint = bvcfg.get("monasca", "endpoint")
|
|
self._username = bvcfg.get("monasca", "username")
|
|
self._password = bvcfg.get("monasca", "password")
|
|
self._project_name = bvcfg.get("monasca", "project_name")
|
|
self._auth_url = bvcfg.get("monasca", "auth_url")
|
|
self._endpoint = bvcfg.get("monasca", "endpoint")
|
|
self._api_version = bvcfg.get("monasca", "api_version")
|
|
except:
|
|
LOG.error("BroadViewPublisher: unable to read configuration")
|
|
|
|
def __init__(self):
|
|
|
|
self.readConfig()
|
|
|
|
try:
|
|
self._auth_kwargs = {
|
|
'username': self._username,
|
|
'password': self._password,
|
|
'auth_url': self._auth_url,
|
|
'project_name': self._project_name,
|
|
}
|
|
|
|
|
|
self._monasca_client = client.Client(self._api_version, \
|
|
self._endpoint, \
|
|
**self._auth_kwargs)
|
|
except:
|
|
LOG.error("BroadViewPublisher: failed to parse config")
|
|
self._monasca_client = None
|
|
|
|
def publish(self, data):
|
|
code = 500
|
|
if self._monasca_client:
|
|
code = 200
|
|
success, sdata = BSTToMonasca().serialize(data)
|
|
sdata = json.loads(sdata)
|
|
if success:
|
|
for x in sdata:
|
|
try:
|
|
resp = self._monasca_client.metrics.create(**x)
|
|
if not resp.status_code == 200 and not resp.status_code == 204:
|
|
code = resp.status_code
|
|
break
|
|
except exc.HTTPException as he:
|
|
LOG.error('HTTPException code=%s message=%s' % (he.code, he.message))
|
|
code = he.code
|
|
break
|
|
return code
|
|
|
|
def __repr__(self):
|
|
return "BroadView Monasca Publisher {_endpoint} {_api_version}".format(**__dict__(self))
|
|
|