a06a2f48b3
Added cluster detail overview for mysql compatible clusters and cassandra clusters. Added mariabdb and cassandra to the list of cluster datastores and grow/shrink capable datastores. Clean up some code that was duplicated in many places. Change-Id: I395184554c749ad1584f57fa9480c1353e6a6d38 Closes-Bug: #1551906
93 lines
3.3 KiB
Python
93 lines
3.3 KiB
Python
# Copyright (c) 2014 eBay Software Foundation
|
|
# Copyright 2015 HP Software, LLC
|
|
# All Rights Reserved.
|
|
#
|
|
# Licensed under the Apache License, Version 2.0 (the "License"); you may
|
|
# not use this file except in compliance with the License. You may obtain
|
|
# a copy of the License at
|
|
#
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
#
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
|
|
# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
|
|
# License for the specific language governing permissions and limitations
|
|
# under the License.
|
|
|
|
from django import template
|
|
from django.utils.translation import ugettext_lazy as _
|
|
|
|
from horizon import exceptions
|
|
from horizon import tabs
|
|
|
|
from trove_dashboard import api
|
|
from trove_dashboard.content.database_clusters import tables
|
|
from trove_dashboard.content.databases import db_capability
|
|
|
|
|
|
class OverviewTab(tabs.Tab):
|
|
name = _("Overview")
|
|
slug = "overview"
|
|
|
|
def get_context_data(self, request):
|
|
return {"cluster": self.tab_group.kwargs['cluster']}
|
|
|
|
def get_template_name(self, request):
|
|
cluster = self.tab_group.kwargs['cluster']
|
|
template_file = ('project/database_clusters/_detail_overview_%s.html'
|
|
% self._get_template_type(cluster.datastore['type']))
|
|
try:
|
|
template.loader.get_template(template_file)
|
|
return template_file
|
|
except template.TemplateDoesNotExist:
|
|
# This datastore type does not have a template file
|
|
# Just use the base template file
|
|
return ('project/database_clusters/_detail_overview.html')
|
|
|
|
def _get_template_type(self, datastore):
|
|
if db_capability.is_mysql_compatible(datastore):
|
|
return 'mysql'
|
|
|
|
return datastore
|
|
|
|
|
|
class InstancesTab(tabs.TableTab):
|
|
table_classes = (tables.InstancesTable,)
|
|
name = _("Instances")
|
|
slug = "instances_tab"
|
|
cluster = None
|
|
template_name = "horizon/common/_detail_table.html"
|
|
preload = True
|
|
|
|
def get_instances_data(self):
|
|
cluster = self.tab_group.kwargs['cluster']
|
|
data = []
|
|
try:
|
|
instances = api.trove.cluster_get(self.request,
|
|
cluster.id).instances
|
|
for instance in instances:
|
|
instance_info = api.trove.instance_get(self.request,
|
|
instance['id'])
|
|
flavor_id = instance_info.flavor['id']
|
|
instance_info.full_flavor = api.trove.flavor_get(self.request,
|
|
flavor_id)
|
|
if "type" in instance:
|
|
instance_info.type = instance["type"]
|
|
if "ip" in instance:
|
|
instance_info.ip = instance["ip"]
|
|
if "hostname" in instance:
|
|
instance_info.hostname = instance["hostname"]
|
|
|
|
data.append(instance_info)
|
|
except Exception:
|
|
msg = _('Unable to get instances data.')
|
|
exceptions.handle(self.request, msg)
|
|
data = []
|
|
return data
|
|
|
|
|
|
class ClusterDetailTabs(tabs.TabGroup):
|
|
slug = "cluster_details"
|
|
tabs = (OverviewTab, InstancesTab)
|
|
sticky = True
|