Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/epomatti/quarkus-datadog
Quarkus with Datadog
https://github.com/epomatti/quarkus-datadog
azure azure-containerapps datadog java quarkus terraform
Last synced: 3 days ago
JSON representation
Quarkus with Datadog
- Host: GitHub
- URL: https://github.com/epomatti/quarkus-datadog
- Owner: epomatti
- License: mit
- Created: 2022-10-31T22:39:59.000Z (about 2 years ago)
- Default Branch: main
- Last Pushed: 2022-11-12T03:26:58.000Z (about 2 years ago)
- Last Synced: 2024-11-17T00:23:44.409Z (2 months ago)
- Topics: azure, azure-containerapps, datadog, java, quarkus, terraform
- Language: HCL
- Homepage:
- Size: 29.3 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Quarkus Datadog
Quarkus with Datadog.
## Local development
Enter the app directory:
```sh
cd apps/documents
```Start Postgres locally:
```
docker run --name quarkus-postgres-dev -p 5432:5432 -e POSTGRES_PASSWORD=p4ssw0rd -d postgres
```Start Quarkus:
```sh
quarkus dev
```## Docker Compose
Set the API key and start the containers:
```sh
export DD_API_KEY="0000000000000000000000000000000000000000"docker-compose build
docker-compose up
```Test it:
```sh
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
```