GithubHelp home page GithubHelp logo

monitoring's Introduction

Service Monitoring Tool

REST API monitoring service app with JWT-token based Authentication/Authorization


Summary

  1. Service implemented, delivered and working according to the requirements
  2. Total time spent approx. ~20...30 hours (can't figure out on exact time, few days in a raw, couple of hours per day)
  3. Some extras, like Swagger (not specified, but nice to have) might be added, but haven't because of lack of time
  4. Testing (Unit/Integration) is missing, because of lack of time, but can be added as well
  5. All endpoints / logic were manually tested/verified to meet the requirements/specification

This repo contains:

  • Spring Boot Web app, with Maven, Lombok, etc.
  • Spring Boot Data JPA starter
    • Using MySQL
  • Spring Boot Security (JWT-token)
  • REST API - controllers/services/repositories/models for:
    • Services (CRUD)
    • Authentication
  • Pooling config & logic - to get service's state

Drawbacks

  1. Unit / Integration tests are missing (despite everything was manually tested and meet the requirements)
  2. Swagger integration for documenting REST API - nice to have, missing, because of lack of the time available
  3. Application design/implementation might be improved (I know there is a space for improvements)
  4. Primitive front-end, sometimes too basic logic, usage of hardcoded values (environment variables must be used instead)
  5. Some extra-features (sorting, filtering, validation) has to be implemented / improved
  6. Too much time was focused on security (RBAC, JWT, config, etc.) and approaches I weren't used at the end
  7. For temporary use - database schema is updatable, according to configuration setting, to make it easier, faster and more flexible to add and update new / existing entities

Challenges

  1. Front-End in general - spent too much time on designing and developing of that part
  2. Breaks and context switching during implementing (family, work, etc.)
  3. Security / Auth + Docker integration took some time
  4. Tried to add swagger and websockets, but finally went on with another approach
  5. Spent some time on this document :)

HOWTO

Prerequisites: Docker (installed and running), Java 11, Git and Maven

  1. Clone repo: https://github.com/Taraskin/monitoring:
    git clone https://github.com/Taraskin/monitoring.git
  2. Navigate to project directory and run:
    cd monitoring
    mvn clean install
    - to verify it is builds
  3. Start DB instance (Dockerized*)
  4. Run generated JAR-file:
    java -jar target/service-monitoring-0.0.1-SNAPSHOT.jar
  5. You can also run the app from the IDE
  6. Register user by using REST endpoint: POST /auth/register - see more details below
  7. Navigate to http://localhost:8080, login with registered user credentials, try to add new service(s) for monitoring

P.S. MySQL in Docker *

application.yml already contains connection information to this DB.

docker-compose up -d

Some main REST API - endpoints

  • Auth /api/auth

    • POST /auth/register - register new user
      • Payload:
        {
        "username": "User_Name",
        "password": "User_Pass",
        "roles": ["ROLE_ADMIN"]
        }
        - where the role is one of ROLE_ADMIN or ROLE_USER
  • POST /auth/login - user login

    • Payload:
      {
      "username": "User_Name",
      "password": "User_Pass"
      }

Note ROLE_ADMIN and ROLE_USER automatically added on the app's first run

Note User's passwords stored in the database hashed / encrypted: $2a$10$Rzgjgy9eZ3wJdG4lIAC1r.2PjCaDgqcjtET.R2NIqaaqKRSt5omza

Note Security JWT tokens (must be present in request header for protected endpoints) have configurable expiration time - see next section in application.yml:

  # Security Configuration
  security:
    jwt:
      secret: SomeSecretKey
      expirationMs: 3600000 # 1000 * 60 * 60 = 3600000 ms (1 hour)

- every expired token has to be refreshed by using /api/auth/login endpoint


  • Service /api/services - full CRUD
    • GET /api/services - get all services

    • GET /api/services/{ID} - get service by ID

    • POST /api/services add a new service, per user

      • Payload:
        {
         "name": "Service Name",
         "url": "Service URL"
        }
    • PUT /api/services update service, allowed only for users with ADMIN role

      • Payload:
        {
         "id": 42, 
         "name": "Service Name (Updated)",
         "url": "Service URL (Updated)"
        }
    • DELETE /api/services/{ID} delete the service by ID, allowed only owner, with ADMIN role


monitoring's People

Contributors

taraskin avatar

Watchers

 avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.