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
cf77c3a5
Unverified
Commit
cf77c3a5
authored
Apr 24, 2020
by
Torkel Ödegaard
Committed by
GitHub
Apr 24, 2020
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Metriktank: Linage UI updates (#23848)
parent
58de0dab
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
16 additions
and
6 deletions
+16
-6
public/app/features/dashboard/components/PanelEditor/state/selectors.ts
+1
-1
public/app/features/dashboard/dashgrid/PanelHeader/PanelHeader.tsx
+2
-2
public/app/plugins/datasource/graphite/MetricTankMetaInspector.tsx
+13
-3
No files found.
public/app/features/dashboard/components/PanelEditor/state/selectors.ts
View file @
cf77c3a5
...
...
@@ -43,7 +43,7 @@ export const getPanelEditorTabs = memoizeOne((location: LocationState, plugin?:
});
}
const
activeTab
=
tabs
.
find
(
item
=>
item
.
id
===
(
location
.
query
.
tab
||
defaultTab
))
;
const
activeTab
=
tabs
.
find
(
item
=>
item
.
id
===
location
.
query
.
tab
||
defaultTab
)
??
tabs
[
0
]
;
activeTab
.
active
=
true
;
return
tabs
;
...
...
public/app/features/dashboard/dashgrid/PanelHeader/PanelHeader.tsx
View file @
cf77c3a5
...
...
@@ -101,7 +101,7 @@ export class PanelHeader extends Component<Props, State> {
e
.
stopPropagation
();
updateLocation
({
query
:
{
inspect
:
panel
.
id
,
tab
},
query
:
{
inspect
:
panel
.
id
,
inspectTab
:
tab
},
partial
:
true
,
});
};
...
...
@@ -110,7 +110,7 @@ export class PanelHeader extends Component<Props, State> {
return
(
<
Tooltip
content=
{
notice
.
text
}
key=
{
notice
.
severity
}
>
{
notice
.
inspect
?
(
<
div
className=
"panel-info-notice"
onClick=
{
e
=>
this
.
openInspect
(
e
,
notice
.
inspect
!
)
}
>
<
div
className=
"panel-info-notice
pointer
"
onClick=
{
e
=>
this
.
openInspect
(
e
,
notice
.
inspect
!
)
}
>
<
Icon
name=
"info-circle"
style=
{
{
marginRight
:
'8px'
}
}
/>
</
div
>
)
:
(
...
...
public/app/plugins/datasource/graphite/MetricTankMetaInspector.tsx
View file @
cf77c3a5
...
...
@@ -30,7 +30,10 @@ export class MetricTankMetaInspector extends PureComponent<Props, State> {
return
(
<
div
className=
{
styles
.
metaItem
}
key=
{
key
}
>
<
div
className=
{
styles
.
metaItemHeader
}
>
Schema:
{
meta
[
'schema-name'
]
}
</
div
>
<
div
className=
{
styles
.
metaItemHeader
}
>
Schema:
{
meta
[
'schema-name'
]
}
<
div
className=
"small muted"
>
Series count:
{
meta
.
count
}
</
div
>
</
div
>
<
div
className=
{
styles
.
metaItemBody
}
>
<
div
className=
{
styles
.
step
}
>
<
div
className=
{
styles
.
stepHeading
}
>
Step 1: Fetch
</
div
>
...
...
@@ -97,7 +100,12 @@ export class MetricTankMetaInspector extends PureComponent<Props, State> {
for
(
const
metaItem
of
series
.
meta
.
custom
.
seriesMetaList
as
MetricTankSeriesMeta
[])
{
// key is to dedupe as many series will have identitical meta
const
key
=
`
${
metaItem
[
'schema-name'
]}
-
${
metaItem
[
'archive-read'
]}
`
;
seriesMetas
[
key
]
=
metaItem
;
if
(
seriesMetas
[
key
])
{
seriesMetas
[
key
].
count
+=
metaItem
.
count
;
}
else
{
seriesMetas
[
key
]
=
metaItem
;
}
}
}
}
...
...
@@ -108,7 +116,7 @@ export class MetricTankMetaInspector extends PureComponent<Props, State> {
return
(
<
div
>
<
h2
className=
"page-heading"
>
Aggregation
&
rollup
</
h2
>
<
h2
className=
"page-heading"
>
Metrictank Lineage
</
h2
>
{
Object
.
keys
(
seriesMetas
).
map
(
key
=>
this
.
renderMeta
(
seriesMetas
[
key
],
key
))
}
</
div
>
);
...
...
@@ -131,6 +139,8 @@ const getStyles = stylesFactory(() => {
background:
${
headerBg
}
;
padding:
${
theme
.
spacing
.
xs
}
${
theme
.
spacing
.
md
}
;
font-size:
${
theme
.
typography
.
size
.
md
}
;
display: flex;
justify-content: space-between;
`
,
metaItemBody
:
css
`
padding:
${
theme
.
spacing
.
md
}
;
...
...
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