Setup the EUM Server
Before starting the server, download the latest release or build it by cloning the repository and executing the following command :
$ ./gradlew build
Start the EUM server with the following command:
$ java -jar inspectit-ocelot-eum-{version}.jar
By default, the server is starting on port 8080
.
You can simply configure the port by using the Java property -Dserver.port=[PORT]
:
$ java -Dserver.port=[port] -jar inspectit-ocelot-eum-0.0.1-SNAPSHOT.jar
Our server is delivered with a default configuration
supporting the metrics t_page
, t_done
, rt.tstart
, rt.nstart
and rt.end
of the Boomerang plugin RT.
In order to provide a custom configuration, please set the Java property -Dspring.config.location=file:[PATH-TO-CONFIG]
:
$ java -Dserver.port=[port] -Dspring.config.location=file:[path-to-config] -jar inspectit-ocelot-eum-0.0.1-SNAPSHOT.jar