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
3c86c990
Commit
3c86c990
authored
Jul 06, 2015
by
Torkel Ödegaard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Added docs for dashboard list panel, #2276
parent
37d75905
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
22 additions
and
4 deletions
+22
-4
docs/mkdocs.yml
+1
-1
docs/sources/reference/dashlist.md
+18
-0
public/app/panels/dashlist/editor.html
+2
-2
public/app/panels/dashlist/module.js
+1
-1
No files found.
docs/mkdocs.yml
View file @
3c86c990
...
@@ -45,7 +45,7 @@ pages:
...
@@ -45,7 +45,7 @@ pages:
-
[
'
reference/graph.md'
,
'
Reference'
,
'
Graph
Panel'
]
-
[
'
reference/graph.md'
,
'
Reference'
,
'
Graph
Panel'
]
-
[
'
reference/singlestat.md'
,
'
Reference'
,
'
Singlestat
Panel'
]
-
[
'
reference/singlestat.md'
,
'
Reference'
,
'
Singlestat
Panel'
]
-
[
'
reference/dashlist.md'
,
'
Reference'
,
'
Dashlist
Panel'
]
-
[
'
reference/dashlist.md'
,
'
Reference'
,
'
Dash
board
list
Panel'
]
-
[
'
reference/sharing.md'
,
'
Reference'
,
'
Sharing'
]
-
[
'
reference/sharing.md'
,
'
Reference'
,
'
Sharing'
]
-
[
'
reference/annotations.md'
,
'
Reference'
,
'
Annotations'
]
-
[
'
reference/annotations.md'
,
'
Reference'
,
'
Annotations'
]
-
[
'
reference/timerange.md'
,
'
Reference'
,
'
Time
range
controls'
]
-
[
'
reference/timerange.md'
,
'
Reference'
,
'
Time
range
controls'
]
...
...
docs/sources/reference/dashlist.md
View file @
3c86c990
...
@@ -6,4 +6,22 @@ page_keywords: grafana, dashlist, panel, documentation
...
@@ -6,4 +6,22 @@ page_keywords: grafana, dashlist, panel, documentation
# Dashlist Panel
# Dashlist Panel
## Overview
!
[
](/img/v2/dashboard_list_panel.png)
The dashboard list panel allows you to show a list of links to other dashboards. The list
can be based on a search query or dashboard tag query. You can also configure it to show your starred
dashboards.
## Options
!
[
](/img/v2/dashboard_list_panel_options.png)
Name | Description
------------ | -------------
Mode | Set search or starred mode
Query | If in search mode specify the search query
Tags | if in search mode specify dashboard tags to search for
Limit number to | Specify the maximum number of dashboards
public/app/panels/dashlist/editor.html
View file @
3c86c990
...
@@ -7,7 +7,7 @@
...
@@ -7,7 +7,7 @@
<strong>
Mode
</strong>
<strong>
Mode
</strong>
</li>
</li>
<li>
<li>
<select
class=
"input-small tight-form-input"
ng-model=
"panel.mode"
ng-options=
"f for f in modes"
ng-change=
"get_data()"
></select>
<select
class=
"input-small tight-form-input
last
"
ng-model=
"panel.mode"
ng-options=
"f for f in modes"
ng-change=
"get_data()"
></select>
</li>
</li>
</ul>
</ul>
<div
class=
"clearfix"
></div>
<div
class=
"clearfix"
></div>
...
@@ -47,7 +47,7 @@
...
@@ -47,7 +47,7 @@
<strong>
Limit number to
</strong>
<strong>
Limit number to
</strong>
</li>
</li>
<li>
<li>
<input
class=
"input-small tight-form-input"
type=
"number"
ng-model=
"panel.limit"
ng-model-onblur
ng-change=
"get_data()"
>
<input
class=
"input-small tight-form-input
last
"
type=
"number"
ng-model=
"panel.limit"
ng-model-onblur
ng-change=
"get_data()"
>
</li>
</li>
</ul>
</ul>
<div
class=
"clearfix"
></div>
<div
class=
"clearfix"
></div>
...
...
public/app/panels/dashlist/module.js
View file @
3c86c990
...
@@ -21,7 +21,7 @@ function (angular, app, _, config, PanelMeta) {
...
@@ -21,7 +21,7 @@ function (angular, app, _, config, PanelMeta) {
module
.
controller
(
'DashListPanelCtrl'
,
function
(
$scope
,
panelSrv
,
backendSrv
)
{
module
.
controller
(
'DashListPanelCtrl'
,
function
(
$scope
,
panelSrv
,
backendSrv
)
{
$scope
.
panelMeta
=
new
PanelMeta
({
$scope
.
panelMeta
=
new
PanelMeta
({
panelName
:
'Dash list'
,
panelName
:
'Dash
board
list'
,
editIcon
:
"fa fa-star"
,
editIcon
:
"fa fa-star"
,
fullscreen
:
true
,
fullscreen
:
true
,
});
});
...
...
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