BigW Consortium Gitlab
Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
G
gitlab-ce
Project
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Commits
Issue Boards
Open sidebar
Forest Godfrey
gitlab-ce
Commits
c00a5e86
Commit
c00a5e86
authored
Aug 29, 2017
by
Phil Hughes
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch '37104-fix-graph-date-format' into 'master'
Resolve "Monitoring graph date formatting is wrong" Closes #37104 See merge request !13865
parents
f0d22bb6
596fe67a
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
27 additions
and
15 deletions
+27
-15
monitoring_column.vue
...s/javascripts/monitoring/components/monitoring_column.vue
+2
-0
monitoring_deployment.vue
...vascripts/monitoring/components/monitoring_deployment.vue
+3
-6
monitoring_flag.vue
...ets/javascripts/monitoring/components/monitoring_flag.vue
+2
-5
constants.js
app/assets/javascripts/monitoring/constants.js
+0
-4
date_time_formatters.js
...sets/javascripts/monitoring/utils/date_time_formatters.js
+15
-0
37104-fix-graph-date-format.yml
changelogs/unreleased/37104-fix-graph-date-format.yml
+5
-0
No files found.
app/assets/javascripts/monitoring/components/monitoring_column.vue
View file @
c00a5e86
...
...
@@ -7,6 +7,7 @@
import
eventHub
from
'../event_hub'
;
import
measurements
from
'../utils/measurements'
;
import
{
formatRelevantDigits
}
from
'../../lib/utils/number_utils'
;
import
{
timeScaleFormat
}
from
'../utils/date_time_formatters'
;
import
bp
from
'../../breakpoints'
;
const
bisectDate
=
d3
.
bisector
(
d
=>
d
.
time
).
left
;
...
...
@@ -159,6 +160,7 @@
const
xAxis
=
d3
.
svg
.
axis
()
.
scale
(
axisXScale
)
.
ticks
(
measurements
.
xTicks
)
.
tickFormat
(
timeScaleFormat
)
.
orient
(
'bottom'
);
const
yAxis
=
d3
.
svg
.
axis
()
...
...
app/assets/javascripts/monitoring/components/monitoring_deployment.vue
View file @
c00a5e86
<
script
>
import
{
dateFormat
,
timeFormat
,
}
from
'../constants'
;
import
{
dateFormat
,
timeFormat
}
from
'../utils/date_time_formatters'
;
export
default
{
props
:
{
...
...
@@ -58,7 +55,7 @@
class=
"deploy-info"
v-if=
"showDeployInfo"
>
<g
v-for=
"(deployment, index) in deploymentData"
v-for=
"(deployment, index) in deploymentData"
:key=
"index"
:class=
"nameDeploymentClass(deployment)"
:transform=
"transformDeploymentGroup(deployment)"
>
...
...
@@ -92,7 +89,7 @@
width=
"90"
height=
"58"
>
</rect>
<g
<g
transform=
"translate(5, 2)"
>
<text
class=
"deploy-info-text text-metric-bold"
>
...
...
app/assets/javascripts/monitoring/components/monitoring_flag.vue
View file @
c00a5e86
<
script
>
import
{
dateFormat
,
timeFormat
,
}
from
'../constants'
;
import
{
dateFormat
,
timeFormat
}
from
'../utils/date_time_formatters'
;
export
default
{
props
:
{
...
...
@@ -72,7 +69,7 @@
r=
"5"
transform=
"translate(-5, 20)"
>
</circle>
<svg
<svg
class=
"rect-text-metric"
:x=
"currentFlagPosition"
y=
"0"
>
...
...
app/assets/javascripts/monitoring/constants.js
deleted
100644 → 0
View file @
f0d22bb6
import
d3
from
'd3'
;
export
const
dateFormat
=
d3
.
time
.
format
(
'%b %d, %Y'
);
export
const
timeFormat
=
d3
.
time
.
format
(
'%H:%M%p'
);
app/assets/javascripts/monitoring/utils/date_time_formatters.js
0 → 100644
View file @
c00a5e86
import
d3
from
'd3'
;
export
const
dateFormat
=
d3
.
time
.
format
(
'%b %-d, %Y'
);
export
const
timeFormat
=
d3
.
time
.
format
(
'%-I:%M%p'
);
export
const
timeScaleFormat
=
d3
.
time
.
format
.
multi
([
[
'.%L'
,
d
=>
d
.
getMilliseconds
()],
[
':%S'
,
d
=>
d
.
getSeconds
()],
[
'%-I:%M'
,
d
=>
d
.
getMinutes
()],
[
'%-I %p'
,
d
=>
d
.
getHours
()],
[
'%a %-d'
,
d
=>
d
.
getDay
()
&&
d
.
getDate
()
!==
1
],
[
'%b %-d'
,
d
=>
d
.
getDate
()
!==
1
],
[
'%B'
,
d
=>
d
.
getMonth
()],
[
'%Y'
,
()
=>
true
],
]);
changelogs/unreleased/37104-fix-graph-date-format.yml
0 → 100644
View file @
c00a5e86
---
title
:
Fix incorrect date/time formatting on prometheus graphs
merge_request
:
13865
author
:
type
:
fixed
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