Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/andriirv/observer
An internal monitoring system, tracking real-time working instances
https://github.com/andriirv/observer
gradle html-css-javascript java rest server-side-rendering spring thymeleaf webjars
Last synced: 13 days ago
JSON representation
An internal monitoring system, tracking real-time working instances
- Host: GitHub
- URL: https://github.com/andriirv/observer
- Owner: AndriiRv
- Created: 2022-06-11T16:34:53.000Z (over 2 years ago)
- Default Branch: master
- Last Pushed: 2023-09-16T16:38:24.000Z (over 1 year ago)
- Last Synced: 2024-11-25T16:12:10.065Z (2 months ago)
- Topics: gradle, html-css-javascript, java, rest, server-side-rendering, spring, thymeleaf, webjars
- Language: Java
- Homepage:
- Size: 503 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Observer
#### Default Value
> Contents
- [Setup](#setup)
- [Using](#using)
- [Test mode](#test-mode)## Setup
###### UPDATED Jan 15, 2023
* For now only file as data store of resources is supporting.
1. First, can specify server port on which application will run. It can do by run of jar application with VM options or
in `application.yml`. Default server port is `8999`. E.g., if server port is
`1111` and we need run production profile:
`java -Dserver.port=1111 -Dspring.profiles.active=production -jar observer.jar`.
2. Next in `application.yml` can change the `filename` and `filetype` file from which will read the resources if has selected
file as data store of resources. Also, can change `separate-character` and `comment-character`
to convenient manual work with resource file and can change http client timeouts at your discretion.## Using
###### UPDATED Jan 14, 2023
* After start the application, resource file will create and can add resource with vertical line as separator.
E.g., `name of resource|http://site.com`
* Or can manage the resources in the Preferences page.* After reload the home page all resources will reload.
### Test mode
###### UPDATED Fab 6, 2023
* Can use test mode for specific functional test cases.
E.g.,: add `spring.profiles.active=test` to environment variables in IDE
or `java -Dserver.port=1111 -Dspring.profiles.active=test -jar observer.jar` while using jar file.