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
0
Merge Requests
0
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
Boxiang Sun
gitlab-ce
Commits
fda83a61
Commit
fda83a61
authored
Aug 07, 2017
by
Bob Van Landuyt
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Use correct `Environment`-class within `Gitlab` namespace
parent
faabcbd3
Changes
3
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
4 additions
and
4 deletions
+4
-4
lib/gitlab/prometheus/queries/additional_metrics_environment_query.rb
...rometheus/queries/additional_metrics_environment_query.rb
+1
-1
lib/gitlab/prometheus/queries/environment_query.rb
lib/gitlab/prometheus/queries/environment_query.rb
+1
-1
lib/gitlab/usage_data.rb
lib/gitlab/usage_data.rb
+2
-2
No files found.
lib/gitlab/prometheus/queries/additional_metrics_environment_query.rb
View file @
fda83a61
...
@@ -5,7 +5,7 @@ module Gitlab
...
@@ -5,7 +5,7 @@ module Gitlab
include
QueryAdditionalMetrics
include
QueryAdditionalMetrics
def
query
(
environment_id
)
def
query
(
environment_id
)
Environment
.
find_by
(
id:
environment_id
).
try
do
|
environment
|
::
Environment
.
find_by
(
id:
environment_id
).
try
do
|
environment
|
query_metrics
(
query_metrics
(
common_query_context
(
environment
,
timeframe_start:
8
.
hours
.
ago
.
to_f
,
timeframe_end:
Time
.
now
.
to_f
)
common_query_context
(
environment
,
timeframe_start:
8
.
hours
.
ago
.
to_f
,
timeframe_end:
Time
.
now
.
to_f
)
)
)
...
...
lib/gitlab/prometheus/queries/environment_query.rb
View file @
fda83a61
...
@@ -3,7 +3,7 @@ module Gitlab
...
@@ -3,7 +3,7 @@ module Gitlab
module
Queries
module
Queries
class
EnvironmentQuery
<
BaseQuery
class
EnvironmentQuery
<
BaseQuery
def
query
(
environment_id
)
def
query
(
environment_id
)
Environment
.
find_by
(
id:
environment_id
).
try
do
|
environment
|
::
Environment
.
find_by
(
id:
environment_id
).
try
do
|
environment
|
environment_slug
=
environment
.
slug
environment_slug
=
environment
.
slug
timeframe_start
=
8
.
hours
.
ago
.
to_f
timeframe_start
=
8
.
hours
.
ago
.
to_f
timeframe_end
=
Time
.
now
.
to_f
timeframe_end
=
Time
.
now
.
to_f
...
...
lib/gitlab/usage_data.rb
View file @
fda83a61
...
@@ -27,8 +27,8 @@ module Gitlab
...
@@ -27,8 +27,8 @@ module Gitlab
ci_pipeline_schedules:
::
Ci
::
PipelineSchedule
.
count
,
ci_pipeline_schedules:
::
Ci
::
PipelineSchedule
.
count
,
deploy_keys:
DeployKey
.
count
,
deploy_keys:
DeployKey
.
count
,
deployments:
Deployment
.
count
,
deployments:
Deployment
.
count
,
environments:
Environment
.
count
,
environments:
::
Environment
.
count
,
in_review_folder:
Environment
.
in_review_folder
.
count
,
in_review_folder:
::
Environment
.
in_review_folder
.
count
,
groups:
Group
.
count
,
groups:
Group
.
count
,
issues:
Issue
.
count
,
issues:
Issue
.
count
,
keys:
Key
.
count
,
keys:
Key
.
count
,
...
...
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