Skip to content

Commit d4da2b8

Browse files
committed
add the selfmonitor
1 parent 07e8a68 commit d4da2b8

31 files changed

Lines changed: 27989 additions & 0 deletions

selfm/Snip20170216_1.png

684 KB
Loading

selfm/Snip20170216_2.png

673 KB
Loading

selfm/Snip20170216_3.png

662 KB
Loading

selfm/Snip20170216_4.png

671 KB
Loading

selfm/Snip20170216_5.png

656 KB
Loading
Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
# The slug of the panel to be added to HORIZON_CONFIG. Required.
2+
PANEL = 'mypanel'
3+
# The slug of the dashboard the PANEL associated with. Required.
4+
PANEL_DASHBOARD = 'project'
5+
# The slug of the panel group the PANEL is associated with.
6+
PANEL_GROUP = 'unit'
7+
8+
# Python panel class of the PANEL to be added.
9+
ADD_PANEL = 'openstack_dashboard.dashboards.project.mypanel.panel.Mypanel'

selfm/_1510_unit_panel_group.py

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
from django.utils.translation import ugettext_lazy as _
2+
3+
# The slug of the panel group to be added to HORIZON_CONFIG. Required.
4+
PANEL_GROUP = 'unit'
5+
# The display name of the PANEL_GROUP. Required.
6+
PANEL_GROUP_NAME = _('unitt')
7+
# The slug of the dashboard the PANEL_GROUP associated with. Required.
8+
PANEL_GROUP_DASHBOARD = 'project'

0 commit comments

Comments
 (0)