Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
N
nexpie-grafana-theme
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Registry
Registry
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Kornkitt Poolsup
nexpie-grafana-theme
Commits
c925014b
Commit
c925014b
authored
Jun 25, 2014
by
Torkel Ödegaard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Use unix epoch for Graphite from/to for absolute time ranges, #536
parent
32b11b10
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
9 deletions
+6
-9
CHANGELOG.md
+5
-0
src/app/services/graphite/graphiteDatasource.js
+1
-9
No files found.
CHANGELOG.md
View file @
c925014b
vNext
**Changes**
-
Use unix epoch for Graphite from/to for absolute time ranges (Closes #536)
# 1.6.1 (2014-06-24)
**New features or improvements**
...
...
src/app/services/graphite/graphiteDatasource.js
View file @
c925014b
...
...
@@ -104,15 +104,7 @@ function (angular, _, $, config, kbn, moment) {
}
}
if
(
dashboard
.
current
.
timezone
===
'browser'
)
{
date
=
date
.
local
();
}
if
(
config
.
timezoneOffset
)
{
date
=
date
.
zone
(
config
.
timezoneOffset
);
}
return
date
.
format
(
'HH:mm_YYYYMMDD'
);
return
date
.
unix
();
};
GraphiteDatasource
.
prototype
.
metricFindQuery
=
function
(
filterSrv
,
query
)
{
...
...
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