summaryrefslogtreecommitdiff
path: root/app/models/deployment_metrics.rb
Commit message (Collapse)AuthorAgeFilesLines
* Add latest changes from gitlab-org/gitlab@masterGitLab Bot2020-01-081-11/+1
|
* Add latest changes from gitlab-org/gitlab@masterGitLab Bot2019-12-201-3/+7
|
* Removes potentially incorrect, and slow fallbackremove_deployment_metrics_deployment_platform_fallbackThong Kuah2019-07-251-12/+1
| | | | | | | Deployment_platform is relatively expensive and calling this after the fact means that this may not be the cluster that was deployed to. Correspondingly reduce the leeway given in the related N+1 spec
* Restore fallback to deployment_platform_clusterThong Kuah2019-07-081-1/+12
| | | | In 12.2 we will remove this fallback.
* Extract deployment_metrics into own objectThong Kuah2019-07-081-0/+50
We can now share project so that we don't have to load project twice. Also, this extracts non-relevant logic out of Deployment. Update DeploymentsController accordingly