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
f9df5800
Unverified
Commit
f9df5800
authored
Aug 01, 2020
by
Ryan McKinley
Committed by
GitHub
Aug 01, 2020
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Inspector: hide invalid stats (#26750)
parent
094254c0
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
0 deletions
+4
-0
public/app/features/dashboard/components/Inspector/InspectStatsTab.tsx
+4
-0
No files found.
public/app/features/dashboard/components/Inspector/InspectStatsTab.tsx
View file @
f9df5800
...
...
@@ -23,8 +23,12 @@ export const InspectStatsTab: React.FC<InspectStatsTabProps> = ({ data, dashboar
dataRows
+=
frame
.
length
;
}
if
(
requestTime
>
0
)
{
stats
.
push
({
displayName
:
'Total request time'
,
value
:
requestTime
,
unit
:
'ms'
});
}
if
(
processingTime
>
0
)
{
stats
.
push
({
displayName
:
'Data processing time'
,
value
:
processingTime
,
unit
:
'ms'
});
}
stats
.
push
({
displayName
:
'Number of queries'
,
value
:
data
.
request
.
targets
.
length
});
stats
.
push
({
displayName
:
'Total number rows'
,
value
:
dataRows
});
...
...
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