Skip to content
Merged

Grafana #1867

Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
29 commits
Select commit Hold shift + click to select a range
421b7db
WIP: grafana deployment
Feb 2, 2021
29059f7
Add manifests for Grafana stateful set with persistent volume & corte…
Feb 5, 2021
ae1dff7
Add virtual service for grafana
Feb 5, 2021
810fc9e
Add missing header to grafana-dashboard.yaml
Feb 5, 2021
1154f7c
Remove metrics exporters and add grafana installation
Feb 6, 2021
a98fc6c
Fix grafana installation
Feb 8, 2021
0275c40
Add dashboard for batch apis
Feb 8, 2021
4675be5
Refactor dashboards with templating
Feb 8, 2021
f08f829
Fix linting error
Feb 8, 2021
13897a0
Fix grafana installation
Feb 8, 2021
2c54d2b
Make grafana service ClusterIP type
Feb 8, 2021
beb4c66
Use custom grafana image in manifest
Feb 8, 2021
c7018c1
Add grafana dashboard URL to cortex CLI. Remove old dashboard code fr…
Feb 8, 2021
ea128b6
Update metrics.md
Feb 8, 2021
164df45
Merge branch 'master' into grafana
Feb 8, 2021
5f4bfb2
Update metrics.md
Feb 8, 2021
151348c
Remove metrics cloud exporters and add grafana to Helm chart
Feb 9, 2021
46d1988
Fix grafana refresh on templates
Feb 9, 2021
fb5be08
Improve metrics.md docs
Feb 9, 2021
1e93870
Fix linting errors
Feb 9, 2021
9a8f3a2
Merge branch 'master' into grafana
Feb 9, 2021
dc4c507
Update versions.md
Feb 9, 2021
9dfaf97
Add metrics to summary.md
Feb 10, 2021
e386da3
Fix typo
Feb 10, 2021
2a06bb1
Add pod affinity between grafana and prometheus
Feb 10, 2021
723e366
Rename grafana dashboards UIDs
Feb 10, 2021
d8919ff
Add dashboard URL to batch apis on the CLI
Feb 10, 2021
652eacc
Fix grafana installation in install.sh
Feb 10, 2021
9b433ea
Merge branch 'master' into grafana
Feb 10, 2021
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -193,7 +193,7 @@ image_prometheus: <account_id>.dkr.ecr.<region>.amazonaws.com/cortexlabs/prometh
image_prometheus_config_reloader: <account_id>.dkr.ecr.<region>.amazonaws.com/cortexlabs/prometheus-config-reloader:latest
image_prometheus_operator: <account_id>.dkr.ecr.<region>.amazonaws.com/cortexlabs/prometheus-operator:latest
image_prometheus_statsd_exporter: <account_id>.dkr.ecr.<region>.amazonaws.com/cortexlabs/prometheus-statsd-exporter:latest
image_prometheus_to_cloudwatch: <account_id>.dkr.ecr.<region>.amazonaws.com/cortexlabs/prometheus-to-cloudwatch:latest
image_grafana: <account_id>.dkr.ecr.<region>.amazonaws.com/cortexlabs/grafana:latest
```

Create `dev/config/cluster-gcp.yaml`. Paste the following config, and update `project`, `zone`, and all registry URLs (replace `<project_id>` with your project ID, and update `gcr.io` if you are using a different host):
Expand All @@ -220,7 +220,7 @@ image_prometheus: gcr.io/<project_id>/cortexlabs/prometheus:latest
image_prometheus_config_reloader: gcr.io/<project_id>/cortexlabs/prometheus-config-reloader:latest
image_prometheus_operator: gcr.io/<project_id>/cortexlabs/prometheus-operator:latest
image_prometheus_statsd_exporter: gcr.io/<project_id>/cortexlabs/prometheus-statsd-exporter:latest
image_prometheus_stackdriver_sidecar: gcr.io/<project_id>/cortexlabs/prometheus-stackdriver-sidecar:latest
image_grafana: gcr.io/<project_id>/cortexlabs/grafana:latest
```

### Building
Expand Down
3 changes: 1 addition & 2 deletions build/images.sh
Original file line number Diff line number Diff line change
Expand Up @@ -73,6 +73,7 @@ non_dev_images_cluster=(
"prometheus-config-reloader"
"prometheus-operator"
"prometheus-statsd-exporter"
"grafana"
)
non_dev_images_aws=(
# includes non_dev_images_cluster
Expand All @@ -81,12 +82,10 @@ non_dev_images_aws=(
"inferentia"
"neuron-rtd"
"nvidia"
"prometheus-to-cloudwatch"
)
non_dev_images_gcp=(
# includes non_dev_images_cluster
"google-pause"
"prometheus-stackdriver-sidecar"
)

all_images=(
Expand Down
Loading