A web page with a text editor for ELK Graph and a synchronized graphical view.
Uses:
The easiest way to start working with this project is to open it in gitpod.io with the button above.
If you would like to compile and run it on your own machine, follow the instructions below.
git clone https://github.com/kieler/elk-live.git
cd elk-live/client
yarn install
yarn run build
cd ../server
./gradlew jettyRun
Then point your web browser to http://localhost:8080/
This project provides a container based runtime environment for the elk-live project.
You can build and/or run images with Docker.
You can start a container with a pre-built image by running docker run -p 8080:8080 ghcr.io/kieler/elk-live:master
.
After the container is fully booted, you can visit http://localhost:8080/ in your browser.
You can use -p [PORT]:8080
to access the server from a different PORT
.
You can build a container image locally by using the provided Dockerfile
or, more conveniently, use the provided docker-compose.yml
file.
This allows you to customize the runtime environment locally and even actively develop with nicely separated build and runtime dependencies.
To easily get started with a locally built image, follow the steps below
cp .env.example .env
vi .env # adapt settings via provided environment
docker-compose up --build
If you would like to host elk-live yourself you can use the automatically built Docker container. There is also an example configuration for Docker Compose.
To release a new version simply add a new release and tag it (e.g. with v0.1.1
).
This will build the selected branch and docker image, which will be tagged as latest
.