Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
G
gitlab-ce
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
1
Merge Requests
1
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
nexedi
gitlab-ce
Commits
d3097abc
Commit
d3097abc
authored
Apr 17, 2019
by
syasonik
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Support alerting and distinct stages
parent
730cf5e3
Changes
17
Hide whitespace changes
Inline
Side-by-side
Showing
17 changed files
with
184 additions
and
302 deletions
+184
-302
app/controllers/projects/environments_controller.rb
app/controllers/projects/environments_controller.rb
+2
-2
app/services/metrics_dashboard_processing_service.rb
app/services/metrics_dashboard_processing_service.rb
+0
-116
app/services/metrics_dashboard_service.rb
app/services/metrics_dashboard_service.rb
+0
-33
ee/lib/ee/gitlab/metrics_dashboard/processor.rb
ee/lib/ee/gitlab/metrics_dashboard/processor.rb
+13
-0
ee/lib/ee/gitlab/metrics_dashboard/stages/alerts_inserter.rb
ee/lib/ee/gitlab/metrics_dashboard/stages/alerts_inserter.rb
+38
-0
ee/spec/lib/ee/gitlab/metrics_dashboard/processor_spec.rb
ee/spec/lib/ee/gitlab/metrics_dashboard/processor_spec.rb
+53
-0
lib/gitlab/metrics_dashboard/processor.rb
lib/gitlab/metrics_dashboard/processor.rb
+13
-4
lib/gitlab/metrics_dashboard/service.rb
lib/gitlab/metrics_dashboard/service.rb
+3
-2
lib/gitlab/metrics_dashboard/stages/base_stage.rb
lib/gitlab/metrics_dashboard/stages/base_stage.rb
+39
-0
lib/gitlab/metrics_dashboard/stages/common_metrics_inserter.rb
...itlab/metrics_dashboard/stages/common_metrics_inserter.rb
+4
-16
lib/gitlab/metrics_dashboard/stages/project_metrics_inserter.rb
...tlab/metrics_dashboard/stages/project_metrics_inserter.rb
+3
-5
lib/gitlab/metrics_dashboard/stages/sorter.rb
lib/gitlab/metrics_dashboard/stages/sorter.rb
+7
-7
spec/fixtures/services/metrics_dashboard_processing_service.yml
...ixtures/services/metrics_dashboard_processing_service.yml
+0
-36
spec/lib/gitlab/metrics_dashboard/processor_spec.rb
spec/lib/gitlab/metrics_dashboard/processor_spec.rb
+5
-1
spec/lib/gitlab/metrics_dashboard/service_spec.rb
spec/lib/gitlab/metrics_dashboard/service_spec.rb
+4
-3
spec/services/metrics_dashboard_processing_service_spec.rb
spec/services/metrics_dashboard_processing_service_spec.rb
+0
-55
spec/services/metrics_dashboard_service_spec.rb
spec/services/metrics_dashboard_service_spec.rb
+0
-22
No files found.
app/controllers/projects/environments_controller.rb
View file @
d3097abc
...
...
@@ -158,11 +158,11 @@ class Projects::EnvironmentsController < Projects::ApplicationController
end
def
metrics_dashboard
render_403
&&
return
unless
Feature
.
enabled?
(
:environment_metrics_use_prometheus_endpoint
,
project
)
render_403
&&
return
unless
Feature
.
enabled?
(
:environment_metrics_use_prometheus_endpoint
,
@
project
)
respond_to
do
|
format
|
format
.
json
do
dashboard
=
MetricsDashboardService
.
new
(
@projec
t
).
get_dashboard
dashboard
=
Gitlab
::
MetricsDashboard
::
Service
.
new
(
@project
,
environmen
t
).
get_dashboard
render
json:
dashboard
,
status: :ok
end
...
...
app/services/metrics_dashboard_processing_service.rb
deleted
100644 → 0
View file @
730cf5e3
# frozen_string_literal: true
class
MetricsDashboardProcessingService
DEFAULT_PANEL_TYPE
=
'area-chart'
def
initialize
(
dashboard
,
project
)
@dashboard
=
dashboard
.
deep_transform_keys
(
&
:to_sym
)
@project
=
project
end
def
process
insert_metric_ids!
sort_groups!
sort_panels!
insert_project_metrics!
@dashboard
.
to_json
end
private
# ------- Processing Steps -----------
# For each metric in the dashboard config, attempts to find a corresponding
# database record. If found, includes the record's id in the dashboard config.
def
insert_metric_ids!
for_metrics
do
|
metric
|
metric_record
=
common_metrics
.
find
{
|
m
|
m
.
identifier
==
metric
[
:id
]
}
metric
[
:metric_id
]
=
metric_record
.
id
if
metric_record
end
end
# Inserts project-specific metrics into the dashboard config.
# If there are no project-specific metrics, this will have no effect.
def
insert_project_metrics!
project_metrics
.
each
do
|
project_metric
|
group
=
find_or_create_group
(
@dashboard
[
:panel_groups
],
project_metric
)
panel
=
find_or_create_panel
(
group
[
:panels
],
project_metric
)
find_or_create_metric
(
panel
[
:metrics
],
project_metric
)
end
end
# Sorts the groups in the dashboard by the :priority key
def
sort_groups!
@dashboard
[
:panel_groups
]
=
@dashboard
[
:panel_groups
].
sort_by
{
|
group
|
group
[
:priority
]
}
end
# Sorts the panels in the dashboard by the :weight key
def
sort_panels!
@dashboard
[
:panel_groups
].
each
do
|
group
|
group
[
:panels
]
=
group
[
:panels
].
sort_by
{
|
panel
|
panel
[
:weight
]
}
end
end
# ------- Processing Helpers -----------
def
project_metrics
@project
.
prometheus_metrics
end
def
common_metrics
@common_metrics
||=
::
PrometheusMetric
.
common
end
def
for_metrics
@dashboard
[
:panel_groups
].
each
do
|
panel_group
|
panel_group
[
:panels
].
each
do
|
panel
|
panel
[
:metrics
].
each
do
|
metric
|
yield
metric
end
end
end
end
def
find_or_create_group
(
panel_groups
,
metric
)
target_group
=
panel_groups
.
find
{
|
group
|
group
[
:group
]
==
metric
.
group_title
}
unless
target_group
target_group
=
{
group:
metric
.
group_title
,
priority:
metric
.
priority
,
panels:
[]
}
panel_groups
<<
target_group
end
target_group
end
def
find_or_create_panel
(
panels
,
metric
)
panel_identifiers
=
[
DEFAULT_PANEL_TYPE
,
metric
.
title
,
metric
.
y_label
]
target_panel
=
panels
.
find
{
|
panel
|
panel
.
values_at
(
:type
,
:title
,
:y_label
)
==
panel_identifiers
}
unless
target_panel
target_panel
=
{
type:
DEFAULT_PANEL_TYPE
,
title:
metric
.
title
,
y_label:
metric
.
y_label
,
metrics:
[]
}
panels
<<
target_panel
end
target_panel
end
def
find_or_create_metric
(
metrics
,
metric
)
target_metric
=
metrics
.
find
{
|
m
|
m
[
:id
]
==
metric
.
identifier
}
unless
target_metric
target_metric
=
metric
.
queries
.
first
.
merge
(
metric_id:
metric
.
id
)
metrics
<<
target_metric
end
target_metric
end
end
app/services/metrics_dashboard_service.rb
deleted
100644 → 0
View file @
730cf5e3
# frozen_string_literal: true
# Fetches the metrics dashboard layout and supplemented the output with DB info.
class
MetricsDashboardService
SYSTEM_DASHBOARD_NAME
=
'common_metrics'
SYSTEM_DASHBOARD_PATH
=
Rails
.
root
.
join
(
'config'
,
'prometheus'
,
"
#{
SYSTEM_DASHBOARD_NAME
}
.yml"
)
def
initialize
(
project
)
@project
=
project
end
# Returns a DB-supplemented json representation of a dashboard config file.
def
get_dashboard
dashboard
=
Rails
.
cache
.
fetch
(
cache_key
)
{
system_dashboard
}
process_dashboard
(
dashboard
)
end
private
# Returns the base metrics shipped with every GitLab service.
def
system_dashboard
YAML
.
load_file
(
SYSTEM_DASHBOARD_PATH
)
end
def
cache_key
"metrics_dashboard_
#{
SYSTEM_DASHBOARD_NAME
}
"
end
def
process_dashboard
(
dashboard
)
MetricsDashboardProcessingService
.
new
(
dashboard
,
@project
).
process
end
end
ee/lib/ee/gitlab/metrics_dashboard/processor.rb
0 → 100644
View file @
d3097abc
# frozen_string_literal: true
module
EE
module
Gitlab
module
MetricsDashboard
module
Processor
def
stages
@stages
||=
super
+
[
Stages
::
AlertsInserter
]
end
end
end
end
end
ee/lib/ee/gitlab/metrics_dashboard/stages/alerts_inserter.rb
0 → 100644
View file @
d3097abc
# frozen_string_literal: true
require
'set'
module
EE
module
Gitlab
module
MetricsDashboard
module
Stages
class
AlertsInserter
<
::
Gitlab
::
MetricsDashboard
::
Stages
::
BaseStage
def
transform!
alerts
=
metrics_with_alerts
for_metrics
do
|
metric
|
next
unless
metric_id
=
metric
[
:metric_id
]
next
unless
alerts
.
include?
(
metric_id
)
metric
[
:alert_path
]
=
alert_path
(
metric_id
,
project
,
environment
)
end
end
private
def
metrics_with_alerts
alerts
=
::
Projects
::
Prometheus
::
AlertsFinder
.
new
(
project:
project
,
environment:
environment
)
.
execute
Set
.
new
(
alerts
.
map
(
&
:id
))
end
def
alert_path
(
metric_id
,
project
,
environment
)
::
Gitlab
::
Routing
.
url_helpers
.
project_prometheus_alert_path
(
project
,
metric_id
,
environment_id:
environment
.
id
,
format: :json
)
end
end
end
end
end
end
ee/spec/lib/ee/gitlab/metrics_dashboard/processor_spec.rb
0 → 100644
View file @
d3097abc
# frozen_string_literal: true
require
'spec_helper'
describe
Gitlab
::
MetricsDashboard
::
Processor
do
let
(
:project
)
{
build
(
:project
)
}
let
(
:environment
)
{
alert
.
environment
}
let
(
:dashboard_yml
)
{
YAML
.
load_file
(
'spec/fixtures/lib/gitlab/metrics_dashboard/sample_dashboard.yml'
)
}
describe
'process'
do
let
(
:process_params
)
{
[
dashboard_yml
,
project
,
environment
]
}
let
(
:dashboard_json
)
{
described_class
.
new
(
*
process_params
).
process
}
let
(
:dashboard
)
{
JSON
.
parse
(
dashboard_json
,
symbolize_names:
true
)
}
context
'when the dashboard references persisted metrics with alerts'
do
let!
(
:alert
)
{
create
(
:prometheus_alert
,
project:
project
,
prometheus_metric:
persisted_metric
)
}
shared_examples_for
'has saved alerts'
do
it
'includes an alert path'
do
target_metric
=
all_metrics
.
find
{
|
metric
|
metric
[
:metric_id
]
==
persisted_metric
.
id
}
expect
(
target_metric
).
to
be_a
Hash
expect
(
target_metric
).
to
include
(
:alert_path
)
expect
(
target_metric
[
:alert_path
]).
to
include
(
project
.
path
,
persisted_metric
.
id
.
to_s
,
environment
.
id
.
to_s
)
end
end
context
'that are shared across projects'
do
let!
(
:persisted_metric
)
{
create
(
:prometheus_metric
,
:common
,
identifier:
'metric_a1'
)
}
it_behaves_like
'has saved alerts'
end
context
'when the project has associated metrics'
do
let!
(
:persisted_metric
)
{
create
(
:prometheus_metric
,
project:
project
,
group: :business
)
}
it_behaves_like
'has saved alerts'
end
end
end
private
def
all_metrics
dashboard
[
:panel_groups
].
map
do
|
group
|
group
[
:panels
].
map
{
|
panel
|
panel
[
:metrics
]
}
end
.
flatten
end
end
lib/gitlab/metrics_dashboard/processor.rb
View file @
d3097abc
...
...
@@ -3,18 +3,27 @@
module
Gitlab
module
MetricsDashboard
class
Processor
STAGES
=
[
CommonMetricsInserter
,
ProjectMetricsInserter
,
Sorter
].
freeze
def
initialize
(
dashboard
,
project
)
def
initialize
(
dashboard
,
project
,
environment
)
@dashboard
=
dashboard
.
deep_transform_keys
(
&
:to_sym
)
@project
=
project
@environment
=
environment
end
def
stages
@stages
||=
[
Stages
::
CommonMetricsInserter
,
Stages
::
ProjectMetricsInserter
,
Stages
::
Sorter
].
freeze
end
def
process
STAGES
.
each
{
|
stage
|
stage
.
transform!
(
@dashboard
,
@project
)
}
stages
.
each
{
|
stage
|
stage
.
new
(
@dashboard
,
@project
,
@environment
).
transform!
}
@dashboard
.
to_json
end
end
end
end
Gitlab
::
MetricsDashboard
::
Processor
.
prepend
EE
::
Gitlab
::
MetricsDashboard
::
Processor
lib/gitlab/metrics_dashboard/service.rb
View file @
d3097abc
...
...
@@ -7,8 +7,9 @@ module Gitlab
SYSTEM_DASHBOARD_NAME
=
'common_metrics'
SYSTEM_DASHBOARD_PATH
=
Rails
.
root
.
join
(
'config'
,
'prometheus'
,
"
#{
SYSTEM_DASHBOARD_NAME
}
.yml"
)
def
initialize
(
project
)
def
initialize
(
project
,
environment
)
@project
=
project
@environment
=
environment
end
# Returns a DB-supplemented json representation of a dashboard config file.
...
...
@@ -30,7 +31,7 @@ module Gitlab
end
def
process_dashboard
(
dashboard
)
Processor
.
new
(
dashboard
,
@project
).
process
Processor
.
new
(
dashboard
,
@project
,
@environment
).
process
end
end
end
...
...
lib/gitlab/metrics_dashboard/stages/base_stage.rb
0 → 100644
View file @
d3097abc
# frozen_string_literal: true
module
Gitlab
module
MetricsDashboard
module
Stages
class
BaseStage
DEFAULT_PANEL_TYPE
=
'area-chart'
attr_reader
:dashboard
,
:project
,
:environment
def
initialize
(
dashboard
,
project
,
environment
)
@dashboard
=
dashboard
@project
=
project
@environment
=
environment
end
# Entry-point to the stage
# @param dashboard [Hash]
# @param project [Project]
# @param environment [Environment]
def
transform!
raise
NotImplementedError
end
protected
def
for_metrics
dashboard
[
:panel_groups
].
each
do
|
panel_group
|
panel_group
[
:panels
].
each
do
|
panel
|
panel
[
:metrics
].
each
do
|
metric
|
yield
metric
end
end
end
end
end
end
end
end
lib/gitlab/metrics_dashboard/common_metrics_inserter.rb
→
lib/gitlab/metrics_dashboard/
stages/
common_metrics_inserter.rb
View file @
d3097abc
...
...
@@ -2,30 +2,18 @@
module
Gitlab
module
MetricsDashboard
class
CommonMetricsInserter
class
<<
self
module
Stages
class
CommonMetricsInserter
<
BaseStage
# For each metric in the dashboard config, attempts to find a corresponding
# database record. If found, includes the record's id in the dashboard config.
def
transform!
(
dashboard
,
_project
)
def
transform!
common_metrics
=
::
PrometheusMetric
.
common
for_metrics
(
dashboard
)
do
|
metric
|
for_metrics
do
|
metric
|
metric_record
=
common_metrics
.
find
{
|
m
|
m
.
identifier
==
metric
[
:id
]
}
metric
[
:metric_id
]
=
metric_record
.
id
if
metric_record
end
end
private
def
for_metrics
(
dashboard
)
dashboard
[
:panel_groups
].
each
do
|
panel_group
|
panel_group
[
:panels
].
each
do
|
panel
|
panel
[
:metrics
].
each
do
|
metric
|
yield
metric
end
end
end
end
end
end
end
...
...
lib/gitlab/metrics_dashboard/project_metrics_inserter.rb
→
lib/gitlab/metrics_dashboard/
stages/
project_metrics_inserter.rb
View file @
d3097abc
...
...
@@ -2,13 +2,11 @@
module
Gitlab
module
MetricsDashboard
class
ProjectMetricsInserter
DEFAULT_PANEL_TYPE
=
'area-chart'
class
<<
self
module
Stages
class
ProjectMetricsInserter
<
BaseStage
# Inserts project-specific metrics into the dashboard config.
# If there are no project-specific metrics, this will have no effect.
def
transform!
(
dashboard
,
project
)
def
transform!
project
.
prometheus_metrics
.
each
do
|
project_metric
|
group
=
find_or_create_panel_group
(
dashboard
[
:panel_groups
],
project_metric
)
panel
=
find_or_create_panel
(
group
[
:panels
],
project_metric
)
...
...
lib/gitlab/metrics_dashboard/sorter.rb
→
lib/gitlab/metrics_dashboard/s
tages/s
orter.rb
View file @
d3097abc
...
...
@@ -2,22 +2,22 @@
module
Gitlab
module
MetricsDashboard
class
Sorter
class
<<
self
def
transform!
(
dashboard
,
_project
)
sort_groups!
(
dashboard
)
sort_panels!
(
dashboard
)
module
Stages
class
Sorter
<
BaseStage
def
transform!
sort_groups!
sort_panels!
end
private
# Sorts the groups in the dashboard by the :priority key
def
sort_groups!
(
dashboard
)
def
sort_groups!
dashboard
[
:panel_groups
]
=
dashboard
[
:panel_groups
].
sort_by
{
|
group
|
-
group
[
:priority
].
to_i
}
end
# Sorts the panels in the dashboard by the :weight key
def
sort_panels!
(
dashboard
)
def
sort_panels!
dashboard
[
:panel_groups
].
each
do
|
group
|
group
[
:panels
]
=
group
[
:panels
].
sort_by
{
|
panel
|
-
panel
[
:weight
].
to_i
}
end
...
...
spec/fixtures/services/metrics_dashboard_processing_service.yml
deleted
100644 → 0
View file @
730cf5e3
dashboard
:
'
Test
Dashboard'
order
:
1
panel_groups
:
-
group
:
Group A
priority
:
10
panels
:
-
title
:
"
Super
Chart
A1"
type
:
"
area-chart"
y_label
:
"
y_label"
weight
:
2
metrics
:
-
id
:
metric_a1
query_range
:
'
query'
unit
:
unit
label
:
Legend Label
-
title
:
"
Super
Chart
A2"
type
:
"
area-chart"
y_label
:
"
y_label"
weight
:
1
metrics
:
-
id
:
metric_a2
query_range
:
'
query'
label
:
Legend Label
unit
:
unit
-
group
:
Group B
priority
:
1
panels
:
-
title
:
"
Super
Chart
B"
type
:
"
area-chart"
y_label
:
"
y_label"
weight
:
1
metrics
:
-
id
:
metric_b
query_range
:
'
query'
unit
:
unit
label
:
Legend Label
spec/lib/gitlab/metrics_dashboard/processor_spec.rb
View file @
d3097abc
...
...
@@ -4,10 +4,13 @@ require 'spec_helper'
describe
Gitlab
::
MetricsDashboard
::
Processor
do
let
(
:project
)
{
build
(
:project
)
}
let
(
:environment
)
{
build
(
:environment
)
}
let
(
:dashboard_yml
)
{
YAML
.
load_file
(
'spec/fixtures/lib/gitlab/metrics_dashboard/sample_dashboard.yml'
)
}
describe
'process'
do
let
(
:dashboard
)
{
JSON
.
parse
(
described_class
.
new
(
dashboard_yml
,
project
).
process
,
symbolize_names:
true
)
}
let
(
:process_params
)
{
[
dashboard_yml
,
project
,
environment
]
}
let
(
:dashboard_json
)
{
described_class
.
new
(
*
process_params
).
process
}
let
(
:dashboard
)
{
JSON
.
parse
(
dashboard_json
,
symbolize_names:
true
)
}
context
'when dashboard config corresponds to common metrics'
do
let!
(
:common_metric
)
{
create
(
:prometheus_metric
,
:common
,
identifier:
'metric_a1'
)
}
...
...
@@ -16,6 +19,7 @@ describe Gitlab::MetricsDashboard::Processor do
target_metric
=
all_metrics
.
find
{
|
metric
|
metric
[
:id
]
==
'metric_a1'
}
expect
(
target_metric
).
to
include
(
:metric_id
)
expect
(
target_metric
[
:metric_id
]).
to
eq
(
common_metric
.
id
)
end
end
...
...
spec/lib/gitlab/metrics_dashboard/service_spec.rb
View file @
d3097abc
...
...
@@ -4,10 +4,11 @@ require 'spec_helper'
describe
Gitlab
::
MetricsDashboard
::
Service
,
:use_clean_rails_memory_store_caching
do
let
(
:project
)
{
build
(
:project
)
}
let
(
:environment
)
{
build
(
:environment
)
}
describe
'get_dashboard'
do
it
'returns a json representation of the environment dashboard'
do
dashboard
=
described_class
.
new
(
project
).
get_dashboard
dashboard
=
described_class
.
new
(
project
,
environment
).
get_dashboard
json
=
JSON
.
parse
(
dashboard
,
symbolize_names:
true
)
expect
(
json
).
to
include
(
:dashboard
,
:order
,
:panel_groups
)
...
...
@@ -17,8 +18,8 @@ describe Gitlab::MetricsDashboard::Service, :use_clean_rails_memory_store_cachin
it
'caches the dashboard for subsequent calls'
do
expect
(
YAML
).
to
receive
(
:load_file
).
once
.
and_call_original
described_class
.
new
(
project
).
get_dashboard
described_class
.
new
(
project
).
get_dashboard
described_class
.
new
(
project
,
environment
).
get_dashboard
described_class
.
new
(
project
,
environment
).
get_dashboard
end
end
end
spec/services/metrics_dashboard_processing_service_spec.rb
deleted
100644 → 0
View file @
730cf5e3
require
'spec_helper'
describe
MetricsDashboardProcessingService
do
let
(
:project
)
{
build
(
:project
)
}
let
(
:dashboard_yml
)
{
YAML
.
load_file
(
'spec/fixtures/services/metrics_dashboard_processing_service.yml'
)
}
describe
'process'
do
let
(
:dashboard
)
{
JSON
.
parse
(
described_class
.
new
(
dashboard_yml
,
project
).
process
,
symbolize_names:
true
)
}
context
'when dashboard config corresponds to common metrics'
do
let!
(
:common_metric
)
{
create
(
:prometheus_metric
,
:common
,
identifier:
'metric_a1'
)
}
it
'inserts metric ids into the config'
do
target_metric
=
all_metrics
.
find
{
|
metric
|
metric
[
:id
]
==
'metric_a1'
}
expect
(
target_metric
).
to
include
(
:metric_id
)
end
end
context
'when the project has associated metrics'
do
let!
(
:project_metric
)
{
create
(
:prometheus_metric
,
project:
project
)
}
it
'includes project-specific metrics'
do
project_metric_details
=
{
query_range:
project_metric
.
query
,
unit:
project_metric
.
unit
,
label:
project_metric
.
legend
,
metric_id:
project_metric
.
id
}
expect
(
all_metrics
).
to
include
project_metric_details
end
it
'includes project metrics at the end of the config'
do
expected_metrics_order
=
[
'metric_b'
,
'metric_a2'
,
'metric_a1'
,
nil
]
actual_metrics_order
=
all_metrics
.
map
{
|
m
|
m
[
:id
]
}
expect
(
actual_metrics_order
).
to
eq
expected_metrics_order
end
end
it
'orders groups by priority and panels by weight'
do
expected_metrics_order
=
%w('metric_b metric_a2 metric_a1')
actual_metrics_order
=
all_metrics
.
map
{
|
m
|
m
[
:id
]
}
expect
(
actual_metrics_order
).
to
eq
expected_metrics_order
end
end
def
all_metrics
dashboard
[
:panel_groups
].
map
do
|
group
|
group
[
:panels
].
map
{
|
panel
|
panel
[
:metrics
]
}
end
.
flatten
end
end
spec/services/metrics_dashboard_service_spec.rb
deleted
100644 → 0
View file @
730cf5e3
require
'spec_helper'
describe
MetricsDashboardService
,
:use_clean_rails_memory_store_caching
do
let
(
:project
)
{
build
(
:project
)
}
describe
'get_dashboard'
do
it
'returns a json representation of the environment dashboard'
do
dashboard
=
described_class
.
new
(
project
).
get_dashboard
json
=
JSON
.
parse
(
dashboard
,
symbolize_names:
true
)
expect
(
json
).
to
include
(
:dashboard
,
:order
,
:panel_groups
)
expect
(
json
[
:panel_groups
]).
to
all
(
include
(
:group
,
:priority
,
:panels
)
)
end
it
'caches the dashboard for subsequent calls'
do
expect
(
YAML
).
to
receive
(
:load_file
).
once
.
and_call_original
described_class
.
new
(
project
).
get_dashboard
described_class
.
new
(
project
).
get_dashboard
end
end
end
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment