This repository has been archived by the owner on Sep 1, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge remote-tracking branch 'origin/master' into v1.0.0
# Conflicts: # README.md # docs/ReatMetric System Manual.adoc # docs/ReatMetric System Manual.pdf # eu.dariolucia.reatmetric.api/pom.xml # eu.dariolucia.reatmetric.core/pom.xml # eu.dariolucia.reatmetric.driver.automation.base/pom.xml # eu.dariolucia.reatmetric.driver.automation.groovy/pom.xml # eu.dariolucia.reatmetric.driver.automation.js/pom.xml # eu.dariolucia.reatmetric.driver.automation.python/pom.xml # eu.dariolucia.reatmetric.driver.example.test/Documentation.adoc # eu.dariolucia.reatmetric.driver.example.test/pom.xml # eu.dariolucia.reatmetric.driver.example/Documentation.adoc # eu.dariolucia.reatmetric.driver.example/pom.xml # eu.dariolucia.reatmetric.driver.httpserver/pom.xml # eu.dariolucia.reatmetric.driver.remote/pom.xml # eu.dariolucia.reatmetric.driver.serial/pom.xml # eu.dariolucia.reatmetric.driver.socket/pom.xml # eu.dariolucia.reatmetric.driver.spacecraft.test/pom.xml # eu.dariolucia.reatmetric.driver.spacecraft/pom.xml # eu.dariolucia.reatmetric.driver.test/pom.xml # eu.dariolucia.reatmetric.persist/pom.xml # eu.dariolucia.reatmetric.processing/pom.xml # eu.dariolucia.reatmetric.remoting.connector/pom.xml # eu.dariolucia.reatmetric.remoting.spacecraft/pom.xml # eu.dariolucia.reatmetric.remoting.test/pom.xml # eu.dariolucia.reatmetric.remoting/pom.xml # eu.dariolucia.reatmetric.scheduler/pom.xml # eu.dariolucia.reatmetric.ui.remoting/pom.xml # eu.dariolucia.reatmetric.ui.socket/pom.xml # eu.dariolucia.reatmetric.ui.spacecraft/pom.xml # eu.dariolucia.reatmetric.ui.test/pom.xml # eu.dariolucia.reatmetric.ui/pom.xml # pom.xml
- Loading branch information
Showing
86 changed files
with
4,053 additions
and
292 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,13 @@ | ||
= System Manual | ||
Dario Lucia <dario[email protected]> | ||
v1.0.1, 2024-05-20 | ||
v1.0.2, 2024-07-11 | ||
:title-logo-image: image:docimg/ReatMetric-Logo.png[top=42%,align=left,pdfwidth=6in] | ||
:doctype: book | ||
:toc: | ||
:homepage: https://github.com/dariol83/reatmetric | ||
|
||
== Applicable Version | ||
This manual described the design, behaviour and configuration of ReatMetric version 1.0.x. | ||
This manual described the design, behaviour and configuration of ReatMetric version 1.0.2. | ||
|
||
== System Overview | ||
ReatMetric is a Java-based software infrastructure for the implementation of Monitoring & Control (M&C) systems, | ||
|
@@ -234,9 +234,6 @@ For instance, _raw data_ can be used to distribute and optioanlly store low leve | |
level between ReatMetric and the target devices. In the same way, it can be used to store changes of state or internal | ||
states of modules and drivers, as required. | ||
|
||
=== ReatMetric Main Interface | ||
To be written | ||
|
||
=== Drivers | ||
A _driver_ is the object that connect ReatMetric with an external device or system. A driver is responsible for: | ||
|
||
|
@@ -318,6 +315,9 @@ include::../eu.dariolucia.reatmetric.driver.spacecraft/Documentation.adoc[] | |
=== Serial | ||
include::../eu.dariolucia.reatmetric.driver.serial/Documentation.adoc[] | ||
|
||
=== SNMP | ||
include::../eu.dariolucia.reatmetric.driver.snmp/Documentation.adoc[] | ||
|
||
== User Interface | ||
include::../eu.dariolucia.reatmetric.ui/Documentation.adoc[] | ||
|
||
|
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
# syntax=docker/dockerfile:1 | ||
|
||
FROM eclipse-temurin:17-jre-alpine | ||
WORKDIR /reatmetric | ||
COPY target/deps . | ||
CMD ["java", "-Djava.rmi.server.hostname=127.0.0.1", "-Dreatmetric.core.config=/etc/reatmetric/configuration.xml", "-Dreatmetric.remoting.rmi.export.port=4000", "--module-path=/reatmetric", "-m", "eu.dariolucia.reatmetric.remoting/eu.dariolucia.reatmetric.remoting.ReatmetricRemotingServer", "3000"] | ||
# Java RMI registry | ||
EXPOSE 3000 | ||
# Java RMI exported objects | ||
EXPOSE 4000 | ||
# HTTP server driver port | ||
EXPOSE 8081 | ||
|
||
# docker build -t reatmetric-1.1.0-snapshot . | ||
# docker run -it --mount type=bind,src="C:\Users\dario\Reatmetric\reatmetric_docker",target="/etc/reatmetric" -d -p 127.0.0.1:3000:3000 -p 127.0.0.1:4000:4000 -p 127.0.0.1:8081:8081 reatmetric-1.1.0-snapshot |
Oops, something went wrong.