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
d6158bc2
Commit
d6158bc2
authored
Aug 01, 2018
by
Tobias Skarhed
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
All tests passing
parent
e4c2476f
Expand all
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
1 additions
and
12 deletions
+1
-12
public/app/plugins/datasource/prometheus/datasource.ts
+0
-6
public/app/plugins/datasource/prometheus/result_transformer.ts
+1
-6
public/app/plugins/datasource/prometheus/specs/_datasource.jest.ts
+0
-0
public/app/plugins/datasource/prometheus/specs/datasource_specs.ts
+0
-0
No files found.
public/app/plugins/datasource/prometheus/datasource.ts
View file @
d6158bc2
...
...
@@ -175,12 +175,7 @@ export class PrometheusDatasource {
responseIndex: index,
refId: activeTargets[index].refId,
};
console.log('
format
:
' + transformerOptions.format);
console.log('
resultType
:
' + response.data.data.resultType);
console.log('
legendFormat
:
' + transformerOptions.legendFormat);
// console.log(result);
this.resultTransformer.transform(result, response, transformerOptions);
// console.log(result);
});
return { data: result };
...
...
@@ -237,7 +232,6 @@ export class PrometheusDatasource {
if (start > end) {
throw { message: '
Invalid
time
range
' };
}
// console.log(query.expr);
var url = '
/
api
/
v1
/
query_range
';
var data = {
...
...
public/app/plugins/datasource/prometheus/result_transformer.ts
View file @
d6158bc2
...
...
@@ -6,9 +6,7 @@ export class ResultTransformer {
transform
(
result
:
any
,
response
:
any
,
options
:
any
)
{
let
prometheusResult
=
response
.
data
.
data
.
result
;
console
.
log
(
prometheusResult
);
// console.log(options);
// console.log(result);
if
(
options
.
format
===
'table'
)
{
result
.
push
(
this
.
transformMetricDataToTable
(
prometheusResult
,
options
.
responseListLength
,
options
.
refId
));
}
else
if
(
options
.
format
===
'heatmap'
)
{
...
...
@@ -28,7 +26,6 @@ export class ResultTransformer {
}
}
}
// console.log(result);
}
transformMetricData
(
metricData
,
options
,
start
,
end
)
{
...
...
@@ -140,7 +137,6 @@ export class ResultTransformer {
if
(
!
label
||
label
===
'{}'
)
{
label
=
options
.
query
;
}
console
.
log
(
label
);
return
label
;
}
...
...
@@ -160,7 +156,6 @@ export class ResultTransformer {
var
labelPart
=
_
.
map
(
_
.
toPairs
(
labelData
),
function
(
label
)
{
return
label
[
0
]
+
'="'
+
label
[
1
]
+
'"'
;
}).
join
(
','
);
console
.
log
(
metricName
);
return
metricName
+
'{'
+
labelPart
+
'}'
;
}
...
...
public/app/plugins/datasource/prometheus/specs/_datasource.jest.ts
View file @
d6158bc2
This diff is collapsed.
Click to expand it.
public/app/plugins/datasource/prometheus/specs/datasource_specs.ts
deleted
100644 → 0
View file @
e4c2476f
This diff is collapsed.
Click to expand it.
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