Monasca REST API
Go to file
Martin Chacon Piza 0b7dc58296 Migrate from ujson to simplejson
The change updates the imports to use simplejson library and
monasca_api.common.rest instead of monasca_common.rest, since
it was moved to this project during the API's merge.

Temporarily set following jobs as non-voting:

* monasca-tempest-python3-influxdb
* build-monasca-docker-image
* publish-monasca-api-docker-image

Change-Id: Ife3d2c9795a9dc406c2927cc9a077dda01c183c6
Story: 2007549
Task: 39389
2020-04-18 10:28:24 +02:00
api-ref Bump the openstackdocstheme extension to 1.20 2019-08-01 10:13:52 +08:00
common Restore user condition but with zuul 2017-10-19 06:08:28 +02:00
config-generator Add keystonemiddleware to oslo-config-generator conf 2019-01-28 16:11:51 +01:00
contrib Remove bundled intree monasca-api tempest plugin 2018-01-31 11:50:16 +05:30
devstack Merge "Set DEBUG log level for Elastisearch" 2020-02-11 15:14:07 +00:00
doc Merge "Add Reviews Prioritisation section" 2019-10-09 16:13:27 +00:00
docker Adjust docker image to support new configuration option 2019-12-09 13:55:30 +01:00
docs Fix invalid list of notification types in API spec 2020-01-14 11:39:24 +00:00
etc Update devstack plugin to support new api 2019-12-04 13:52:57 +01:00
java [Trivial Fix] change the unicode of some higher numbered characters 2018-09-07 08:44:04 +08:00
monasca_api Migrate from ujson to simplejson 2020-04-18 10:28:24 +02:00
perf Add read performance testing to monasca-api 2018-01-25 08:18:13 -08:00
playbooks Fix docker hub login variable 2019-02-20 08:43:00 +01:00
releasenotes Merge "Upgrade Elkstack in new API" 2020-01-20 10:51:00 +00:00
tools Avoid tox_install.sh for constraints support 2017-12-01 15:37:36 +01:00
.coveragerc Migrate test run to ostestr 2017-01-14 19:47:29 +00:00
.gitignore Merge log-api and api 2019-09-26 12:02:20 +02:00
.gitreview OpenDev Migration Patch 2019-04-19 19:29:15 +00:00
.stestr.conf Add .stestr.conf . 2017-09-22 13:41:11 +02:00
.testr.conf Migrate test run to ostestr 2017-01-14 19:47:29 +00:00
.zuul.yaml Migrate from ujson to simplejson 2020-04-18 10:28:24 +02:00
LICENSE Added license file 2014-05-01 16:22:11 -07:00
README.rst [ussuri][goal] Drop python 2.7 support and testing 2019-12-10 13:58:58 +01:00
babel.cfg initial python implementation 2014-09-15 13:18:10 -04:00
bindep.txt Add libssl to fix pep8 2017-06-07 15:54:02 -06:00
lower-constraints.txt Migrate from ujson to simplejson 2020-04-18 10:28:24 +02:00
pom.xml Update links in pom.xml 2018-01-12 16:27:30 +08:00
requirements.txt Migrate from ujson to simplejson 2020-04-18 10:28:24 +02:00
run_maven.sh Ensure the same branch is used for common build 2016-02-10 09:11:02 -07:00
setup.cfg [ussuri][goal] Drop python 2.7 support and testing 2019-12-10 13:58:58 +01:00
setup.py Updated from global requirements 2017-03-02 11:47:00 +00:00
test-requirements.txt [ussuri][goal] Drop python 2.7 support and testing 2019-12-10 13:58:58 +01:00
tox.ini [ussuri][goal] Drop python 2.7 support and testing 2019-12-10 13:58:58 +01:00

README.rst

Team and repository tags

image

Overview

monasca-api is a RESTful API server that is designed with a layered architecture.

Documentation

The full API Specification can be found in docs/monasca-api-spec.md

Python Monasca API Implementation

To install the python api implementation, git clone the source and run the following command:

$ sudo python setup.py install

If it installs successfully, you will need to make changes to the following two files to reflect your system settings, especially where kafka server is located:

/etc/monasca/api-config.ini
/etc/monasca/monasca-api.conf
/etc/monasca/api-logging.conf

Once the configuration files are modified to match your environment, you can start up the server by following the following instructions.

To start the server, run the following command:

Running the server in foreground mode
$ gunicorn -k eventlet --worker-connections=2000 --backlog=1000 --paste /etc/monasca/api-config.ini

Running the server as daemons
$ gunicorn -k eventlet --worker-connections=2000 --backlog=1000 --paste /etc/monasca/api-config.ini -D

To check if the code follows python coding style, run the following command from the root directory of this project

$ tox -e pep8

To run all the unit test cases, run the following command from the root directory of this project

$ tox -e py36

Start the Server - for Apache

To start the server using Apache: create a modwsgi file, create a modwsgi configuration file, and enable the wsgi module in Apache.

The modwsgi configuration file may look something like this, and the site will need to be enabled:

Listen 8070

<VirtualHost *:8070>

    WSGIDaemonProcess monasca-api processes=4 threads=1 socket-timeout=120 user=mon-api group=monasca python-path=/usr/local/lib/python2.7/site-packages
    WSGIProcessGroup monasca-api
    WSGIApplicationGroup monasca-api
    WSGIScriptAlias / /usr/local/lib/python2.7/site-packages/monasca_api/api/wsgi/monasca_api.py

    WSGIPassAuthorization On

    LogLevel info
    ErrorLog /var/log/monasca-api/wsgi.log
    CustomLog /var/log/monasca-api/wsgi-access.log combined

    <Directory /usr/local/lib/python2.7/site-packages/monasca_api>
      Require all granted
    </Directory>

    SetEnv no-gzip 1

</VirtualHost>

The wsgi file may look something like this:

from monasca_api.api import server

application = server.get_wsgi_app(config_base_path='/etc/monasca')

Java Implementation

Details on usage can be found here

WARNING: The Java implementation of Monasca API is DEPRECATED and will be removed in future release.

License

Copyright (c) 2014 Hewlett-Packard Development Company, L.P.

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.