Skip to content

epomatti/quarkus-datadog

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

19 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Quarkus Datadog

Quarkus with Datadog.

Local development

Enter the app directory:

cd apps/documents

Start Postgres locally:

docker run --name quarkus-postgres-dev -p 5432:5432 -e POSTGRES_PASSWORD=p4ssw0rd -d postgres

Start Quarkus:

quarkus dev

Docker Compose

Set the API key and start the containers:

export DD_API_KEY="0000000000000000000000000000000000000000"

docker-compose build
docker-compose up

Test it:

curl -X POST localhost:8080/documents
curl localhost:8080/documents/1

Docker Push

docker login
docker build -t epomatti/quarkus-datadog-documents .
docker push epomatti/quarkus-datadog-documents