/spring-boot-gradle

Spring Boot Gradle

Primary LanguageKotlinMIT LicenseMIT

Testing

./gradlew bootRun --args='--spring.profiles.active=container 

#Metric

Prometheus

docker run -d --name=prometheus -p 9090:9090 -v $(pwd)/prometheus.yml:/etc/prometheus/prometheus.yml prom/prometheus --config.file=/etc/prometheus/prometheus.yml

prometheus.yaml file contne for local profile

global:
  scrape_interval:     15s # Set the scrape interval to every 15 seconds. Default is every 1 minute.
  evaluation_interval: 15s # Evaluate rules every 15 seconds. The default is every 1 minute.
  # scrape_timeout is set to the global default (10s).

# Load rules once and periodically evaluate them according to the global 'evaluation_interval'.
rule_files:
# - "first_rules.yml"
# - "second_rules.yml"

# A scrape configuration containing exactly one endpoint to scrape:
# Here it's Prometheus itself.
scrape_configs:
  # The job name is added as a label `job=<job_name>` to any timeseries scraped from this config.
  - job_name: 'prometheus'
    # metrics_path defaults to '/metrics'
    # scheme defaults to 'http'.
    static_configs:
      - targets: ['127.0.0.1:9090']

  - job_name: 'kotlin-simple'
    metrics_path: '/api/simple/system/prometheus'
    scrape_interval: 5s
    static_configs:
      - targets: ['host.docker.internal:8077']
    basic_auth:
      username: admin
      password: password

Grafana

docker run -d --name=grafana -p 3000:3000 grafana/grafana