Monasca REST API
Go to file
hochmuth 248ec1dbc3 Update README.md 2014-05-08 15:34:48 -06:00
src Added copyright and license to README.md 2014-05-08 15:23:23 -06:00
.gitignore updated pom with Debian code to produce .deb file 2014-03-07 10:56:12 -05:00
LICENSE Added license file 2014-05-01 16:22:11 -07:00
README.md Update README.md 2014-05-08 15:34:48 -06:00
pom.xml Update to build 51 of mon-common so MetricEnvelope gets a timestamp before sending on the Kafka queue 2014-05-08 15:14:08 -06:00

README.md

Overview

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

Usage

mvn package
java -jar target/mon-api.jar server config-file.yml

Design Overview

Architectural layers

Requests flow through the following architectural layers from top to bottom:

  • Resource
    • Serves as the entrypoint into the service.
    • Responsible for handling web service requests, and performing structural request validation.
  • Application
    • Responsible for providing application level implementations for specific use cases.
  • Domain
    • Contains the technology agnostic core domain model and domain service definitions.
    • Responsible for upholding invariants and defining state transitions.
  • Infrastructure
    • Contains technology specific implementations of domain services.

Documentation

When running mon-api the API docs along with the API test interface can be accessed via:

http://localhost:8080/swagger-ui/

Note: the trailing "/" is necessary for the Swagger UI to work properly.

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.