mirror of
https://github.com/clearml/clearml-helm-charts
synced 2025-02-01 17:43:39 +00:00
4422cf433d
* added clearml-serving chart * fixed typo, added autogenerated README.md * removed trailing space from values.yaml * removed namespace definition from the values file and all the templates * fixed typo * re-run helm-docs
28 lines
834 B
YAML
28 lines
834 B
YAML
apiVersion: v1
|
|
kind: Secret
|
|
metadata:
|
|
name: prometheus-config
|
|
stringData:
|
|
prometheus.yml: |-
|
|
global:
|
|
scrape_interval: "15s" # By default, scrape targets every 15 seconds.
|
|
evaluation_interval: 15s # By default, scrape targets every 15 seconds.
|
|
external_labels:
|
|
monitor: 'clearml-serving'
|
|
|
|
scrape_configs:
|
|
# The job name is added as a label `job=<job_name>` to any timeseries scraped from this config.
|
|
- job_name: 'prometheus'
|
|
|
|
scrape_interval: 5s
|
|
|
|
static_configs:
|
|
- targets: ['localhost:9090']
|
|
|
|
# The job name is added as a label `job=<job_name>` to any timeseries scraped from this config.
|
|
- job_name: 'clearml-inference-stats'
|
|
|
|
scrape_interval: 5s
|
|
|
|
static_configs:
|
|
- targets: ['clearml-serving-statistics:9999'] |