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
bfdf25a1
Commit
bfdf25a1
authored
Jul 14, 2014
by
Torkel Ödegaard
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'master' into dashboard_loading_refactoring
parents
b5d378c4
6e0e6f5e
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
3 deletions
+4
-3
CHANGELOG.md
+3
-2
src/app/services/influxdb/influxdbDatasource.js
+1
-1
No files found.
CHANGELOG.md
View file @
bfdf25a1
...
@@ -4,10 +4,11 @@ vNext
...
@@ -4,10 +4,11 @@ vNext
-
Allow
[
[..
]
] filter notation in all text panels (markdown/html/text) (Issue #511)
-
Allow
[
[..
]
] filter notation in all text panels (markdown/html/text) (Issue #511)
-
New legend display option "Align as table" (Issue #136)
-
New legend display option "Align as table" (Issue #136)
-
New legend display option "Right side", will show legend to the right of the graph (Issue #556)
-
New legend display option "Right side", will show legend to the right of the graph (Issue #556)
-
Enhanced InfluxDB series aliasing (legend names) with pattern replacements (Issue #525)
-
InfluxDB: Enhanced series aliasing (legend names) with pattern replacements (Issue #525)
-
InfluxDB: Add continuous query in series results (series typeahead). #581
**Changes**
**Changes**
-
Use unix epoch for Graphite from/to for absolute time ranges (Closes #536)
-
Graphite:
Use unix epoch for Graphite from/to for absolute time ranges (Closes #536)
**Fixes**
**Fixes**
-
Fix formatting negative values (PR #545)
-
Fix formatting negative values (PR #545)
...
...
src/app/services/influxdb/influxdbDatasource.js
View file @
bfdf25a1
...
@@ -126,7 +126,7 @@ function (angular, _, kbn, InfluxSeries) {
...
@@ -126,7 +126,7 @@ function (angular, _, kbn, InfluxSeries) {
};
};
InfluxDatasource
.
prototype
.
listSeries
=
function
()
{
InfluxDatasource
.
prototype
.
listSeries
=
function
()
{
return
this
.
doInfluxRequest
(
'
list series
'
).
then
(
function
(
data
)
{
return
this
.
doInfluxRequest
(
'
select * from /.*/ limit 1
'
).
then
(
function
(
data
)
{
return
_
.
map
(
data
,
function
(
series
)
{
return
_
.
map
(
data
,
function
(
series
)
{
return
series
.
name
;
return
series
.
name
;
});
});
...
...
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