add basic metrics impl
All checks were successful
Deploy App / docker (ubuntu-latest, 2.44.0, 17, 3.8.5) (push) Successful in 2m32s

This commit is contained in:
Lee
2024-04-14 09:34:10 +01:00
parent fc640fe1a0
commit e9da32775f
16 changed files with 346 additions and 9 deletions

View File

@ -4,20 +4,36 @@ server:
servlet:
context-path: /
# The public URL of the application
public-url: http://localhost:80
# Spring Configuration
spring:
# Don't include null properties in JSON
jackson:
default-property-inclusion: non_null
data:
# Redis - This is used for caching
redis:
host: "localhost"
host: "127.0.0.1"
port: 6379
database: 0
database: 1
auth: "" # Leave blank for no auth
# Don't serialize null values
jackson:
default-property-inclusion: non_null
# Disable default metrics
management:
endpoints:
web:
exposure:
exclude:
- "*"
influx:
metrics:
export:
enabled: false
# InfluxDB Configuration
influx:
url: http://localhost
token: token
org: org
bucket: bucket
public-url: http://localhost