add basic metrics impl
All checks were successful
Deploy App / docker (ubuntu-latest, 2.44.0, 17, 3.8.5) (push) Successful in 2m32s
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:
@ -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
|
Reference in New Issue
Block a user