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
95b9f472
Commit
95b9f472
authored
Oct 10, 2016
by
bergquist
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
tech(influxdb): remove unused logging
parent
f919d04e
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
0 additions
and
10 deletions
+0
-10
pkg/tsdb/influxdb/response_parser.go
+0
-6
pkg/tsdb/interval.go
+0
-4
No files found.
pkg/tsdb/influxdb/response_parser.go
View file @
95b9f472
...
...
@@ -18,12 +18,6 @@ func (rp *ResponseParser) Parse(response *Response) *tsdb.QueryResult {
rp
.
parseResult
(
result
.
Series
,
queryRes
)
}
/*
for _, serie := range queryRes.Series {
glog.Debug("result", "name", serie.Name, "points", serie.Points)
}
*/
return
queryRes
}
...
...
pkg/tsdb/interval.go
View file @
95b9f472
...
...
@@ -3,8 +3,6 @@ package tsdb
import
(
"fmt"
"time"
"github.com/grafana/grafana/pkg/log"
)
var
(
...
...
@@ -17,8 +15,6 @@ var (
func
CalculateInterval
(
timerange
*
TimeRange
)
string
{
interval
:=
time
.
Duration
((
timerange
.
MustGetTo
()
.
UnixNano
()
-
timerange
.
MustGetFrom
()
.
UnixNano
())
/
defaultRes
)
log
.
Info2
(
"res"
,
"resinMs"
,
time
.
Duration
(
interval
)
.
String
())
if
interval
<
minInterval
{
return
formatDuration
(
minInterval
)
}
...
...
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