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
3bbc86bc
Commit
3bbc86bc
authored
Apr 22, 2016
by
Torkel Ödegaard
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #4719 from nlf/master
dont quote numbers for influxdb, closes #4163
parents
8b656f15
b6de656c
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
5 additions
and
3 deletions
+5
-3
public/app/plugins/datasource/influxdb/influx_query.ts
+3
-1
public/app/plugins/datasource/influxdb/query_builder.js
+2
-2
No files found.
public/app/plugins/datasource/influxdb/influx_query.ts
View file @
3bbc86bc
...
...
@@ -152,7 +152,9 @@ export default class InfluxQuery {
if
(
interpolate
)
{
value
=
this
.
templateSrv
.
replace
(
value
,
this
.
scopedVars
);
}
value
=
"'"
+
value
.
replace
(
'
\
\'
, '
\\\\
') + "'
";
if
(
isNaN
(
+
value
))
{
value
=
"'"
+
value
.
replace
(
'
\
\'
, '
\\\\
') + "'
";
}
} else if (interpolate){
value = this.templateSrv.replace(value, this.scopedVars, 'regex');
}
...
...
public/app/plugins/datasource/influxdb/query_builder.js
View file @
3bbc86bc
...
...
@@ -25,8 +25,8 @@ function (_) {
}
}
// quote value unless regex
if
(
operator
!==
'=~'
&&
operator
!==
'!~'
)
{
// quote value unless regex
or number
if
(
operator
!==
'=~'
&&
operator
!==
'!~'
&&
isNaN
(
+
value
)
)
{
value
=
"'"
+
value
+
"'"
;
}
...
...
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