vitrage Alarms table, add sort, global search
Change-Id: I5f9dd5db51f88c69bffc33d8d7e8bbdc2fdd4949
This commit is contained in:
@@ -1,3 +1,4 @@
|
|||||||
|
#!/usr/bin/env bash
|
||||||
# plugin.sh - DevStack plugin.sh dispatch script vitrage-dashboard
|
# plugin.sh - DevStack plugin.sh dispatch script vitrage-dashboard
|
||||||
|
|
||||||
VITRAGE_DASHBOARD_DIR=$(cd $(dirname $BASH_SOURCE)/.. && pwd)
|
VITRAGE_DASHBOARD_DIR=$(cd $(dirname $BASH_SOURCE)/.. && pwd)
|
||||||
@@ -5,6 +6,7 @@ VITRAGE_DASHBOARD_DIR=$(cd $(dirname $BASH_SOURCE)/.. && pwd)
|
|||||||
function install_vitrage_dashboard {
|
function install_vitrage_dashboard {
|
||||||
sudo pip install --upgrade ${VITRAGE_DASHBOARD_DIR}
|
sudo pip install --upgrade ${VITRAGE_DASHBOARD_DIR}
|
||||||
cp -a ${VITRAGE_DASHBOARD_DIR}/vitragedashboard/static ${DEST}/horizon/
|
cp -a ${VITRAGE_DASHBOARD_DIR}/vitragedashboard/static ${DEST}/horizon/
|
||||||
|
cp -a ${VITRAGE_DASHBOARD_DIR}/vitragealarms/static ${DEST}/horizon/
|
||||||
cp -a ${VITRAGE_DASHBOARD_DIR}/vitragedashboard/enabled/* ${DEST}/horizon/openstack_dashboard/enabled/
|
cp -a ${VITRAGE_DASHBOARD_DIR}/vitragedashboard/enabled/* ${DEST}/horizon/openstack_dashboard/enabled/
|
||||||
cp -a ${VITRAGE_DASHBOARD_DIR}/vitrageclient/api/* ${DEST}/horizon/openstack_dashboard/api/
|
cp -a ${VITRAGE_DASHBOARD_DIR}/vitrageclient/api/* ${DEST}/horizon/openstack_dashboard/api/
|
||||||
python ${DEST}/horizon/manage.py compress --force
|
python ${DEST}/horizon/manage.py compress --force
|
||||||
@@ -22,7 +24,6 @@ if is_service_enabled vitrage-dashboard; then
|
|||||||
# Perform installation of service source
|
# Perform installation of service source
|
||||||
# no-op
|
# no-op
|
||||||
:
|
:
|
||||||
|
|
||||||
elif [[ "$1" == "stack" && "$2" == "post-config" ]]; then
|
elif [[ "$1" == "stack" && "$2" == "post-config" ]]; then
|
||||||
# Configure after the other layer 1 and 2 services have been configured
|
# Configure after the other layer 1 and 2 services have been configured
|
||||||
echo_summary "Installing Vitrage Dashboard"
|
echo_summary "Installing Vitrage Dashboard"
|
||||||
|
|||||||
@@ -9,6 +9,8 @@
|
|||||||
|
|
||||||
function AlarmListController($scope, vitrageTopologySrv) {
|
function AlarmListController($scope, vitrageTopologySrv) {
|
||||||
var alarmList = this;
|
var alarmList = this;
|
||||||
|
alarmList.alarms = [];
|
||||||
|
alarmList.ialarms = [];
|
||||||
$scope.STATIC_URL = STATIC_URL;
|
$scope.STATIC_URL = STATIC_URL;
|
||||||
alarmList.alarms = [];
|
alarmList.alarms = [];
|
||||||
vitrageTopologySrv.getAlarms('all').then(function(result){
|
vitrageTopologySrv.getAlarms('all').then(function(result){
|
||||||
|
|||||||
@@ -1,20 +1,30 @@
|
|||||||
<div class="alarm-list" ng-controller="AlarmListController as alarmList">
|
<div class="alarm-list" ng-controller="AlarmListController as alarmList">
|
||||||
<div class="panel panel-default" >
|
<div class="panel panel-default" >
|
||||||
|
<table st-table='alarmList.ialarms' st-safe-src="alarmList.alarms" class="table-striped table-rsp table-detail modern" hz-table>
|
||||||
<table class="table table-striped table-hover table-bordered">
|
|
||||||
<thead>
|
<thead>
|
||||||
<tr>
|
<tr>
|
||||||
<th>{$ 'TimeStamp' | translate $}</th>
|
<th st-sort="update_timestamp">{$ 'TimeStamp' | translate $}</th>
|
||||||
<th>{$ 'Name' | translate $}</th>
|
<th st-sort="name">{$ 'Name' | translate $}</th>
|
||||||
<th>{$ 'Severity' | translate $}</th>
|
<th st-sort="resource_type">{$ 'Resource Type' | translate $}</th>
|
||||||
<th>{$ 'Type' | translate $}</th>
|
<th st-sort="resource_name">{$ 'Resource Name' | translate $}</th>
|
||||||
|
<th st-sort="severity">{$ 'Severity' | translate $}</th>
|
||||||
|
<th st-sort="type">{$ 'Type' | translate $}</th>
|
||||||
<th>{$ 'RCA' | translate $}</th>
|
<th>{$ 'RCA' | translate $}</th>
|
||||||
</tr>
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<th colspan="7">
|
||||||
|
<hz-search-bar group-classes="input-group-sm"
|
||||||
|
icon-classes="fa-search">
|
||||||
|
</hz-search-bar>
|
||||||
|
</th>
|
||||||
|
</tr>
|
||||||
</thead>
|
</thead>
|
||||||
<tbody>
|
<tbody>
|
||||||
<tr ng-repeat="alarm in alarmList.alarms track by $index">
|
<tr ng-repeat="alarm in alarmList.ialarms track by $index">
|
||||||
<td><i class="fa fa-clock-o"></i> {$alarm.update_timestamp | date:"h:mm a"$} </td>
|
<td><i class="fa fa-clock-o"></i> {$alarm.update_timestamp | date:"h:mm a"$} </td>
|
||||||
<td>{$alarm.name$}</td>
|
<td>{$alarm.name$}</td>
|
||||||
|
<td>{$alarm.resource_type$}</td>
|
||||||
|
<td>{$alarm.resource_name$}</td>
|
||||||
<td>{$alarm.severity $}</td>
|
<td>{$alarm.severity $}</td>
|
||||||
<td>{$alarm.type$}</td>
|
<td>{$alarm.type$}</td>
|
||||||
<td><i class="fa fa-sitemap"></i></td>
|
<td><i class="fa fa-sitemap"></i></td>
|
||||||
|
|||||||
31
vitragedashboard/locale/django.pot
Normal file
31
vitragedashboard/locale/django.pot
Normal file
@@ -0,0 +1,31 @@
|
|||||||
|
# Translations template for PROJECT.
|
||||||
|
# Copyright (C) 2016 ORGANIZATION
|
||||||
|
# This file is distributed under the same license as the PROJECT project.
|
||||||
|
# FIRST AUTHOR <EMAIL@ADDRESS>, 2016.
|
||||||
|
#
|
||||||
|
#, fuzzy
|
||||||
|
msgid ""
|
||||||
|
msgstr ""
|
||||||
|
"Project-Id-Version: PROJECT VERSION\n"
|
||||||
|
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
|
||||||
|
"POT-Creation-Date: 2016-02-11 07:34+0000\n"
|
||||||
|
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||||
|
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||||
|
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||||
|
"MIME-Version: 1.0\n"
|
||||||
|
"Content-Type: text/plain; charset=utf-8\n"
|
||||||
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
|
"Generated-By: Babel 2.2.0\n"
|
||||||
|
|
||||||
|
#: vitragedashboard/templates/topology/index.html:3
|
||||||
|
#: vitragedashboard/static/dashboard/project/layout/main/compute/compute.html:19
|
||||||
|
msgid "Topology"
|
||||||
|
msgstr "Topology"
|
||||||
|
|
||||||
|
#: vitragedashboard/templates/topology/index.html:6
|
||||||
|
msgid "\"Topology\""
|
||||||
|
msgstr "Topology"
|
||||||
|
|
||||||
|
#: vitragedashboard/static/dashboard/project/layout/main/compute/compute.html:7
|
||||||
|
msgid "Info"
|
||||||
|
msgstr "Info"
|
||||||
0
vitragedashboard/locale/djangojs.pot
Normal file
0
vitragedashboard/locale/djangojs.pot
Normal file
@@ -4,7 +4,7 @@
|
|||||||
<div class="col-md-3">
|
<div class="col-md-3">
|
||||||
<div class="panel panel-primary">
|
<div class="panel panel-primary">
|
||||||
<div class="panel-heading">
|
<div class="panel-heading">
|
||||||
<h3 class="panel-title">Info.</h3>
|
<h3 class="panel-title">{$ 'Info' |translate$}</h3>
|
||||||
</div>
|
</div>
|
||||||
<div class="panel-body">
|
<div class="panel-body">
|
||||||
<hz-information selected="computeCtrl.model.selected"></hz-information>
|
<hz-information selected="computeCtrl.model.selected"></hz-information>
|
||||||
@@ -16,7 +16,7 @@
|
|||||||
<div class="col-md-9">
|
<div class="col-md-9">
|
||||||
<div class="panel panel-primary">
|
<div class="panel panel-primary">
|
||||||
<div class="panel-heading">
|
<div class="panel-heading">
|
||||||
<h3 class="panel-title">Topology</h3>
|
<h3 class="panel-title">{$ 'Topology' |translate$}</h3>
|
||||||
</div>
|
</div>
|
||||||
<div class="panel-body">
|
<div class="panel-body">
|
||||||
<div class="col-md-10">
|
<div class="col-md-10">
|
||||||
|
|||||||
@@ -3,7 +3,8 @@
|
|||||||
{% block title %}{% trans "Topology" %}{% endblock %}
|
{% block title %}{% trans "Topology" %}{% endblock %}
|
||||||
|
|
||||||
{% block page_header %}
|
{% block page_header %}
|
||||||
<hz-page-header header="Topology Vitrage" description="Topology Vitrage Desc"></hz-page-header>
|
{% include "horizon/common/_page_header.html" with title=_("Topology") %}
|
||||||
|
<!--<hz-page-header header="Topology Vitrage" description="Topology Vitrage Desc"></hz-page-header>-->
|
||||||
{% endblock page_header %}
|
{% endblock page_header %}
|
||||||
|
|
||||||
{% block main %}
|
{% block main %}
|
||||||
|
|||||||
Reference in New Issue
Block a user