de.zalando:zmon-eventlog-service

Parent pom.xml that can be used by STUPS Maven projects

License

License

GroupId

GroupId

de.zalando
ArtifactId

ArtifactId

zmon-eventlog-service
Last Version

Last Version

1.0-M1
Release Date

Release Date

Type

Type

jar
Description

Description

Parent pom.xml that can be used by STUPS Maven projects
Project Organization

Project Organization

Zalando SE
Source Code Management

Source Code Management

https://github.com/zalando/zmon-eventlog-service

Download zmon-eventlog-service

How to add to project

<!-- https://jarcasting.com/artifacts/de.zalando/zmon-eventlog-service/ -->
<dependency>
    <groupId>de.zalando</groupId>
    <artifactId>zmon-eventlog-service</artifactId>
    <version>1.0-M1</version>
</dependency>
// https://jarcasting.com/artifacts/de.zalando/zmon-eventlog-service/
implementation 'de.zalando:zmon-eventlog-service:1.0-M1'
// https://jarcasting.com/artifacts/de.zalando/zmon-eventlog-service/
implementation ("de.zalando:zmon-eventlog-service:1.0-M1")
'de.zalando:zmon-eventlog-service:jar:1.0-M1'
<dependency org="de.zalando" name="zmon-eventlog-service" rev="1.0-M1">
  <artifact name="zmon-eventlog-service" type="jar" />
</dependency>
@Grapes(
@Grab(group='de.zalando', module='zmon-eventlog-service', version='1.0-M1')
)
libraryDependencies += "de.zalando" % "zmon-eventlog-service" % "1.0-M1"
[de.zalando/zmon-eventlog-service "1.0-M1"]

Dependencies

compile (6)

Group / Artifact Type Version
com.google.guava : guava jar 19.0
org.springframework.boot : spring-boot-starter-jdbc jar
org.springframework.boot : spring-boot-starter-web jar
com.datastax.cassandra : cassandra-driver-core jar
org.postgresql : postgresql jar 9.3-1102-jdbc41
com.zaxxer : HikariCP jar 2.4.3

test (5)

Group / Artifact Type Version
org.flywaydb : flyway-core jar 3.2.1
junit : junit jar
org.springframework.boot : spring-boot-starter-test jar
org.assertj : assertj-core jar 3.1.0
ru.yandex.qatools.embed : postgresql-embedded jar 1.7

Project Modules

There are no modules declared in this project.

ZMON source code on GitHub is no longer in active development. Zalando will no longer actively review issues or merge pull-requests.

ZMON is still being used at Zalando and serves us well for many purposes. We are now deeper into our observability journey and understand better that we need other telemetry sources and tools to elevate our understanding of the systems we operate. We support the OpenTelemetry initiative and recommended others starting their journey to begin there.

If members of the community are interested in continuing developing ZMON, consider forking it. Please review the licence before you do.

ZMON EventLog Service

OpenTracing enabled

Create database schema:

docker run -d -p 5432:5432 -e POSTGRES_PASSWORD=postgres postgres
psql -h localhost -U postgres -c 'CREATE DATABASE local_eventlog_db;'
psql -h localhost -U postgres -d local_eventlog_db -f database/eventlog/00_create_schema.sql

Build docker image:

$ ./mvnw clean install
$ docker build -t zmon-eventlog-service .

Run with PostgreSQL:

java -jar target/zmon-eventlog-service-1.0-SNAPSHOT.jar

Create Event:

curl -X POST http://localhost:8080/events \
     -d "[{\"typeId\":212993, \"time\":\"2014-01-01T20:00:00.000\",\"attributes\":{\"alertId\":1,\"entity\":\"elsn01:5827\"}}]" \
     -H "Content-Type: application/json"

Read Event:

curl 'http://localhost:8080/events?types=212993&key=alertId&value=1&from=0'
de.zalando

Zalando SE

The org page for Zalando, Europe's leading online fashion platform. Visit opensource.zalando.com for project stats.

Versions

Version
1.0-M1