Removing ddt from unit tests

This cleanup should assist in transitioning to
stestr and fixtures, as well as py3 support.

The ddt data is primarily unused, only subcloud, route
and endpoints were being loaded.

The information in the data files was out of date,
and not necessarily matching the current product model.

Story: 2004515
Task: 39160
Change-Id: Iddd7ed4664b0d59dbc58aae5c3fedd74c9a138c0
Signed-off-by: albailey <Al.Bailey@windriver.com>
This commit is contained in:
albailey 2020-03-25 15:43:32 -05:00
parent 1381d97319
commit 25c9d6ed38
160 changed files with 68 additions and 10870 deletions

View File

@ -23,6 +23,18 @@
from dccommon.tests import utils
from oslotest import base
KEYSTONE_ENDPOINT_0 = [
"9785cc7f99b6469ba6fe89bd8d5b9072", "NULL", "admin",
"7d48ddb964034eb588e557b976d11cdf", "http://[fd01:1::2]:9292", "{}", True,
"SystemController"
]
ROUTE_0 = [
"2018-04-11 17:01:49.654734", "NULL", "NULL", 1,
"3a07ca95-d6fe-48cb-9393-b949f800b552", 6,
"fd01:2::", 64, "fd01:1::1", 1, 9
]
class DCCommonTestCase(base.BaseTestCase):
"""Test case base class for all unit tests."""

View File

@ -23,10 +23,6 @@ from dccommon.drivers.openstack import sysinv_v1
from dccommon.tests import base
from dccommon.tests import utils
from dcmanager.common import consts
from dcmanager.tests import utils as dcmanager_utils
from ddt import ddt
from ddt import file_data
class FakeInterface(object):
@ -61,7 +57,6 @@ class FakeRoute(object):
self.metric = data['metric']
@ddt
class TestSysinvClient(base.DCCommonTestCase):
def setUp(self):
super(TestSysinvClient, self).setUp()
@ -111,10 +106,9 @@ class TestSysinvClient(base.DCCommonTestCase):
management_pool = sysinv_client.get_management_address_pool()
self.assertEqual(pool, management_pool)
@file_data(dcmanager_utils.get_data_filepath('sysinv', 'routes'))
@mock.patch.object(sysinv_v1.SysinvClient, '__init__')
def test_create_route(self, value, mock_sysinvclient_init):
fake_route = utils.create_route_dict(value)
def test_create_route(self, mock_sysinvclient_init):
fake_route = utils.create_route_dict(base.ROUTE_0)
mock_sysinvclient_init.return_value = None
sysinv_client = sysinv_v1.SysinvClient(consts.DEFAULT_REGION_NAME,
None)
@ -130,8 +124,6 @@ class TestSysinvClient(base.DCCommonTestCase):
network=fake_route['network'], prefix=fake_route['prefix'],
gateway=fake_route['gateway'], metric=fake_route['metric'])
@file_data(dcmanager_utils.get_data_filepath('sysinv', 'routes'))
@mock.patch.object(sysinv_v1.SysinvClient, '__init__')
def test_delete_route(self, value, mock_sysinvclient_init):
# fake_route = utils.create_route_dict(value)
def test_delete_route(self, mock_sysinvclient_init):
mock_sysinvclient_init.return_value = None

View File

@ -27,11 +27,6 @@ from oslo_config import cfg
from dccommon import endpoint_cache
from dccommon.tests import base
from dccommon.tests import utils
from dcmanager.tests import utils as dcmanager_utils
from ddt import ddt
from ddt import file_data
FAKE_REGION = 'fake_region'
FAKE_SERVICE = 'fake_service'
@ -47,7 +42,6 @@ FAKE_CINDER_URL_2 = 'fake_url_cinder_2'
FAKE_NEUTRON_URL_1 = 'fake_url_neutron_1'
@ddt
class EndpointCacheTest(base.DCCommonTestCase):
def setUp(self):
super(EndpointCacheTest, self).setUp()
@ -56,11 +50,10 @@ class EndpointCacheTest(base.DCCommonTestCase):
default="fake_auth_uri")]
cfg.CONF.register_opts(auth_uri_opts, 'cache')
@file_data(dcmanager_utils.get_data_filepath('keystone', 'endpoint'))
@patch.object(endpoint_cache.EndpointCache, '_initialize_keystone_client')
@patch.object(endpoint_cache.EndpointCache, '_get_endpoint_from_keystone')
def test_get_endpoint(self, value, mock_method, mock_init):
endpoint_dict = utils.create_endpoint_dict(value)
def test_get_endpoint(self, mock_method, mock_init):
endpoint_dict = utils.create_endpoint_dict(base.KEYSTONE_ENDPOINT_0)
mock_method.return_value = {endpoint_dict['region_id']: {
endpoint_dict['service_id']: endpoint_dict['url']}}
mock_init.return_value = None
@ -69,11 +62,10 @@ class EndpointCacheTest(base.DCCommonTestCase):
endpoint_dict['service_id']),
endpoint_dict['url'])
@file_data(dcmanager_utils.get_data_filepath('keystone', 'endpoint'))
@patch.object(endpoint_cache.EndpointCache, '_initialize_keystone_client')
@patch.object(endpoint_cache.EndpointCache, '_get_endpoint_from_keystone')
def test_get_endpoint_not_found(self, value, mock_method, mock_init):
endpoint_dict = utils.create_endpoint_dict(value)
def test_get_endpoint_not_found(self, mock_method, mock_init):
endpoint_dict = utils.create_endpoint_dict(base.KEYSTONE_ENDPOINT_0)
mock_method.return_value = {endpoint_dict['region_id']: {
endpoint_dict['service_id']: endpoint_dict['url']}}
mock_init.return_value = None
@ -83,11 +75,10 @@ class EndpointCacheTest(base.DCCommonTestCase):
self.assertEqual(cache.get_endpoint(endpoint_dict['region_id'],
'another_fake_service'), '')
@file_data(dcmanager_utils.get_data_filepath('keystone', 'endpoint'))
@patch.object(endpoint_cache.EndpointCache, '_initialize_keystone_client')
@patch.object(endpoint_cache.EndpointCache, '_get_endpoint_from_keystone')
def test_get_endpoint_retry(self, value, mock_method, mock_init):
endpoint_dict = utils.create_endpoint_dict(value)
def test_get_endpoint_retry(self, mock_method, mock_init):
endpoint_dict = utils.create_endpoint_dict(base.KEYSTONE_ENDPOINT_0)
mock_init.return_value = None
cache = endpoint_cache.EndpointCache()
mock_method.return_value = {'another_region': {
@ -96,11 +87,10 @@ class EndpointCacheTest(base.DCCommonTestCase):
endpoint_dict['service_id']),
'another_fake_url')
@file_data(dcmanager_utils.get_data_filepath('keystone', 'endpoint'))
@patch.object(endpoint_cache.EndpointCache, '_initialize_keystone_client')
@patch.object(endpoint_cache.EndpointCache, '_get_endpoint_from_keystone')
def test_update_endpoint(self, value, mock_method, mock_init):
endpoint_dict = utils.create_endpoint_dict(value)
def test_update_endpoint(self, mock_method, mock_init):
endpoint_dict = utils.create_endpoint_dict(base.KEYSTONE_ENDPOINT_0)
mock_method.return_value = {endpoint_dict['region_id']: {
endpoint_dict['service_id']: endpoint_dict['url']}}
mock_init.return_value = None

View File

@ -39,6 +39,14 @@ get_engine = api.get_engine
from sqlalchemy.engine import Engine
from sqlalchemy import event
SUBCLOUD_SAMPLE_DATA_0 = [
6, "subcloud-4", "demo subcloud", "Ottawa-Lab-Aisle_3-Rack_C",
"20.01", "managed", "online", "fd01:3::0/64", "fd01:3::1",
"fd01:3::2", "fd01:3::f", "fd01:1::1", 0, "NULL", "NULL",
"2018-05-15 14:45:12.508708", "2018-05-24 10:48:18.090931",
"NULL", 0, "10.10.10.0/24", "10.10.10.1", "10.10.10.12", "testpass"
]
@event.listens_for(Engine, "connect")
def set_sqlite_pragma(dbapi_connection, connection_record):

View File

@ -1,3 +0,0 @@
{
"migrate_version_0": ["dcmanager", "/usr/lib/python2.7/site-packages/dcmanager/db/sqlalchemy/migrate_repo", 1]
}

View File

@ -1,6 +0,0 @@
{
"strategy_steps_0": [63, 7, 3, "complete", "", "2018-05-18 00:00:14.073539", "2018-05-18 00:03:05.38425", "NULL", "NULL", "2018-05-17 23:50:59.230807", "2018-05-18 00:03:05.389346", "NULL", 0],
"strategy_steps_1": [60, "NULL", 1, "complete", "", "2018-05-17 23:51:13.588264", "2018-05-17 23:54:53.791109", "NULL", "NULL", "2018-05-17 23:50:59.223942", "2018-05-17 23:54:53.796026", "NULL", 0],
"strategy_steps_2": [62, 6, 2, "complete", "", "2018-05-17 23:55:03.805419", "2018-05-17 23:59:05.153763", "NULL", "NULL", "2018-05-17 23:50:59.228584", "2018-05-17 23:59:05.159172", "NULL", 0],
"strategy_steps_3": [61, 1, 2, "complete", "", "2018-05-17 23:55:03.798957", "2018-05-18 00:00:05.185775", "NULL", "NULL", "2018-05-17 23:50:59.226117", "2018-05-18 00:00:05.191001", "NULL", 0]
}

View File

@ -1,17 +0,0 @@
{
"subcloud_status_0": [32, 7, "volume", "in-sync", "NULL", "NULL", "2018-05-15 14:45:48.96137", "2018-05-18 18:20:39.773185", "NULL", 0],
"subcloud_status_1": [34, 7, "network", "in-sync", "NULL", "NULL", "2018-05-15 14:45:48.965798", "2018-05-18 18:20:40.20996", "NULL", 0],
"subcloud_status_2": [33, 7, "compute", "in-sync", "NULL", "NULL", "2018-05-15 14:45:48.96369", "2018-05-18 18:20:40.647117", "NULL", 0],
"subcloud_status_3": [31, 7, "platform", "in-sync", "NULL", "NULL", "2018-05-15 14:45:48.959", "2018-05-18 18:20:40.647643", "NULL", 0],
"subcloud_status_4": [27, 6, "volume", "in-sync", "NULL", "NULL", "2018-05-15 14:45:12.516212", "2018-05-18 18:20:53.848545", "NULL", 0],
"subcloud_status_5": [29, 6, "network", "in-sync", "NULL", "NULL", "2018-05-15 14:45:12.520688", "2018-05-18 18:20:54.318122", "NULL", 0],
"subcloud_status_6": [26, 6, "platform", "in-sync", "NULL", "NULL", "2018-05-15 14:45:12.512624", "2018-05-18 18:20:54.800959", "NULL", 0],
"subcloud_status_7": [28, 6, "compute", "in-sync", "NULL", "NULL", "2018-05-15 14:45:12.518589", "2018-05-18 18:20:54.801511", "NULL", 0],
"subcloud_status_8": [35, 7, "patching", "in-sync", "NULL", "NULL", "2018-05-15 14:45:48.968028", "2018-05-18 18:24:52.93953", "NULL", 0],
"subcloud_status_9": [30, 6, "patching", "in-sync", "NULL", "NULL", "2018-05-15 14:45:12.522906", "2018-05-18 18:24:53.403192", "NULL", 0],
"subcloud_status_10": [2, 1, "volume", "in-sync", "NULL", "NULL", "2018-04-11 17:01:48.55157", "2018-05-24 00:17:37.344778", "NULL", 0],
"subcloud_status_11": [4, 1, "network", "in-sync", "NULL", "NULL", "2018-04-11 17:01:48.555564", "2018-05-24 00:17:37.799951", "NULL", 0],
"subcloud_status_12": [1, 1, "platform", "in-sync", "NULL", "NULL", "2018-04-11 17:01:48.548357", "2018-05-24 00:17:38.353609", "NULL", 0],
"subcloud_status_13": [3, 1, "compute", "in-sync", "NULL", "NULL", "2018-04-11 17:01:48.553623", "2018-05-24 00:17:38.354505", "NULL", 0],
"subcloud_status_14": [5, 1, "patching", "in-sync", "NULL", "NULL", "2018-04-11 17:01:48.557433", "2018-05-24 00:17:42.564325", "NULL", 0]
}

View File

@ -1,5 +0,0 @@
{
"subclouds_0": [6, "subcloud-4", "wcp85 subcloud", "Ottawa-PheonixLab-Aisle_3-Rack_C", "18.03", "managed", "online", "fd01:3::0/64", "fd01:3::1", "fd01:3::2", "fd01:3::f", "fd01:1::1", 0, "NULL", "NULL", "2018-05-15 14:45:12.508708", "2018-05-24 10:48:18.090931", "NULL", 0, "10.10.10.0/24", "10.10.10.1", "10.10.10.12", "testpass"],
"subclouds_1": [1, "subcloud-1", "wcp80 subcloud", "Ottawa-PheonixLab-Aisle_3-Rack_B", "18.03", "managed", "online", "fd01:2::0/64", "fd01:2::1", "fd01:2::2", "fd01:2::f", "fd01:1::1", 0, "NULL", "NULL", "2018-04-11 17:01:48.54467", "2018-05-24 00:17:34.74161", "NULL", 0, "10.10.10.0/24", "10.10.10.1", "10.10.10.12", "testpass"],
"subclouds_2": [7, "subcloud-5", "wcp87 subcloud", "Ottawa-PheonixLab-Aisle_4-Rack_B", "18.03", "managed", "online", "fd01:4::0/64", "fd01:4::1", "fd01:4::2", "fd01:4::f", "fd01:1::1", 0, "NULL", "NULL", "2018-05-15 14:45:48.95625", "2018-05-24 10:48:17.907767", "NULL", 0, "10.10.10.0/24", "10.10.10.1", "10.10.10.12", "testpass"]
}

View File

@ -1,3 +0,0 @@
{
"sw_update_opts_default_0": [1, "NULL", "parallel", "parallel", 2, "stop-start", "relaxed", "NULL", "NULL", "NULL", "2018-05-16 13:41:44.330145", "NULL", 0]
}

View File

@ -1,3 +0,0 @@
{
"sw_update_strategy_0": [21, "patch", "parallel", 2, true, "complete", "NULL", "NULL", "2018-05-17 23:50:59.221342", "2018-05-18 00:03:14.24641", "NULL", 0]
}

View File

@ -1,30 +0,0 @@
{
"assignment_0": ["UserProject", "500b2ba0791e44a780d4dad3c5a1ff31", "8803689162424f60a71e4642e9dc2b9e", "59fa225368524bf6974f76a25050143b", false],
"assignment_1": ["UserProject", "81eed996f2a346a3b5282fe2a881db9b", "f3b78df9bbd74d6b8bbf8c5f08427ca7", "59fa225368524bf6974f76a25050143b", false],
"assignment_2": ["UserProject", "4abaa160c36846328a482217de0112af", "f3b78df9bbd74d6b8bbf8c5f08427ca7", "59fa225368524bf6974f76a25050143b", false],
"assignment_3": ["UserProject", "c5d07e41f78747949fbc1de84168a44f", "f3b78df9bbd74d6b8bbf8c5f08427ca7", "59fa225368524bf6974f76a25050143b", false],
"assignment_4": ["UserProject", "63dd0fb409264a43b7dbfe9582b8023d", "f3b78df9bbd74d6b8bbf8c5f08427ca7", "59fa225368524bf6974f76a25050143b", false],
"assignment_5": ["UserProject", "6cf3cfc5d26f458daf66802d8e8a2e2a", "f3b78df9bbd74d6b8bbf8c5f08427ca7", "59fa225368524bf6974f76a25050143b", false],
"assignment_6": ["UserProject", "a757fb8d624b46b4b10eea1b4d2ca0d2", "f3b78df9bbd74d6b8bbf8c5f08427ca7", "59fa225368524bf6974f76a25050143b", false],
"assignment_7": ["UserProject", "8ff17967605a4240b8a6c15ed4bf10f1", "f3b78df9bbd74d6b8bbf8c5f08427ca7", "59fa225368524bf6974f76a25050143b", false],
"assignment_8": ["UserProject", "500b2ba0791e44a780d4dad3c5a1ff31", "8803689162424f60a71e4642e9dc2b9e", "9fe2ff9ee4384b1894a90878d3e92bab", false],
"assignment_9": ["UserProject", "500b2ba0791e44a780d4dad3c5a1ff31", "8803689162424f60a71e4642e9dc2b9e", "ef2e357b0d4d4bcaaa6ae303c7d58d7e", false],
"assignment_10": ["UserProject", "04facea7432848c9bfdf3780bb51612e", "f3b78df9bbd74d6b8bbf8c5f08427ca7", "59fa225368524bf6974f76a25050143b", false],
"assignment_11": ["UserProject", "04facea7432848c9bfdf3780bb51612e", "8803689162424f60a71e4642e9dc2b9e", "59fa225368524bf6974f76a25050143b", false],
"assignment_12": ["UserProject", "c455073c30044db8908630595699d874", "f3b78df9bbd74d6b8bbf8c5f08427ca7", "59fa225368524bf6974f76a25050143b", false],
"assignment_13": ["UserProject", "c455073c30044db8908630595699d874", "f3b78df9bbd74d6b8bbf8c5f08427ca7", "1f62f45b748b4c5db66f97c715ecf1ae", false],
"assignment_14": ["UserDomain", "f94aa82e49dd4aaa8bf1c80fee109234", "2423d6c7853145a798e6491ca9de6e2b", "59fa225368524bf6974f76a25050143b", false],
"assignment_15": ["UserProject", "146482c0aba84e35a5c1a507cff9db3d", "f3b78df9bbd74d6b8bbf8c5f08427ca7", "59fa225368524bf6974f76a25050143b", false],
"assignment_16": ["UserProject", "118a09e72d6a4194af383285cb7e579a", "f3b78df9bbd74d6b8bbf8c5f08427ca7", "59fa225368524bf6974f76a25050143b", false],
"assignment_17": ["UserProject", "692bd0a53c414d6dbbd0ba4d6fdb3c49", "f3b78df9bbd74d6b8bbf8c5f08427ca7", "59fa225368524bf6974f76a25050143b", false],
"assignment_18": ["UserProject", "5f4d401253a74cc8ab507957b9cafb29", "f3b78df9bbd74d6b8bbf8c5f08427ca7", "59fa225368524bf6974f76a25050143b", false],
"assignment_19": ["UserProject", "f1cc67bbf0d84c89a1df3067b538e1b8", "f3b78df9bbd74d6b8bbf8c5f08427ca7", "59fa225368524bf6974f76a25050143b", false],
"assignment_20": ["UserProject", "4a2c1f4c8ae942b19e388576e93d1ced", "f3b78df9bbd74d6b8bbf8c5f08427ca7", "59fa225368524bf6974f76a25050143b", false],
"assignment_21": ["UserProject", "d1399977957645e4a1e26c1b7b1e6d35", "9008c3fc102040cd8149b5c0d8aa06a3", "9fe2ff9ee4384b1894a90878d3e92bab", false],
"assignment_22": ["UserProject", "500b2ba0791e44a780d4dad3c5a1ff31", "9008c3fc102040cd8149b5c0d8aa06a3", "9fe2ff9ee4384b1894a90878d3e92bab", false],
"assignment_23": ["UserProject", "5ad8271fc6bc432ab80685945bc5b346", "6ecc44a6b24e4c398dc749f1386b2ced", "9fe2ff9ee4384b1894a90878d3e92bab", false],
"assignment_24": ["UserProject", "500b2ba0791e44a780d4dad3c5a1ff31", "6ecc44a6b24e4c398dc749f1386b2ced", "9fe2ff9ee4384b1894a90878d3e92bab", false],
"assignment_25": ["UserProject", "73403639b14c40e6b288c0e2cd3707bc", "f3b78df9bbd74d6b8bbf8c5f08427ca7", "59fa225368524bf6974f76a25050143b", false],
"assignment_26": ["UserProject", "872e8c1b48c640c59189cf1587bd4e41", "f3b78df9bbd74d6b8bbf8c5f08427ca7", "59fa225368524bf6974f76a25050143b", false],
"assignment_27": ["UserProject", "f85b8eca57a441838cfe5a39d33230b5", "f3b78df9bbd74d6b8bbf8c5f08427ca7", "59fa225368524bf6974f76a25050143b", false]
}

View File

@ -1,185 +0,0 @@
{
"endpoint_0": ["9785cc7f99b6469ba6fe89bd8d5b9072", "NULL", "admin", "7d48ddb964034eb588e557b976d11cdf", "http://[fd01:1::2]:9292", "{}", true, "SystemController"],
"endpoint_1": ["2b627b437d3c4412aa0581cf1b0fc8cb", "NULL", "internal", "7d48ddb964034eb588e557b976d11cdf", "http://[fd01:1::2]:9292", "{}", true, "SystemController"],
"endpoint_2": ["171c04c06ec4436daec6604a2ded6e9a", "NULL", "public", "7d48ddb964034eb588e557b976d11cdf", "http://128.224.151.162:9292", "{}", true, "SystemController"],
"endpoint_3": ["1645bfec421c4d88898bea1284dc8d89", "NULL", "admin", "c4ae85afaf7b465190d927e11da3eb38", "http://[fd01:1::2]:28774/v2.1/%(tenant_id)s", "{}", true, "SystemController"],
"endpoint_4": ["f93ed1fdabb04b7f913da53218a242e1", "NULL", "internal", "c4ae85afaf7b465190d927e11da3eb38", "http://[fd01:1::2]:28774/v2.1/%(tenant_id)s", "{}", true, "SystemController"],
"endpoint_5": ["fa55665905be43d3b47472b580726690", "NULL", "public", "c4ae85afaf7b465190d927e11da3eb38", "http://128.224.151.162:28774/v2.1/%(tenant_id)s", "{}", true, "SystemController"],
"endpoint_6": ["15b0341250be443287cf4c333bec7ca8", "NULL", "admin", "9754bb0a6cba4ae4b62c1a4e825964a5", "http://[fd01:1::2]:8119/v1.0", "{}", true, "SystemController"],
"endpoint_7": ["70ede9a42a8a48f68be78622b9ca8aa7", "NULL", "internal", "9754bb0a6cba4ae4b62c1a4e825964a5", "http://[fd01:1::2]:8119/v1.0", "{}", true, "SystemController"],
"endpoint_8": ["42f9c95f20f84bfd9c05f5417eeea7ba", "NULL", "public", "9754bb0a6cba4ae4b62c1a4e825964a5", "http://128.224.151.162:8119/v1.0", "{}", true, "SystemController"],
"endpoint_9": ["45be189e3e1448ab92930534a950d5a2", "NULL", "admin", "6cfd11045b1e4c0badcb56f18428ab5b", "http://[fd01:1::2]:29696/", "{}", true, "SystemController"],
"endpoint_10": ["4d29f266e3524fd28070ae89d9bcc218", "NULL", "internal", "6cfd11045b1e4c0badcb56f18428ab5b", "http://[fd01:1::2]:29696/", "{}", true, "SystemController"],
"endpoint_11": ["a78b26ecbba74db1802293fcfacd584a", "NULL", "public", "6cfd11045b1e4c0badcb56f18428ab5b", "http://128.224.151.162:29696/", "{}", true, "SystemController"],
"endpoint_12": ["7a42e40aac4040708fd23b571c650026", "NULL", "admin", "c3677835d8024fa894929ea67b1e9fa0", "http://[fd01:1::2]:25491/", "{}", true, "SystemController"],
"endpoint_13": ["62844e21e90a42278026bca686192401", "NULL", "internal", "c3677835d8024fa894929ea67b1e9fa0", "http://[fd01:1::2]:25491/", "{}", true, "SystemController"],
"endpoint_14": ["7b6dd7d0bb504919952c162bd74bb1ae", "NULL", "public", "c3677835d8024fa894929ea67b1e9fa0", "http://128.224.151.162:25491/", "{}", true, "SystemController"],
"endpoint_15": ["c89c795cff5c45c7adc3b321943351ef", "NULL", "admin", "c3677835d8024fa894929ea67b1e9fa0", "http://[fd01:1::2]:5491", "{}", true, "RegionOne"],
"endpoint_16": ["4971b138f1e04b94aed46af88489fa53", "NULL", "internal", "c3677835d8024fa894929ea67b1e9fa0", "http://[fd01:1::2]:5491", "{}", true, "RegionOne"],
"endpoint_17": ["21aa3f2577f0402190f9a8758fdb2620", "NULL", "public", "c3677835d8024fa894929ea67b1e9fa0", "http://128.224.151.162:15491", "{}", true, "RegionOne"],
"endpoint_18": ["bd7d26e0755d498ebf4c846448936983", "NULL", "admin", "aa803a6f0ab84b68ad13a759b1b29525", "http://[fd01:1::2]:4545", "{}", true, "RegionOne"],
"endpoint_19": ["993f49cf95754c93884fc8eac180eda8", "NULL", "internal", "aa803a6f0ab84b68ad13a759b1b29525", "http://[fd01:1::2]:4545", "{}", true, "RegionOne"],
"endpoint_20": ["2821d84aec434123b039f3d7ab3fbaca", "NULL", "public", "aa803a6f0ab84b68ad13a759b1b29525", "http://128.224.151.162:4545", "{}", true, "RegionOne"],
"endpoint_21": ["8d8e469fd83f4608b025338c8e67e7e1", "NULL", "admin", "86328b93a3c84d63a1be7f7368138bdf", "http://[fd01:1::2]:8777", "{}", true, "RegionOne"],
"endpoint_22": ["2bf8cd48dfee4d339bfba53abccd20b4", "NULL", "internal", "86328b93a3c84d63a1be7f7368138bdf", "http://[fd01:1::2]:8777", "{}", true, "RegionOne"],
"endpoint_23": ["8cdf5229f64c46deb9ebe86d0aa88776", "NULL", "public", "86328b93a3c84d63a1be7f7368138bdf", "http://128.224.151.162:8777", "{}", true, "RegionOne"],
"endpoint_24": ["704878ca10f24d63a33b44139549f6e9", "NULL", "admin", "5fa3efb666204693a0d0ab05fb03140c", "http://[fd01:1::2]:5000/v3", "{}", true, "SystemController"],
"endpoint_25": ["736c4e7c5aa84384944c3907f1c1a6ae", "NULL", "internal", "5fa3efb666204693a0d0ab05fb03140c", "http://[fd01:1::2]:5000/v3", "{}", true, "SystemController"],
"endpoint_26": ["a4537dcfeefe4adeaf37cd100833ec12", "NULL", "public", "5fa3efb666204693a0d0ab05fb03140c", "http://128.224.151.162:5000/v3", "{}", true, "SystemController"],
"endpoint_27": ["8627ce33d93c4b769e295b83a7dc100b", "NULL", "admin", "b3dd49c87dfd40d08d19d2895d2bc9c6", "http://[fd01:1::2]:6385/v1", "{}", true, "RegionOne"],
"endpoint_28": ["8c11b80a30464d7791f4825d9ad14fca", "NULL", "internal", "b3dd49c87dfd40d08d19d2895d2bc9c6", "http://[fd01:1::2]:6385/v1", "{}", true, "RegionOne"],
"endpoint_29": ["3330af049c0547c1a400b8ce7a6f73f3", "NULL", "public", "b3dd49c87dfd40d08d19d2895d2bc9c6", "http://128.224.151.162:6385/v1", "{}", true, "RegionOne"],
"endpoint_30": ["89cb5c408a2a43979a22728abe3b7256", "NULL", "admin", "b3dd49c87dfd40d08d19d2895d2bc9c6", "http://[fd01:1::2]:26385/v1", "{}", true, "SystemController"],
"endpoint_31": ["0fdceccb9c6c476594a22b37fa717007", "NULL", "internal", "b3dd49c87dfd40d08d19d2895d2bc9c6", "http://[fd01:1::2]:26385/v1", "{}", true, "SystemController"],
"endpoint_32": ["5705066ec86c49f0b30f46677824f4a8", "NULL", "public", "b3dd49c87dfd40d08d19d2895d2bc9c6", "http://128.224.151.162:26385/v1", "{}", true, "SystemController"],
"endpoint_33": ["f0f5128e02654c33a6f438533b77ff86", "NULL", "admin", "c5834d3740504a69bf427385319b51a0", "http://[fd01:1::2]:28776/v3/%(tenant_id)s", "{}", true, "SystemController"],
"endpoint_34": ["66c462a7643046aab31d4afe6058200c", "NULL", "internal", "c5834d3740504a69bf427385319b51a0", "http://[fd01:1::2]:28776/v3/%(tenant_id)s", "{}", true, "SystemController"],
"endpoint_35": ["853aab978d8b41a78c381292f55c71f2", "NULL", "public", "c5834d3740504a69bf427385319b51a0", "http://128.224.151.162:28776/v3/%(tenant_id)s", "{}", true, "SystemController"],
"endpoint_36": ["d194fdcc00ea444887ca0666955a929f", "NULL", "admin", "8a5873d1ee914ccbae3c070d578d0d0d", "http://[fd01:1::2]:28776/v2/%(tenant_id)s", "{}", true, "SystemController"],
"endpoint_37": ["7492375879c34231949d75eef5fa7c5b", "NULL", "internal", "8a5873d1ee914ccbae3c070d578d0d0d", "http://[fd01:1::2]:28776/v2/%(tenant_id)s", "{}", true, "SystemController"],
"endpoint_38": ["3be8d1d22d44456c9a48c71bacc77ac9", "NULL", "public", "8a5873d1ee914ccbae3c070d578d0d0d", "http://128.224.151.162:28776/v2/%(tenant_id)s", "{}", true, "SystemController"],
"endpoint_39": ["baabaa1754d14732bcaca91acc6ac7bc", "NULL", "admin", "a15edc66a6394e18bda9f9256e7b470c", "http://[fd01:2::2]:8042", "{}", true, "subcloud-1"],
"endpoint_40": ["bb0598302d7644a8b9af8a39006e9dea", "NULL", "internal", "a15edc66a6394e18bda9f9256e7b470c", "http://[fd01:2::2]:8042", "{}", true, "subcloud-1"],
"endpoint_41": ["388ec02223e5470bbc5b12c0078f1d0e", "NULL", "public", "a15edc66a6394e18bda9f9256e7b470c", "http://128.224.150.18:8042", "{}", true, "subcloud-1"],
"endpoint_42": ["02c9dcf0a5074324b2f0c310bedac5fe", "NULL", "admin", "995cc229e9af44ec81c1c76073f4c733", "http://[fd01:2::2]:8778", "{}", true, "subcloud-1"],
"endpoint_43": ["ee61c87ae43d499a8937bcdf4b02da69", "NULL", "internal", "995cc229e9af44ec81c1c76073f4c733", "http://[fd01:2::2]:8778", "{}", true, "subcloud-1"],
"endpoint_44": ["9f8d2d7164624b0ebf7e6d95118d8657", "NULL", "public", "995cc229e9af44ec81c1c76073f4c733", "http://128.224.150.18:8778", "{}", true, "subcloud-1"],
"endpoint_45": ["bd0005e60acf47a6890f0867f683b209", "NULL", "admin", "ea41162395844d30af3e59efa3e6323e", "http://[fd01:2::2]:8000/v1/%(tenant_id)s", "{}", true, "subcloud-1"],
"endpoint_46": ["d4ef0e1fdb2f4fa885c8c8a6b878340e", "NULL", "internal", "ea41162395844d30af3e59efa3e6323e", "http://[fd01:2::2]:8000/v1/%(tenant_id)s", "{}", true, "subcloud-1"],
"endpoint_47": ["b9e4375f8b64466ca7b8c11f3bfcd335", "NULL", "public", "ea41162395844d30af3e59efa3e6323e", "http://128.224.150.18:8000/v1/%(tenant_id)s", "{}", true, "subcloud-1"],
"endpoint_48": ["fb7b4a9155c64e75801ba11955798fb5", "NULL", "admin", "6cfd11045b1e4c0badcb56f18428ab5b", "http://[fd01:2::2]:9696", "{}", true, "subcloud-1"],
"endpoint_49": ["773a9d739bbd4a03ba401c46225e412d", "NULL", "internal", "6cfd11045b1e4c0badcb56f18428ab5b", "http://[fd01:2::2]:9696", "{}", true, "subcloud-1"],
"endpoint_50": ["680c06a7db8e4457bb5d8b62810f98f5", "NULL", "public", "6cfd11045b1e4c0badcb56f18428ab5b", "http://128.224.150.18:9696", "{}", true, "subcloud-1"],
"endpoint_51": ["e07a8bbabd5343fa877de9c2425f662e", "NULL", "admin", "86328b93a3c84d63a1be7f7368138bdf", "http://[fd01:2::2]:8777", "{}", true, "subcloud-1"],
"endpoint_52": ["c7182c60c44c40c2945bbe3e288c2ff6", "NULL", "internal", "86328b93a3c84d63a1be7f7368138bdf", "http://[fd01:2::2]:8777", "{}", true, "subcloud-1"],
"endpoint_53": ["9bc906a5fcb84b96ba7f196b01119077", "NULL", "public", "86328b93a3c84d63a1be7f7368138bdf", "http://128.224.150.18:8777", "{}", true, "subcloud-1"],
"endpoint_54": ["40efcf0cf1934896ac204fff9599181f", "NULL", "admin", "d6f2ef7609f44c9aa0b40b15f9f93139", "http://[fd01:2::2]:8977", "{}", true, "subcloud-1"],
"endpoint_55": ["3c56e9f939aa4f48b48e0bd63a7e0e2d", "NULL", "admin", "aa803a6f0ab84b68ad13a759b1b29525", "http://[fd01:2::2]:4545", "{}", true, "subcloud-1"],
"endpoint_56": ["e0dc056cf41d48ada2a5128ff6d13c80", "NULL", "admin", "a15edc66a6394e18bda9f9256e7b470c", "http://[fd01:3::2]:8042", "{}", true, "subcloud-4"],
"endpoint_57": ["9c3669ebb2864fe49b00555a4cb720bf", "NULL", "admin", "995cc229e9af44ec81c1c76073f4c733", "http://[fd01:3::2]:8778", "{}", true, "subcloud-4"],
"endpoint_58": ["43d53656ac8e46e7875237e202e99896", "NULL", "public", "995cc229e9af44ec81c1c76073f4c733", "http://128.224.150.224:8778", "{}", true, "subcloud-4"],
"endpoint_59": ["1b6649177bbf4793ae70e09badeaf1fa", "NULL", "internal", "ea41162395844d30af3e59efa3e6323e", "http://[fd01:3::2]:8000/v1/%(tenant_id)s", "{}", true, "subcloud-4"],
"endpoint_60": ["19a92fce510743f9939a9a22299fc6ff", "NULL", "public", "6cfd11045b1e4c0badcb56f18428ab5b", "http://128.224.150.224:9696", "{}", true, "subcloud-4"],
"endpoint_61": ["f802be7e04a64c768150f0416e113fe1", "NULL", "admin", "aa803a6f0ab84b68ad13a759b1b29525", "http://[fd01:3::2]:4545", "{}", true, "subcloud-4"],
"endpoint_62": ["513e4e6a0e4840dd8de65742a1b0634d", "NULL", "internal", "aa803a6f0ab84b68ad13a759b1b29525", "http://[fd01:3::2]:4545", "{}", true, "subcloud-4"],
"endpoint_63": ["c17d425b28aa4589a42abf0c3ae89865", "NULL", "internal", "86328b93a3c84d63a1be7f7368138bdf", "http://[fd01:3::2]:8777", "{}", true, "subcloud-4"],
"endpoint_64": ["71b408d04b984a958090054093c6330a", "NULL", "public", "5fa3efb666204693a0d0ab05fb03140c", "http://128.224.151.162:5000/v3", "{}", true, "subcloud-4"],
"endpoint_65": ["549e1bd55f2e4218b5f2a03bc9859bf6", "NULL", "public", "d6f2ef7609f44c9aa0b40b15f9f93139", "http://128.224.150.224:8977", "{}", true, "subcloud-4"],
"endpoint_66": ["89606a1804a54f17ae67659d481fde20", "NULL", "internal", "7d48ddb964034eb588e557b976d11cdf", "http://[fd01:3::2]:9292", "{}", true, "subcloud-4"],
"endpoint_67": ["ecae4ccc0af242a98d978ff527e7e81b", "NULL", "admin", "b3dd49c87dfd40d08d19d2895d2bc9c6", "http://[fd01:3::2]:6385/v1", "{}", true, "subcloud-4"],
"endpoint_68": ["9b503e8a198f4221a716568dfe0a497f", "NULL", "public", "b3dd49c87dfd40d08d19d2895d2bc9c6", "http://128.224.150.224:6385/v1", "{}", true, "subcloud-4"],
"endpoint_69": ["f2209d54eb064311aeacb96a853e5867", "NULL", "public", "7d48ddb964034eb588e557b976d11cdf", "http://128.224.151.66:9292", "{}", true, "subcloud-5"],
"endpoint_70": ["8c761aabddf7450c95fcee0dd5f38bee", "NULL", "public", "995cc229e9af44ec81c1c76073f4c733", "http://128.224.151.66:8778", "{}", true, "subcloud-5"],
"endpoint_71": ["8c0e3189cf5e49f09dc3566321603e85", "NULL", "public", "ea41162395844d30af3e59efa3e6323e", "http://128.224.151.66:8000/v1/%(tenant_id)s", "{}", true, "subcloud-5"],
"endpoint_72": ["71575d7116ae4510b9115476a21bbb1b", "NULL", "admin", "c3677835d8024fa894929ea67b1e9fa0", "http://[fd01:4::2]:5491", "{}", true, "subcloud-5"],
"endpoint_73": ["73972411365647f2be7b7f6b4d302759", "NULL", "admin", "c4ae85afaf7b465190d927e11da3eb38", "http://[fd01:4::2]:8774/v2.1/%(tenant_id)s", "{}", true, "subcloud-5"],
"endpoint_74": ["52643da5712d4555a953d9f03b2bf332", "NULL", "admin", "aa803a6f0ab84b68ad13a759b1b29525", "http://[fd01:4::2]:4545", "{}", true, "subcloud-5"],
"endpoint_75": ["a51e43d1eb9b47c980c45efd8bac4c87", "NULL", "admin", "6cfd11045b1e4c0badcb56f18428ab5b", "http://[fd01:4::2]:9696", "{}", true, "subcloud-5"],
"endpoint_76": ["56ef199db23c43ecae7d94cc7222c854", "NULL", "internal", "6cfd11045b1e4c0badcb56f18428ab5b", "http://[fd01:4::2]:9696", "{}", true, "subcloud-5"],
"endpoint_77": ["ed96c299010b48eaa8eddee5cbf9df5e", "NULL", "public", "6cfd11045b1e4c0badcb56f18428ab5b", "http://128.224.151.66:9696", "{}", true, "subcloud-5"],
"endpoint_78": ["9fdb807e84124790b8c3ece35d15a0ef", "NULL", "public", "5fa3efb666204693a0d0ab05fb03140c", "http://128.224.151.162:5000/v3", "{}", true, "subcloud-5"],
"endpoint_79": ["ffa6c1cd10a94194a02e36a4937c343c", "NULL", "public", "d6f2ef7609f44c9aa0b40b15f9f93139", "http://128.224.151.66:8977", "{}", true, "subcloud-5"],
"endpoint_80": ["699aa011ead14997ac6f56d83ed95a8c", "NULL", "admin", "b3dd49c87dfd40d08d19d2895d2bc9c6", "http://[fd01:4::2]:6385/v1", "{}", true, "subcloud-5"],
"endpoint_81": ["24418e1fb27c4bd19138bd60ff84339b", "NULL", "internal", "c5834d3740504a69bf427385319b51a0", "http://[fd01:4::2]:8776/v3/%(tenant_id)s", "{}", true, "subcloud-5"],
"endpoint_82": ["f839413f6073428999df122e5e39c5a9", "NULL", "internal", "8a5873d1ee914ccbae3c070d578d0d0d", "http://[fd01:4::2]:8776/v2/%(tenant_id)s", "{}", true, "subcloud-5"],
"endpoint_83": ["6730c5f0390a4e66b24d87db41d0a0f6", "NULL", "public", "567f8aafa7844256b03e86655fa2bd3e", "http://128.224.151.66:8776/v1/%(tenant_id)s", "{}", true, "subcloud-5"],
"endpoint_84": ["22c6413d42234c0a98e91ed342bf7db7", "NULL", "internal", "c5834d3740504a69bf427385319b51a0", "http://[fd01:3::2]:8776/v3/%(tenant_id)s", "{}", true, "subcloud-4"],
"endpoint_85": ["98a5b15ccb424826922f5c919c5690a8", "NULL", "admin", "8a5873d1ee914ccbae3c070d578d0d0d", "http://[fd01:3::2]:8776/v2/%(tenant_id)s", "{}", true, "subcloud-4"],
"endpoint_86": ["da110ac1f03c4b9e817463225a4b2b83", "NULL", "public", "8a5873d1ee914ccbae3c070d578d0d0d", "http://128.224.150.224:8776/v2/%(tenant_id)s", "{}", true, "subcloud-4"],
"endpoint_87": ["f5167f307d1f4adc84e29d59b3fcbf7b", "NULL", "public", "567f8aafa7844256b03e86655fa2bd3e", "http://128.224.150.224:8776/v1/%(tenant_id)s", "{}", true, "subcloud-4"],
"endpoint_88": ["b9aebe07a0e64367931946c584657186", "NULL", "admin", "c3677835d8024fa894929ea67b1e9fa0", "http://[fd01:2::2]:5491", "{}", true, "subcloud-1"],
"endpoint_89": ["1b58cd57070740809875fb0ea84d1ed4", "NULL", "internal", "c3677835d8024fa894929ea67b1e9fa0", "http://[fd01:2::2]:5491", "{}", true, "subcloud-1"],
"endpoint_90": ["127083b5a58641778f84bd63378f14a3", "NULL", "public", "c3677835d8024fa894929ea67b1e9fa0", "http://128.224.150.18:15491", "{}", true, "subcloud-1"],
"endpoint_91": ["9849dbabbdd9472598b3c8001f42dd3f", "NULL", "admin", "5fa3efb666204693a0d0ab05fb03140c", "http://[fd01:1::2]:5000/v3", "{}", true, "subcloud-1"],
"endpoint_92": ["9b8814b1121a44948ca007a27982ee55", "NULL", "internal", "5fa3efb666204693a0d0ab05fb03140c", "http://[fd01:1::2]:5000/v3", "{}", true, "subcloud-1"],
"endpoint_93": ["f456d7f703e242139355140c0617c619", "NULL", "public", "5fa3efb666204693a0d0ab05fb03140c", "http://128.224.151.162:5000/v3", "{}", true, "subcloud-1"],
"endpoint_94": ["b2041b71fc2244dba94dea647dd35b7e", "NULL", "internal", "d6f2ef7609f44c9aa0b40b15f9f93139", "http://[fd01:2::2]:8977", "{}", true, "subcloud-1"],
"endpoint_95": ["29efd6682e1d435d807e991075bcf125", "NULL", "public", "d6f2ef7609f44c9aa0b40b15f9f93139", "http://128.224.150.18:8977", "{}", true, "subcloud-1"],
"endpoint_96": ["05731150463b47699ab8fef01b81d464", "NULL", "internal", "aa803a6f0ab84b68ad13a759b1b29525", "http://[fd01:2::2]:4545", "{}", true, "subcloud-1"],
"endpoint_97": ["5d347c0e475d40d385024705bb78c0d5", "NULL", "public", "aa803a6f0ab84b68ad13a759b1b29525", "http://128.224.150.18:4545", "{}", true, "subcloud-1"],
"endpoint_98": ["39dd7a4d128549e3ab1d65d04b2bd862", "NULL", "admin", "0efe25ad76f244e1bca9f6975cfe8b83", "http://[fd01:2::2]:8004/v1/%(tenant_id)s", "{}", true, "subcloud-1"],
"endpoint_99": ["497de517819045df9ca739bc3e121c89", "NULL", "internal", "0efe25ad76f244e1bca9f6975cfe8b83", "http://[fd01:2::2]:8004/v1/%(tenant_id)s", "{}", true, "subcloud-1"],
"endpoint_100": ["b772d9d3df6c446e8c0de2611c5627aa", "NULL", "public", "0efe25ad76f244e1bca9f6975cfe8b83", "http://128.224.150.18:8004/v1/%(tenant_id)s", "{}", true, "subcloud-1"],
"endpoint_101": ["7c27d2a668244dd8b35573df61cde0a0", "NULL", "admin", "7d48ddb964034eb588e557b976d11cdf", "http://[fd01:2::2]:9292", "{}", true, "subcloud-1"],
"endpoint_102": ["c006181bd2c34abca079453ddc862b78", "NULL", "internal", "7d48ddb964034eb588e557b976d11cdf", "http://[fd01:2::2]:9292", "{}", true, "subcloud-1"],
"endpoint_103": ["e884ae6f48fc4d2498e8735e1de545aa", "NULL", "public", "7d48ddb964034eb588e557b976d11cdf", "http://128.224.150.18:9292", "{}", true, "subcloud-1"],
"endpoint_104": ["2e5e16ddea9b43c4a6be55c7c57e762c", "NULL", "admin", "b3dd49c87dfd40d08d19d2895d2bc9c6", "http://[fd01:2::2]:6385/v1", "{}", true, "subcloud-1"],
"endpoint_105": ["e9820b3b3abe48f98548d4bc113bc905", "NULL", "internal", "b3dd49c87dfd40d08d19d2895d2bc9c6", "http://[fd01:2::2]:6385/v1", "{}", true, "subcloud-1"],
"endpoint_106": ["1506e9230fc948b2b267eec824bd97ae", "NULL", "public", "b3dd49c87dfd40d08d19d2895d2bc9c6", "http://128.224.150.18:6385/v1", "{}", true, "subcloud-1"],
"endpoint_107": ["6a5596c56479437a9c2fd2a78fe54d22", "NULL", "admin", "c4ae85afaf7b465190d927e11da3eb38", "http://[fd01:2::2]:8774/v2.1/%(tenant_id)s", "{}", true, "subcloud-1"],
"endpoint_108": ["af690a3d102b484fb5cf760ad143689a", "NULL", "internal", "c4ae85afaf7b465190d927e11da3eb38", "http://[fd01:2::2]:8774/v2.1/%(tenant_id)s", "{}", true, "subcloud-1"],
"endpoint_109": ["97ed35a6b02c46cfbeaddf20e6a1bd48", "NULL", "public", "c4ae85afaf7b465190d927e11da3eb38", "http://128.224.150.18:8774/v2.1/%(tenant_id)s", "{}", true, "subcloud-1"],
"endpoint_110": ["3e74d939f3684f6892640c5d6e6406d1", "NULL", "internal", "a15edc66a6394e18bda9f9256e7b470c", "http://[fd01:3::2]:8042", "{}", true, "subcloud-4"],
"endpoint_111": ["41b54ad4c80d45449f507db76083fb80", "NULL", "internal", "995cc229e9af44ec81c1c76073f4c733", "http://[fd01:3::2]:8778", "{}", true, "subcloud-4"],
"endpoint_112": ["0390cb283a53403e9545651a60bf348e", "NULL", "public", "ea41162395844d30af3e59efa3e6323e", "http://128.224.150.224:8000/v1/%(tenant_id)s", "{}", true, "subcloud-4"],
"endpoint_113": ["7c3fabf70c174ea4a4fe6a0c4712e6bf", "NULL", "admin", "6cfd11045b1e4c0badcb56f18428ab5b", "http://[fd01:3::2]:9696", "{}", true, "subcloud-4"],
"endpoint_114": ["0a338aef7a8b404aa0867e5a0205dc58", "NULL", "admin", "c3677835d8024fa894929ea67b1e9fa0", "http://[fd01:3::2]:5491", "{}", true, "subcloud-4"],
"endpoint_115": ["09dde1c9499e4ba198a44c18e74f0a09", "NULL", "public", "aa803a6f0ab84b68ad13a759b1b29525", "http://128.224.150.224:4545", "{}", true, "subcloud-4"],
"endpoint_116": ["56a76e94e60c4fd899a773001b272e47", "NULL", "public", "86328b93a3c84d63a1be7f7368138bdf", "http://128.224.150.224:8777", "{}", true, "subcloud-4"],
"endpoint_117": ["2a7cd8d550d94b90b93a15739fb5f79a", "NULL", "admin", "5fa3efb666204693a0d0ab05fb03140c", "http://[fd01:1::2]:5000/v3", "{}", true, "subcloud-4"],
"endpoint_118": ["4dc1caf31cff44ccb8585fe4f200a32c", "NULL", "admin", "d6f2ef7609f44c9aa0b40b15f9f93139", "http://[fd01:3::2]:8977", "{}", true, "subcloud-4"],
"endpoint_119": ["3fdab757ab134146bbd68c4521af397b", "NULL", "admin", "0efe25ad76f244e1bca9f6975cfe8b83", "http://[fd01:3::2]:8004/v1/%(tenant_id)s", "{}", true, "subcloud-4"],
"endpoint_120": ["17846cae6aaa41e6be9f26f30adcb6d7", "NULL", "internal", "0efe25ad76f244e1bca9f6975cfe8b83", "http://[fd01:3::2]:8004/v1/%(tenant_id)s", "{}", true, "subcloud-4"],
"endpoint_121": ["e67b03ac766f49059729a99a2754defa", "NULL", "public", "7d48ddb964034eb588e557b976d11cdf", "http://128.224.150.224:9292", "{}", true, "subcloud-4"],
"endpoint_122": ["81b25e9b817a46fd9654b1f478a9b5ce", "NULL", "internal", "b3dd49c87dfd40d08d19d2895d2bc9c6", "http://[fd01:3::2]:6385/v1", "{}", true, "subcloud-4"],
"endpoint_123": ["3cde2d8d8b5748f1966f06548cf65ec9", "NULL", "admin", "7d48ddb964034eb588e557b976d11cdf", "http://[fd01:4::2]:9292", "{}", true, "subcloud-5"],
"endpoint_124": ["3e817212004241988cb0731f2f79ef76", "NULL", "admin", "995cc229e9af44ec81c1c76073f4c733", "http://[fd01:4::2]:8778", "{}", true, "subcloud-5"],
"endpoint_125": ["1ed1542248fc483fbc7ce26ca60ac00b", "NULL", "admin", "ea41162395844d30af3e59efa3e6323e", "http://[fd01:4::2]:8000/v1/%(tenant_id)s", "{}", true, "subcloud-5"],
"endpoint_126": ["4136388469804921a749485b44ebc90b", "NULL", "admin", "a15edc66a6394e18bda9f9256e7b470c", "http://[fd01:4::2]:8042", "{}", true, "subcloud-5"],
"endpoint_127": ["745d8b18ddae4353992dc123bf79ca66", "NULL", "internal", "a15edc66a6394e18bda9f9256e7b470c", "http://[fd01:4::2]:8042", "{}", true, "subcloud-5"],
"endpoint_128": ["38d157631f04457d8a9e1e1a55e8879b", "NULL", "internal", "c3677835d8024fa894929ea67b1e9fa0", "http://[fd01:4::2]:5491", "{}", true, "subcloud-5"],
"endpoint_129": ["b58d3551b31042dc8f1eeab3db053b36", "NULL", "internal", "c4ae85afaf7b465190d927e11da3eb38", "http://[fd01:4::2]:8774/v2.1/%(tenant_id)s", "{}", true, "subcloud-5"],
"endpoint_130": ["b27ddfa5a6c940c180730d70c02b448e", "NULL", "internal", "aa803a6f0ab84b68ad13a759b1b29525", "http://[fd01:4::2]:4545", "{}", true, "subcloud-5"],
"endpoint_131": ["4d69300126184d108511e4d9a1ae829c", "NULL", "admin", "5fa3efb666204693a0d0ab05fb03140c", "http://[fd01:1::2]:5000/v3", "{}", true, "subcloud-5"],
"endpoint_132": ["03e1eb2e1f6a4041a3bd721c25bca9cd", "NULL", "admin", "d6f2ef7609f44c9aa0b40b15f9f93139", "http://[fd01:4::2]:8977", "{}", true, "subcloud-5"],
"endpoint_133": ["ba748586c1e74328a95d240566abd5da", "NULL", "admin", "86328b93a3c84d63a1be7f7368138bdf", "http://[fd01:4::2]:8777", "{}", true, "subcloud-5"],
"endpoint_134": ["f1c694830a79479fb6efa8bc20af509d", "NULL", "internal", "86328b93a3c84d63a1be7f7368138bdf", "http://[fd01:4::2]:8777", "{}", true, "subcloud-5"],
"endpoint_135": ["83fda4af04c9475ba8906e4d1e25fc20", "NULL", "public", "86328b93a3c84d63a1be7f7368138bdf", "http://128.224.151.66:8777", "{}", true, "subcloud-5"],
"endpoint_136": ["b649a5f6c14b4f9db37d416b9044ac73", "NULL", "internal", "0efe25ad76f244e1bca9f6975cfe8b83", "http://[fd01:4::2]:8004/v1/%(tenant_id)s", "{}", true, "subcloud-5"],
"endpoint_137": ["46c653ca16294222be50ee0c6a530943", "NULL", "public", "0efe25ad76f244e1bca9f6975cfe8b83", "http://128.224.151.66:8004/v1/%(tenant_id)s", "{}", true, "subcloud-5"],
"endpoint_138": ["22c5a12627d54fb49d6ea7ae28efc60d", "NULL", "public", "b3dd49c87dfd40d08d19d2895d2bc9c6", "http://128.224.151.66:6385/v1", "{}", true, "subcloud-5"],
"endpoint_139": ["8170c8c7bd1f42f285b6eceb9a024134", "NULL", "public", "c5834d3740504a69bf427385319b51a0", "http://128.224.151.66:8776/v3/%(tenant_id)s", "{}", true, "subcloud-5"],
"endpoint_140": ["41f38595b5f249b7ad9cc6fdf24d1f7c", "NULL", "admin", "567f8aafa7844256b03e86655fa2bd3e", "http://[fd01:4::2]:8776/v1/%(tenant_id)s", "{}", true, "subcloud-5"],
"endpoint_141": ["adaa3140e68f4ea4a7e377a5a5b640bc", "NULL", "admin", "c5834d3740504a69bf427385319b51a0", "http://[fd01:3::2]:8776/v3/%(tenant_id)s", "{}", true, "subcloud-4"],
"endpoint_142": ["33b40962242e4afdb3ef6787af04e5a3", "NULL", "public", "c5834d3740504a69bf427385319b51a0", "http://128.224.150.224:8776/v3/%(tenant_id)s", "{}", true, "subcloud-4"],
"endpoint_143": ["744d6951d82e47dc9fc48763d1b18d60", "NULL", "internal", "8a5873d1ee914ccbae3c070d578d0d0d", "http://[fd01:3::2]:8776/v2/%(tenant_id)s", "{}", true, "subcloud-4"],
"endpoint_144": ["1dd34422beca4c2bb027d6e11a40b2c4", "NULL", "admin", "567f8aafa7844256b03e86655fa2bd3e", "http://[fd01:3::2]:8776/v1/%(tenant_id)s", "{}", true, "subcloud-4"],
"endpoint_145": ["fcf6a770edc2486aa11e4b119e5de873", "NULL", "internal", "567f8aafa7844256b03e86655fa2bd3e", "http://[fd01:3::2]:8776/v1/%(tenant_id)s", "{}", true, "subcloud-4"],
"endpoint_146": ["ef47b072365f475a8a56eeff153264ce", "NULL", "admin", "c5834d3740504a69bf427385319b51a0", "http://[fd01:2::2]:8776/v3/%(tenant_id)s", "{}", true, "subcloud-1"],
"endpoint_147": ["b461104aa21049aca0a71f8d4ee862e3", "NULL", "internal", "c5834d3740504a69bf427385319b51a0", "http://[fd01:2::2]:8776/v3/%(tenant_id)s", "{}", true, "subcloud-1"],
"endpoint_148": ["67f79a87a6954f489dd9789e844e5998", "NULL", "public", "c5834d3740504a69bf427385319b51a0", "http://128.224.150.18:8776/v3/%(tenant_id)s", "{}", true, "subcloud-1"],
"endpoint_149": ["72264b75ad9e46578d882d9d96301188", "NULL", "admin", "567f8aafa7844256b03e86655fa2bd3e", "http://[fd01:2::2]:8776/v1/%(tenant_id)s", "{}", true, "subcloud-1"],
"endpoint_150": ["be6af8a2b8a5469b9dc8f2db2e2fc787", "NULL", "internal", "567f8aafa7844256b03e86655fa2bd3e", "http://[fd01:2::2]:8776/v1/%(tenant_id)s", "{}", true, "subcloud-1"],
"endpoint_151": ["fa360cf6f5684c34be7c3ab5998b3a2c", "NULL", "public", "567f8aafa7844256b03e86655fa2bd3e", "http://128.224.150.18:8776/v1/%(tenant_id)s", "{}", true, "subcloud-1"],
"endpoint_152": ["37b87d149089406f81dba376f5309357", "NULL", "admin", "8a5873d1ee914ccbae3c070d578d0d0d", "http://[fd01:2::2]:8776/v2/%(tenant_id)s", "{}", true, "subcloud-1"],
"endpoint_153": ["19e9a38d9db34ce1ba8953300bc32e65", "NULL", "internal", "8a5873d1ee914ccbae3c070d578d0d0d", "http://[fd01:2::2]:8776/v2/%(tenant_id)s", "{}", true, "subcloud-1"],
"endpoint_154": ["b9fa7c1bc44f495e9ff6dda810b841a1", "NULL", "public", "8a5873d1ee914ccbae3c070d578d0d0d", "http://128.224.150.18:8776/v2/%(tenant_id)s", "{}", true, "subcloud-1"],
"endpoint_155": ["0a32ffd450814d7599d95b9d006cd42c", "NULL", "public", "a15edc66a6394e18bda9f9256e7b470c", "http://128.224.150.224:8042", "{}", true, "subcloud-4"],
"endpoint_156": ["d652da20f7834c53b8bdcd0e9e6e2fb4", "NULL", "admin", "ea41162395844d30af3e59efa3e6323e", "http://[fd01:3::2]:8000/v1/%(tenant_id)s", "{}", true, "subcloud-4"],
"endpoint_157": ["c6667081743646efbfe6e0ab888b3eb2", "NULL", "internal", "6cfd11045b1e4c0badcb56f18428ab5b", "http://[fd01:3::2]:9696", "{}", true, "subcloud-4"],
"endpoint_158": ["edaeb34e5038485786df22d7f6360036", "NULL", "internal", "c3677835d8024fa894929ea67b1e9fa0", "http://[fd01:3::2]:5491", "{}", true, "subcloud-4"],
"endpoint_159": ["31e0293920404baf94390a6652c9ebff", "NULL", "public", "c3677835d8024fa894929ea67b1e9fa0", "http://128.224.150.224:15491", "{}", true, "subcloud-4"],
"endpoint_160": ["1cbf691bc9c84e3f9f6cc79246660bf7", "NULL", "admin", "86328b93a3c84d63a1be7f7368138bdf", "http://[fd01:3::2]:8777", "{}", true, "subcloud-4"],
"endpoint_161": ["ba7c54b0b7ac4cfdb558665fdd731c28", "NULL", "internal", "5fa3efb666204693a0d0ab05fb03140c", "http://[fd01:1::2]:5000/v3", "{}", true, "subcloud-4"],
"endpoint_162": ["e6f1e6f998674d13b6b8fa6a843e49f9", "NULL", "internal", "d6f2ef7609f44c9aa0b40b15f9f93139", "http://[fd01:3::2]:8977", "{}", true, "subcloud-4"],
"endpoint_163": ["1f3a25620c2b4e74b0348733a190fff1", "NULL", "public", "0efe25ad76f244e1bca9f6975cfe8b83", "http://128.224.150.224:8004/v1/%(tenant_id)s", "{}", true, "subcloud-4"],
"endpoint_164": ["1daa3c5f75184962868ddd72d1b62529", "NULL", "admin", "7d48ddb964034eb588e557b976d11cdf", "http://[fd01:3::2]:9292", "{}", true, "subcloud-4"],
"endpoint_165": ["be6a2850cec44595b38eb6940baab1a6", "NULL", "admin", "c4ae85afaf7b465190d927e11da3eb38", "http://[fd01:3::2]:8774/v2.1/%(tenant_id)s", "{}", true, "subcloud-4"],
"endpoint_166": ["39c119210e864123b8b6c845be341074", "NULL", "internal", "c4ae85afaf7b465190d927e11da3eb38", "http://[fd01:3::2]:8774/v2.1/%(tenant_id)s", "{}", true, "subcloud-4"],
"endpoint_167": ["8f5980c8301146368c7be4f2a2e41cac", "NULL", "public", "c4ae85afaf7b465190d927e11da3eb38", "http://128.224.150.224:8774/v2.1/%(tenant_id)s", "{}", true, "subcloud-4"],
"endpoint_168": ["9953dc666ff24502b03cfb69c408f442", "NULL", "internal", "7d48ddb964034eb588e557b976d11cdf", "http://[fd01:4::2]:9292", "{}", true, "subcloud-5"],
"endpoint_169": ["368c49d56241450188857d2e7cd757d3", "NULL", "internal", "995cc229e9af44ec81c1c76073f4c733", "http://[fd01:4::2]:8778", "{}", true, "subcloud-5"],
"endpoint_170": ["33f33be90a1442839aef4f50afca45f9", "NULL", "internal", "ea41162395844d30af3e59efa3e6323e", "http://[fd01:4::2]:8000/v1/%(tenant_id)s", "{}", true, "subcloud-5"],
"endpoint_171": ["523fe3578d634f17a81e04cb0e3c48c0", "NULL", "public", "a15edc66a6394e18bda9f9256e7b470c", "http://128.224.151.66:8042", "{}", true, "subcloud-5"],
"endpoint_172": ["e2d534e4e8804d0ebdb175e1f38f1cf2", "NULL", "public", "c3677835d8024fa894929ea67b1e9fa0", "http://128.224.151.66:15491", "{}", true, "subcloud-5"],
"endpoint_173": ["dc4cc20db20e4a08be988012f3b53efa", "NULL", "public", "c4ae85afaf7b465190d927e11da3eb38", "http://128.224.151.66:8774/v2.1/%(tenant_id)s", "{}", true, "subcloud-5"],
"endpoint_174": ["135d036dc1804366873f238f193d0ee4", "NULL", "public", "aa803a6f0ab84b68ad13a759b1b29525", "http://128.224.151.66:4545", "{}", true, "subcloud-5"],
"endpoint_175": ["dbcf6bf6bcdf409ba2333370415fbd38", "NULL", "internal", "5fa3efb666204693a0d0ab05fb03140c", "http://[fd01:1::2]:5000/v3", "{}", true, "subcloud-5"],
"endpoint_176": ["a6a2033b69a34a04bb5a1d944c764401", "NULL", "internal", "d6f2ef7609f44c9aa0b40b15f9f93139", "http://[fd01:4::2]:8977", "{}", true, "subcloud-5"],
"endpoint_177": ["efb480b1d3374e0c97e688c1d5946d4d", "NULL", "admin", "0efe25ad76f244e1bca9f6975cfe8b83", "http://[fd01:4::2]:8004/v1/%(tenant_id)s", "{}", true, "subcloud-5"],
"endpoint_178": ["d526cf9c4c1c48be8d9770e8e261de07", "NULL", "internal", "b3dd49c87dfd40d08d19d2895d2bc9c6", "http://[fd01:4::2]:6385/v1", "{}", true, "subcloud-5"],
"endpoint_179": ["4881245fbcb5474ba807b60b1cab4c7f", "NULL", "admin", "c5834d3740504a69bf427385319b51a0", "http://[fd01:4::2]:8776/v3/%(tenant_id)s", "{}", true, "subcloud-5"],
"endpoint_180": ["e27f671897e54872876470d1880a1ca3", "NULL", "admin", "8a5873d1ee914ccbae3c070d578d0d0d", "http://[fd01:4::2]:8776/v2/%(tenant_id)s", "{}", true, "subcloud-5"],
"endpoint_181": ["3530851c3c7444d981ac145e3f6545d7", "NULL", "public", "8a5873d1ee914ccbae3c070d578d0d0d", "http://128.224.151.66:8776/v2/%(tenant_id)s", "{}", true, "subcloud-5"],
"endpoint_182": ["9157998f1a8a4d54ba679b31ac3eac0c", "NULL", "internal", "567f8aafa7844256b03e86655fa2bd3e", "http://[fd01:4::2]:8776/v1/%(tenant_id)s", "{}", true, "subcloud-5"]
}

View File

@ -1,24 +0,0 @@
{
"local_user_0": [3, "8ff17967605a4240b8a6c15ed4bf10f1", "default", "panko", 0, "NULL"],
"local_user_1": [4, "c5d07e41f78747949fbc1de84168a44f", "default", "dcorch", 0, "NULL"],
"local_user_2": [5, "5f4d401253a74cc8ab507957b9cafb29", "default", "neutron", 0, "NULL"],
"local_user_3": [6, "4abaa160c36846328a482217de0112af", "default", "heat", 0, "NULL"],
"local_user_4": [7, "692bd0a53c414d6dbbd0ba4d6fdb3c49", "default", "vim", 0, "NULL"],
"local_user_5": [8, "6cf3cfc5d26f458daf66802d8e8a2e2a", "default", "aodh", 0, "NULL"],
"local_user_6": [11, "a757fb8d624b46b4b10eea1b4d2ca0d2", "default", "glance", 0, "NULL"],
"local_user_7": [12, "118a09e72d6a4194af383285cb7e579a", "default", "placement", 0, "NULL"],
"local_user_8": [13, "f1cc67bbf0d84c89a1df3067b538e1b8", "default", "patching", 0, "NULL"],
"local_user_9": [14, "f94aa82e49dd4aaa8bf1c80fee109234", "2423d6c7853145a798e6491ca9de6e2b", "heat_admin", 0, "NULL"],
"local_user_10": [15, "04facea7432848c9bfdf3780bb51612e", "default", "dcmanager", 0, "NULL"],
"local_user_11": [16, "c455073c30044db8908630595699d874", "default", "ceilometer", 0, "NULL"],
"local_user_12": [17, "4a2c1f4c8ae942b19e388576e93d1ced", "default", "cinder", 0, "NULL"],
"local_user_13": [18, "d1399977957645e4a1e26c1b7b1e6d35", "default", "tenant1", 0, "NULL"],
"local_user_14": [19, "5ad8271fc6bc432ab80685945bc5b346", "default", "tenant2", 0, "NULL"],
"local_user_15": [20, "73403639b14c40e6b288c0e2cd3707bc", "default", "cindersubcloud-1", 0, "NULL"],
"local_user_16": [9, "146482c0aba84e35a5c1a507cff9db3d", "default", "nova", 0, "NULL"],
"local_user_17": [10, "63dd0fb409264a43b7dbfe9582b8023d", "default", "mtce", 0, "NULL"],
"local_user_18": [2, "81eed996f2a346a3b5282fe2a881db9b", "default", "sysinv", 0, "NULL"],
"local_user_19": [23, "872e8c1b48c640c59189cf1587bd4e41", "default", "cindersubcloud-5", 0, "NULL"],
"local_user_20": [24, "f85b8eca57a441838cfe5a39d33230b5", "default", "cindersubcloud-4", 0, "NULL"],
"local_user_21": [1, "500b2ba0791e44a780d4dad3c5a1ff31", "default", "admin", 0, "NULL"]
}

View File

@ -1,6 +0,0 @@
{
"migrate_version_0": ["keystone_expand", "/usr/lib/python2.7/site-packages/keystone/common/sql/expand_repo", 24],
"migrate_version_1": ["keystone_data_migrate", "/usr/lib/python2.7/site-packages/keystone/common/sql/data_migration_repo", 24],
"migrate_version_2": ["keystone", "/usr/lib/python2.7/site-packages/keystone/common/sql/migrate_repo", 109],
"migrate_version_3": ["keystone_contract", "/usr/lib/python2.7/site-packages/keystone/common/sql/contract_repo", 24]
}

View File

@ -1,24 +0,0 @@
{
"password_0": [1, 1, "NULL", "NULL", false, "$2b$12$fVKV1.pFz76EgkTePPtzEuMYbTS8CbsVghxDhX7f7liZx8RlW0Y6O", 1523460727481605, "NULL", "2018-04-11 15:32:07.481605"],
"password_1": [2, 2, "NULL", "NULL", false, "$2b$12$SlX.b0AgnYn4nZtJ3jmvWeCpSQiY21QjdlpjvkMwyUjH8zYJzLBHe", 1523460750612369, "NULL", "2018-04-11 15:32:30.612369"],
"password_2": [3, 3, "NULL", "NULL", false, "$2b$12$xOE0UlHJSzLiqeupbP/BvOTKxptmAAXylD0IlcbecOpeQ9w3L8o9K", 1523461139214437, "NULL", "2018-04-11 15:38:59.214437"],
"password_3": [4, 4, "NULL", "NULL", false, "$2b$12$XraXnRCsEobDqxvZI10YwOCN2qFdVx4YyVsnAggUk6JOpZIA1ILRC", 1523461146035371, "NULL", "2018-04-11 15:39:06.035371"],
"password_4": [5, 5, "NULL", "NULL", false, "$2b$12$hm9rPyEF4MGzGhVN6MZEZOV20HNAEYdd/X5tE/eTMBUdf2ojGozym", 1523461151305674, "NULL", "2018-04-11 15:39:11.305674"],
"password_5": [6, 6, "NULL", "NULL", false, "$2b$12$uRXa5txGlCkP3K8k2evESOKE0OCvN0E1lmtDEffUo4GN4M3/moDhG", 1523461154969656, "NULL", "2018-04-11 15:39:14.969656"],
"password_6": [7, 7, "NULL", "NULL", false, "$2b$12$UDWh3bOprZkcicTvX74ekO7Z2sA9i578bvJWR3u3JKxx./R4zfAZm", 1523461159304616, "NULL", "2018-04-11 15:39:19.304616"],
"password_7": [8, 8, "NULL", "NULL", false, "$2b$12$aaxz0tFwmstJa28TC6CBAubmJImu7CpnOf6IL5Ay69xrmhjntK7U6", 1523461167384976, "NULL", "2018-04-11 15:39:27.384976"],
"password_8": [9, 9, "NULL", "NULL", false, "$2b$12$P8NNMYOhoASdrH9otXOSpuSdRmumCxmaUw86sQBr4uMBU0QZgrVB6", 1523461170949886, "NULL", "2018-04-11 15:39:30.949886"],
"password_9": [10, 10, "NULL", "NULL", false, "$2b$12$G5oIKiC7dArW21ALaT.vyuHoUl2frQdBrNH9oX1JGiC/IVK4/x5d2", 1523461176191435, "NULL", "2018-04-11 15:39:36.191435"],
"password_10": [11, 11, "NULL", "NULL", false, "$2b$12$c7khbuXewToyssTnkBI.sOSP1evojjJVadd8aVPjRdSaKBXhOu5XO", 1523461179586188, "NULL", "2018-04-11 15:39:39.586188"],
"password_11": [12, 12, "NULL", "NULL", false, "$2b$12$YiAwkChCYKqog31cjk9hReGyoSf.LBk2pp4ca/ujTMUZnS5Bi06oS", 1523461183306664, "NULL", "2018-04-11 15:39:43.306664"],
"password_12": [13, 13, "NULL", "NULL", false, "$2b$12$6R5Wc3uuF270K.Kz0Qhdze20dzWHUx/YNYCT4CBIZtq70T4eTKo2.", 1523461186923901, "NULL", "2018-04-11 15:39:46.923901"],
"password_13": [14, 14, "NULL", "NULL", false, "$2b$12$c069e0ysfrkXryUc7Y7FV.V0mIV1AuAebtTPt6HG51etBI8JYiLK2", 1523461239110598, "NULL", "2018-04-11 15:40:39.110598"],
"password_14": [15, 15, "NULL", "NULL", false, "$2b$12$PhXg966X3UpaW6nUHKjAseGgIq2WFEiwxqsg0AQl1fZB0XRyF3q1G", 1523461266343289, "NULL", "2018-04-11 15:41:06.343289"],
"password_15": [16, 16, "NULL", "NULL", false, "$2b$12$HEbgdNZ.XAueAUE.yQVRV.RePFvWXi3kzuE5nzuQ/cR4ecNdq5GuK", 1523461278526719, "NULL", "2018-04-11 15:41:18.526719"],
"password_16": [17, 17, "NULL", "NULL", false, "$2b$12$ta3TKTGmLRRSb0LvENvFpOdkyvf24h.XDYuE4zJCavb/z5ERh6GcK", 1523462230091266, "NULL", "2018-04-11 15:57:10.091266"],
"password_17": [18, 18, "NULL", "NULL", false, "$2b$12$IlICOy5XIrgXKB/LrpYH8OxhhumP6TIX7CoNET3jXEloQdcvLgig2", 1523462315972021, "NULL", "2018-04-11 15:58:35.972021"],
"password_18": [19, 19, "NULL", "NULL", false, "$2b$12$Tzx42wm1w1hauLkUqypJuu84yTsfWtm9XrsZFLNlpoizX/b6MLQHO", 1523462331773330, "NULL", "2018-04-11 15:58:51.77333"],
"password_19": [20, 20, "NULL", "NULL", false, "$2b$12$lFM1kQaZ3wQyuOcsUYnbqeEgRmQsYFsabjMJLPWm3EgZCnHAO0fXC", 1523469345119409, "NULL", "2018-04-11 17:55:45.119409"],
"password_20": [23, 23, "NULL", "NULL", false, "$2b$12$IpkrfjrFTVclpDV9qC4Twuct8aFZUFEPEEr/6tznmFr/U8lc42k1m", 1526397706723260, "NULL", "2018-05-15 15:21:46.72326"],
"password_21": [24, 24, "NULL", "NULL", false, "$2b$12$809wlBp0xowtrgpFiwGNp.gVrJ8uvdQNN43zQGbexRm82Mb5AJriq", 1526399747870689, "NULL", "2018-05-15 15:55:47.870689"]
}

View File

@ -1,9 +0,0 @@
{
"project_0": ["<<keystone.domain.root>>", "<<keystone.domain.root>>", "{}", "", false, "<<keystone.domain.root>>", "NULL", true],
"project_1": ["default", "Default", "{}", "The default domain", true, "<<keystone.domain.root>>", "NULL", true],
"project_2": ["8803689162424f60a71e4642e9dc2b9e", "admin", "{}", "admin tenant", true, "default", "default", false],
"project_3": ["f3b78df9bbd74d6b8bbf8c5f08427ca7", "services", "{}", "Tenant for the openstack services", true, "default", "default", false],
"project_4": ["2423d6c7853145a798e6491ca9de6e2b", "heat", "{}", "", true, "<<keystone.domain.root>>", "NULL", true],
"project_5": ["9008c3fc102040cd8149b5c0d8aa06a3", "tenant1", "{}", "tenant1", true, "default", "default", false],
"project_6": ["6ecc44a6b24e4c398dc749f1386b2ced", "tenant2", "{}", "tenant2", true, "default", "default", false]
}

View File

@ -1,7 +0,0 @@
{
"region_0": ["SystemController", "", "NULL", "{}"],
"region_1": ["RegionOne", "", "NULL", "{}"],
"region_2": ["subcloud-1", "", "NULL", "{}"],
"region_3": ["subcloud-4", "", "NULL", "{}"],
"region_4": ["subcloud-5", "", "NULL", "{}"]
}

View File

@ -1,3 +0,0 @@
{
"revocation_event_0": [7, "NULL", "NULL", "8c5414c673634a8ebb837a897cb73a54", "NULL", "NULL", "NULL", "NULL", "2018-05-21 13:48:50", "NULL", "2018-05-21 13:48:50", "NULL", "NULL"]
}

View File

@ -1,7 +0,0 @@
{
"role_0": ["59fa225368524bf6974f76a25050143b", "admin", "{}", "<<null>>"],
"role_1": ["9fe2ff9ee4384b1894a90878d3e92bab", "_member_", "{}", "<<null>>"],
"role_2": ["1f62f45b748b4c5db66f97c715ecf1ae", "ResellerAdmin", "{}", "<<null>>"],
"role_3": ["d6bd09cf50334c5b9b1fe4cdeedfbdc4", "heat_stack_user", "{}", "<<null>>"],
"role_4": ["ef2e357b0d4d4bcaaa6ae303c7d58d7e", "heat_stack_owner", "{}", "<<null>>"]
}

View File

@ -1,20 +0,0 @@
{
"service_0": ["5fa3efb666204693a0d0ab05fb03140c", "identity", true, "{"description": "OpenStack Identity Service", "name": "keystone"}"],
"service_1": ["b3dd49c87dfd40d08d19d2895d2bc9c6", "platform", true, "{"description": "SysInvService", "name": "sysinv"}"],
"service_2": ["9754bb0a6cba4ae4b62c1a4e825964a5", "dcmanager", true, "{"description": "DCManagerService", "name": "dcmanager"}"],
"service_3": ["c931b77a92bc4208909d9205d85391a0", "dcorch", true, "{"description": "DcOrchService", "name": "dcorch"}"],
"service_4": ["7d48ddb964034eb588e557b976d11cdf", "image", true, "{"description": "OpenStack Image Service", "name": "glance"}"],
"service_5": ["a15edc66a6394e18bda9f9256e7b470c", "alarming", true, "{"description": "OpenStack Alarming Service", "name": "aodh"}"],
"service_6": ["995cc229e9af44ec81c1c76073f4c733", "placement", true, "{"description": "Openstack Placement Service", "name": "placement"}"],
"service_7": ["c4ae85afaf7b465190d927e11da3eb38", "compute", true, "{"description": "Openstack Compute Service", "name": "nova"}"],
"service_8": ["ea41162395844d30af3e59efa3e6323e", "cloudformation", true, "{"description": "Openstack Cloudformation Service", "name": "heat-cfn"}"],
"service_9": ["6cfd11045b1e4c0badcb56f18428ab5b", "network", true, "{"description": "Neutron Networking Service", "name": "neutron"}"],
"service_10": ["c3677835d8024fa894929ea67b1e9fa0", "patching", true, "{"description": "Patching Service", "name": "patching"}"],
"service_11": ["86328b93a3c84d63a1be7f7368138bdf", "metering", true, "{"description": "Openstack Metering Service", "name": "ceilometer"}"],
"service_12": ["aa803a6f0ab84b68ad13a759b1b29525", "nfv", true, "{"description": "Virtual Infrastructure Manager", "name": "vim"}"],
"service_13": ["d6f2ef7609f44c9aa0b40b15f9f93139", "event", true, "{"description": "OpenStack Event Service", "name": "panko"}"],
"service_14": ["0efe25ad76f244e1bca9f6975cfe8b83", "orchestration", true, "{"description": "Openstack Orchestration Service", "name": "heat"}"],
"service_15": ["c5834d3740504a69bf427385319b51a0", "volumev3", true, "{"description": "Cinder Service v3", "name": "cinderv3"}"],
"service_16": ["8a5873d1ee914ccbae3c070d578d0d0d", "volumev2", true, "{"description": "Cinder Service v2", "name": "cinderv2"}"],
"service_17": ["567f8aafa7844256b03e86655fa2bd3e", "volume", true, "{"description": "Cinder Service", "name": "cinder"}"]
}

View File

@ -1,6 +0,0 @@
{
"strategy_steps_0": [id, subcloud_id, stage, state, details, started_at, finished_at, reserved_1, reserved_2, created_at, updated_at, deleted_at, deleted],
"strategy_steps_1": [id, subcloud_id, stage, state, details, started_at, finished_at, reserved_1, reserved_2, created_at, updated_at, deleted_at, deleted],
"strategy_steps_2": [id, subcloud_id, stage, state, details, started_at, finished_at, reserved_1, reserved_2, created_at, updated_at, deleted_at, deleted],
"strategy_steps_3": [id, subcloud_id, stage, state, details, started_at, finished_at, reserved_1, reserved_2, created_at, updated_at, deleted_at, deleted]
}

View File

@ -1,17 +0,0 @@
{
"subcloud_status_0": [id, subcloud_id, endpoint_type, sync_status, reserved_1, reserved_2, created_at, updated_at, deleted_at, deleted],
"subcloud_status_1": [id, subcloud_id, endpoint_type, sync_status, reserved_1, reserved_2, created_at, updated_at, deleted_at, deleted],
"subcloud_status_2": [id, subcloud_id, endpoint_type, sync_status, reserved_1, reserved_2, created_at, updated_at, deleted_at, deleted],
"subcloud_status_3": [id, subcloud_id, endpoint_type, sync_status, reserved_1, reserved_2, created_at, updated_at, deleted_at, deleted],
"subcloud_status_4": [id, subcloud_id, endpoint_type, sync_status, reserved_1, reserved_2, created_at, updated_at, deleted_at, deleted],
"subcloud_status_5": [id, subcloud_id, endpoint_type, sync_status, reserved_1, reserved_2, created_at, updated_at, deleted_at, deleted],
"subcloud_status_6": [id, subcloud_id, endpoint_type, sync_status, reserved_1, reserved_2, created_at, updated_at, deleted_at, deleted],
"subcloud_status_7": [id, subcloud_id, endpoint_type, sync_status, reserved_1, reserved_2, created_at, updated_at, deleted_at, deleted],
"subcloud_status_8": [id, subcloud_id, endpoint_type, sync_status, reserved_1, reserved_2, created_at, updated_at, deleted_at, deleted],
"subcloud_status_9": [id, subcloud_id, endpoint_type, sync_status, reserved_1, reserved_2, created_at, updated_at, deleted_at, deleted],
"subcloud_status_10": [id, subcloud_id, endpoint_type, sync_status, reserved_1, reserved_2, created_at, updated_at, deleted_at, deleted],
"subcloud_status_11": [id, subcloud_id, endpoint_type, sync_status, reserved_1, reserved_2, created_at, updated_at, deleted_at, deleted],
"subcloud_status_12": [id, subcloud_id, endpoint_type, sync_status, reserved_1, reserved_2, created_at, updated_at, deleted_at, deleted],
"subcloud_status_13": [id, subcloud_id, endpoint_type, sync_status, reserved_1, reserved_2, created_at, updated_at, deleted_at, deleted],
"subcloud_status_14": [id, subcloud_id, endpoint_type, sync_status, reserved_1, reserved_2, created_at, updated_at, deleted_at, deleted]
}

View File

@ -1,5 +0,0 @@
{
"subclouds_0": [id, name, description, location, software_version, management_state, availability_status, management_subnet, management_gateway_ip, management_start_ip, management_end_ip, systemcontroller_gateway_ip, audit_fail_count, reserved_1, reserved_2, created_at, updated_at, deleted_at, deleted],
"subclouds_1": [id, name, description, location, software_version, management_state, availability_status, management_subnet, management_gateway_ip, management_start_ip, management_end_ip, systemcontroller_gateway_ip, audit_fail_count, reserved_1, reserved_2, created_at, updated_at, deleted_at, deleted],
"subclouds_2": [id, name, description, location, software_version, management_state, availability_status, management_subnet, management_gateway_ip, management_start_ip, management_end_ip, systemcontroller_gateway_ip, audit_fail_count, reserved_1, reserved_2, created_at, updated_at, deleted_at, deleted]
}

View File

@ -1,3 +0,0 @@
{
"sw_update_opts_default_0": [id, subcloud_id, storage_apply_type, compute_apply_type, max_parallel_computes, default_instance_action, alarm_restriction_type, reserved_1, reserved_2, created_at, updated_at, deleted_at, deleted]
}

View File

@ -1,3 +0,0 @@
{
"sw_update_strategy_0": [id, type, subcloud_apply_type, max_parallel_subclouds, stop_on_failure, state, reserved_1, reserved_2, created_at, updated_at, deleted_at, deleted]
}

View File

@ -1,6 +0,0 @@
{
"trust_0": ["8955b2c1a40749b49f2bf21cc4b0acb4", "500b2ba0791e44a780d4dad3c5a1ff31", "4abaa160c36846328a482217de0112af", "9008c3fc102040cd8149b5c0d8aa06a3", true, "2018-04-12 17:24:22.199655", "NULL", "NULL", "{"redelegation_count": 0, "roles": [{"id": "9fe2ff9ee4384b1894a90878d3e92bab"}]}"],
"trust_1": ["6562be68284e4cc6a8832714569e180b", "500b2ba0791e44a780d4dad3c5a1ff31", "4abaa160c36846328a482217de0112af", "9008c3fc102040cd8149b5c0d8aa06a3", true, "2018-04-12 19:03:55.461547", "NULL", "NULL", "{"redelegation_count": 0, "roles": [{"id": "9fe2ff9ee4384b1894a90878d3e92bab"}]}"],
"trust_2": ["e6c80f658ebb4ace9020c31865c0245b", "500b2ba0791e44a780d4dad3c5a1ff31", "4abaa160c36846328a482217de0112af", "9008c3fc102040cd8149b5c0d8aa06a3", true, "2018-04-12 19:15:48.126469", "NULL", "NULL", "{"redelegation_count": 0, "roles": [{"id": "9fe2ff9ee4384b1894a90878d3e92bab"}]}"],
"trust_3": ["0e67dc152a514c15827da1dbeb4c84cf", "500b2ba0791e44a780d4dad3c5a1ff31", "4abaa160c36846328a482217de0112af", "9008c3fc102040cd8149b5c0d8aa06a3", true, "2018-04-13 19:26:04.180508", "NULL", "NULL", "{"redelegation_count": 0, "roles": [{"id": "9fe2ff9ee4384b1894a90878d3e92bab"}]}"]
}

View File

@ -1,6 +0,0 @@
{
"trust_role_0": ["8955b2c1a40749b49f2bf21cc4b0acb4", "9fe2ff9ee4384b1894a90878d3e92bab"],
"trust_role_1": ["6562be68284e4cc6a8832714569e180b", "9fe2ff9ee4384b1894a90878d3e92bab"],
"trust_role_2": ["e6c80f658ebb4ace9020c31865c0245b", "9fe2ff9ee4384b1894a90878d3e92bab"],
"trust_role_3": ["0e67dc152a514c15827da1dbeb4c84cf", "9fe2ff9ee4384b1894a90878d3e92bab"]
}

View File

@ -1,24 +0,0 @@
{
"user_0": ["500b2ba0791e44a780d4dad3c5a1ff31", "{"email": "admin@localhost"}", true, "NULL", "2018-04-11 15:32:07.73006", "NULL", "default"],
"user_1": ["81eed996f2a346a3b5282fe2a881db9b", "{"email": "sysinv@localhost"}", true, "NULL", "2018-04-11 15:32:30.858964", "NULL", "default"],
"user_2": ["8ff17967605a4240b8a6c15ed4bf10f1", "{"email": "panko@localhost"}", true, "NULL", "2018-04-11 15:38:59.440114", "NULL", "default"],
"user_3": ["c5d07e41f78747949fbc1de84168a44f", "{"email": "dcorch@localhost"}", true, "NULL", "2018-04-11 15:39:06.280769", "NULL", "default"],
"user_4": ["5f4d401253a74cc8ab507957b9cafb29", "{"email": "neutron@localhost"}", true, "NULL", "2018-04-11 15:39:11.531363", "NULL", "default"],
"user_5": ["4abaa160c36846328a482217de0112af", "{"email": "heat@localhost"}", true, "NULL", "2018-04-11 15:39:15.194125", "NULL", "default"],
"user_6": ["692bd0a53c414d6dbbd0ba4d6fdb3c49", "{"email": "vim@localhost"}", true, "NULL", "2018-04-11 15:39:19.530182", "NULL", "default"],
"user_7": ["6cf3cfc5d26f458daf66802d8e8a2e2a", "{"email": "aodh@localhost"}", true, "NULL", "2018-04-11 15:39:27.610475", "NULL", "default"],
"user_8": ["146482c0aba84e35a5c1a507cff9db3d", "{"email": "nova@localhost"}", true, "NULL", "2018-04-11 15:39:31.174625", "NULL", "default"],
"user_9": ["63dd0fb409264a43b7dbfe9582b8023d", "{}", true, "NULL", "2018-04-11 15:39:36.417284", "NULL", "default"],
"user_10": ["a757fb8d624b46b4b10eea1b4d2ca0d2", "{"email": "glance@localhost"}", true, "NULL", "2018-04-11 15:39:39.812304", "NULL", "default"],
"user_11": ["118a09e72d6a4194af383285cb7e579a", "{"email": "placement@localhost"}", true, "NULL", "2018-04-11 15:39:43.532389", "NULL", "default"],
"user_12": ["f1cc67bbf0d84c89a1df3067b538e1b8", "{"email": "patching@localhost"}", true, "NULL", "2018-04-11 15:39:47.161565", "NULL", "default"],
"user_13": ["f94aa82e49dd4aaa8bf1c80fee109234", "{"email": "heat_admin@localhost"}", true, "NULL", "2018-04-11 15:40:39.336097", "NULL", "2423d6c7853145a798e6491ca9de6e2b"],
"user_14": ["04facea7432848c9bfdf3780bb51612e", "{"email": "dcmanager@localhost"}", true, "NULL", "2018-04-11 15:41:06.569371", "NULL", "default"],
"user_15": ["c455073c30044db8908630595699d874", "{"email": "ceilometer@localhost"}", true, "NULL", "2018-04-11 15:41:18.751809", "NULL", "default"],
"user_16": ["4a2c1f4c8ae942b19e388576e93d1ced", "{"email": "cinder@localhost"}", true, "NULL", "2018-04-11 15:57:10.340431", "NULL", "default"],
"user_17": ["d1399977957645e4a1e26c1b7b1e6d35", "{"email": "tenant1@noreply.com"}", true, "9008c3fc102040cd8149b5c0d8aa06a3", "2018-04-11 15:58:36.244453", "NULL", "default"],
"user_18": ["5ad8271fc6bc432ab80685945bc5b346", "{"email": "tenant2@noreply.com"}", true, "6ecc44a6b24e4c398dc749f1386b2ced", "2018-04-11 15:58:52.037904", "NULL", "default"],
"user_19": ["73403639b14c40e6b288c0e2cd3707bc", "{"email": "cinder@localhost"}", true, "NULL", "2018-04-11 17:55:45.379834", "NULL", "default"],
"user_20": ["872e8c1b48c640c59189cf1587bd4e41", "{"email": "cinder@localhost"}", true, "NULL", "2018-05-15 15:21:47.01523", "NULL", "default"],
"user_21": ["f85b8eca57a441838cfe5a39d33230b5", "{"email": "cinder@localhost"}", true, "NULL", "2018-05-15 15:55:48.164975", "NULL", "default"]
}

View File

@ -1,6 +0,0 @@
{
"subclouds_0": [6, "subcloud-4", "wcp85 subcloud", "Ottawa-PheonixLab-Aisle_3-Rack_C", "18.03", "managed", "online", "fd01:3::0/64", "fd01:3::1", "fd01:3::2", "fd01:3::f", "fd01:1::1", 0, "NULL", "NULL", "2018-05-15 14:45:12.508708", "2018-05-24 10:48:18.090931", "NULL", 0],
"subclouds_1": [1, "subcloud-1", "wcp80 subcloud", "Ottawa-PheonixLab-Aisle_3-Rack_B", "18.03", "managed", "online", "fd01:2::0/64", "fd01:2::1", "fd01:2::2", "fd01:2::f", "fd01:1::1", 0, "NULL", "NULL", "2018-04-11 17:01:48.54467", "2018-05-24 00:17:34.74161", "NULL", 0],
"subclouds_2": [7, "subcloud-5", "wcp87 subcloud", "Ottawa-PheonixLab-Aisle_4-Rack_B", "18.03", "managed", "online", "fd01:4::0/64", "fd01:4::1", "fd01:4::2", "fd01:4::f", "fd01:1::1", 0, "NULL", "NULL", "2018-05-15 14:45:48.95625", "2018-05-24 10:48:17.907767", "NULL", 0],
"subclouds_3": [8, "subcloud-6", "wcp89 subcloud", "Ottawa-PheonixLab-Aisle_4-Rack_B", "18.03", "managed", "online", "fd01:5::0/64", "fd01:5::1", "fd01:5::2", "fd01:5::f", "fd01:1::1", 0, "NULL", "NULL", "2018-05-15 14:45:48.95625", "2018-05-24 10:48:17.907767", "NULL", 0]
}

View File

@ -1,8 +0,0 @@
{
"address_modes_0": ["2018-04-11 15:34:01.158775", "NULL", "NULL", 1, "bad688d9-2a15-4b8d-90c1-3bf31001e27f", 4, "disabled", 9, "NULL"],
"address_modes_1": ["2018-04-11 15:34:01.174414", "NULL", "NULL", 2, "cd3a3530-0c38-44f6-85d2-48726abb03f1", 6, "static", 9, "NULL"],
"address_modes_2": ["2018-04-11 15:34:02.105151", "NULL", "NULL", 3, "36e85759-90fb-4e42-9a1b-6895cd5dddb0", 4, "static", 1, "NULL"],
"address_modes_3": ["2018-04-11 15:34:02.122732", "NULL", "NULL", 4, "48ece145-341d-4e9c-abe5-db0188d4661c", 6, "disabled", 1, "NULL"],
"address_modes_4": ["2018-04-11 17:36:11.215411", "NULL", "NULL", 5, "4dc77b93-eb41-4345-b5be-f116961dade7", 4, "static", 10, "NULL"],
"address_modes_5": ["2018-04-11 17:36:11.235055", "NULL", "NULL", 6, "7af4c2a6-e52d-48d6-b020-3c1b4a578ed0", 6, "disabled", 10, "NULL"]
}

View File

@ -1,6 +0,0 @@
{
"address_pool_ranges_0": ["2018-04-11 15:32:43.393776", "NULL", "NULL", 1, "47b19f92-6055-4cf8-84cc-bb51a3f3474e", "fd01:1::2", "fd01:1::ffff:ffff:ffff:fffe", 1],
"address_pool_ranges_1": ["2018-04-11 15:32:43.624239", "NULL", "NULL", 2, "b5847dfe-d645-47d1-a89a-3153dbb4740f", "192.168.202.2", "192.168.202.254", 2],
"address_pool_ranges_2": ["2018-04-11 15:32:43.831987", "NULL", "NULL", 3, "a485084a-4c9d-45fa-ab6d-f94e64de1065", "128.224.150.1", "128.224.151.254", 3],
"address_pool_ranges_3": ["2018-04-11 15:32:44.015227", "NULL", "NULL", 4, "ebfb885a-cc27-49e9-abd4-df333050cfd2", "ff05::14:1:1:1", "ff05::14:1:1:e", 4]
}

View File

@ -1,6 +0,0 @@
{
"address_pools_0": ["2018-04-11 15:32:43.392811", "2018-04-11 15:32:43.603851", "NULL", 1, "0adb1258-a669-481b-b0ff-0460f5eae9a6", "management", 6, "fd01:1::", 64, "random", 2, 3, 1, "NULL"],
"address_pools_1": ["2018-04-11 15:32:43.623812", "2018-04-11 15:32:43.750238", "NULL", 2, "f06cc319-1feb-4c8f-bae4-a8e62c037906", "pxeboot", 4, "192.168.202.0", 24, "random", 7, 8, 6, "NULL"],
"address_pools_2": ["2018-04-11 15:32:43.831516", "NULL", "NULL", 3, "47474b9c-bd25-4bec-a555-d570362a7401", "oam", 4, "128.224.150.0", 23, "random", 10, 11, 9, 12],
"address_pools_3": ["2018-04-11 15:32:44.014775", "NULL", "NULL", 4, "4badaca3-a355-4238-96b5-b60ca158aefa", "multicast-subnet", 6, "ff05::14:1:1:0", 124, "random", "NULL", "NULL", "NULL", "NULL"]
}

View File

@ -1,19 +0,0 @@
{
"addresses_0": ["2018-04-11 15:32:43.459592", "NULL", "NULL", 1, "5e770169-7267-497a-8096-de7442b5f296", "controller-mgmt", 6, "fd01:1::2", 64, true, "NULL", 1],
"addresses_1": ["2018-04-11 15:32:43.550478", "NULL", "NULL", 4, "d78f8a8a-bee1-4fba-a647-61726fd23db7", "controller-platform-nfs-mgmt", 6, "fd01:1::5", 64, true, "NULL", 1],
"addresses_2": ["2018-04-11 15:32:43.581086", "NULL", "NULL", 5, "de5ce7c3-122d-4aa3-8fb6-7a5b1b4a4660", "controller-nfs-mgmt", 6, "fd01:1::6", 64, true, "NULL", 1],
"addresses_3": ["2018-04-11 15:32:43.679669", "NULL", "NULL", 6, "4dda7f9f-f887-49a9-b239-fd16614c0c0b", "controller-pxeboot", 4, "192.168.202.2", 24, false, "NULL", 2],
"addresses_4": ["2018-04-11 15:32:43.776518", "2018-04-11 15:32:43.922704", "NULL", 9, "adfda1b4-e749-4b13-b9b9-7dda161db0a3", "controller-oam", 4, "128.224.151.162", 23, false, "NULL", 3],
"addresses_5": ["2018-04-11 15:32:43.822936", "2018-04-11 15:32:43.971363", "NULL", 12, "292511e2-0c7c-49a3-909c-344b18829314", "controller-gateway-oam", 4, "128.224.150.1", 23, false, "NULL", 3],
"addresses_6": ["2018-04-11 15:32:44.072076", "NULL", "NULL", 13, "f1015901-3576-45c4-9771-5da10dc2c3e2", "sm-mgmt-ip-multicast", 6, "ff05::14:1:1:1", 124, true, "NULL", 4],
"addresses_7": ["2018-04-11 15:32:44.096159", "NULL", "NULL", 14, "3bd6dac6-09d0-461e-ad1d-b1fb564278f9", "mtce-mgmt-ip-multicast", 6, "ff05::14:1:1:2", 124, true, "NULL", 4],
"addresses_8": ["2018-04-11 15:32:44.186736", "NULL", "NULL", 15, "3456cd83-4738-4ce2-a3ba-b29ed760211b", "patch-controller-mgmt-ip-multicast", 6, "ff05::14:1:1:3", 124, true, "NULL", 4],
"addresses_9": ["2018-04-11 15:32:44.213172", "NULL", "NULL", 16, "44955509-385d-4509-bb96-4f88a485b186", "patch-agent-mgmt-ip-multicast", 6, "ff05::14:1:1:4", 124, true, "NULL", 4],
"addresses_10": ["2018-04-11 15:32:43.704382", "2018-04-11 15:34:00.669646", "NULL", 7, "81bdd77e-bc12-476a-bd98-ff04d2cd87ab", "controller-0-pxeboot", 4, "192.168.202.3", 24, false, 7, 2],
"addresses_11": ["2018-04-11 15:32:43.791295", "2018-04-11 15:34:02.259728", "NULL", 10, "a1b36413-bdaf-44d0-b752-351f4747be93", "controller-0-oam", 4, "128.224.151.151", 23, false, 1, 3],
"addresses_12": ["2018-04-11 15:55:23.796705", "NULL", "NULL", 17, "f67a6c74-151c-4ff1-88c0-73b5aab7e72f", "controller-cinder-mgmt", 6, "fd01:1::8d49:c435:b42a:da39", 64, true, "NULL", 1],
"addresses_13": ["2018-04-11 15:32:43.727568", "2018-04-11 17:11:15.46512", "NULL", 8, "b8b5f623-6674-403e-aaf2-5a5bc19b3381", "controller-1-pxeboot", 4, "192.168.202.4", 24, false, 16, 2],
"addresses_14": ["2018-04-11 15:32:43.808005", "2018-04-11 17:36:11.389025", "NULL", 11, "69175db0-a076-4a35-b404-bbc70ad1dd1a", "controller-1-oam", 4, "128.224.151.153", 23, false, 10, 3],
"addresses_15": ["2018-04-11 15:32:43.489891", "2018-05-16 21:05:58.221018", "NULL", 2, "0416495f-3365-47e0-a170-8302d9e3f798", "controller-0-mgmt", 6, "fd01:1::3", 64, true, 9, 1],
"addresses_16": ["2018-04-11 15:32:43.519008", "2018-05-16 21:40:04.126776", "NULL", 3, "48cf3651-9481-4838-bd4e-1750e803aea1", "controller-1-mgmt", 6, "fd01:1::4", 64, true, 17, 1]
}

View File

@ -1,3 +0,0 @@
{
"clusters_0": ["2018-04-11 15:44:36.511721", "NULL", "NULL", 1, "6d7b7ce6-ae85-4fdb-bbde-6d87485cca23", "NULL", "ceph", "ceph_cluster", "NULL", 1]
}

View File

@ -1,9 +0,0 @@
{
"controller_fs_0": ["2018-04-11 15:32:44.637566", "2018-04-11 15:52:38.575025", "NULL", 1, "4783db43-a115-4dae-b0a4-fed50bd0cf9e", 1, "available", "backup", 50, "backup-lv", false],
"controller_fs_1": ["2018-04-11 15:32:44.648109", "2018-04-11 15:52:38.582984", "NULL", 2, "1ee5441a-4043-4e1d-a9af-82a9648311bb", 1, "available", "cgcs", 10, "cgcs-lv", true],
"controller_fs_2": ["2018-04-11 15:32:44.655808", "2018-04-11 15:52:38.590304", "NULL", 3, "a2de7f25-add1-4350-ad4b-0113432dfeeb", 1, "available", "database", 20, "pgsql-lv", true],
"controller_fs_3": ["2018-04-11 15:32:44.661658", "2018-04-11 15:52:38.597692", "NULL", 4, "502fcfb0-4bcf-491e-92ef-31c090015d27", 1, "available", "scratch", 8, "scratch-lv", false],
"controller_fs_4": ["2018-04-11 15:32:44.6679", "2018-04-11 15:52:38.604568", "NULL", 5, "fa7c1fdb-09ef-49fa-9d77-d1be4a565b0a", 1, "available", "img-conversions", 20, "img-conversions-lv", false],
"controller_fs_5": ["2018-04-11 15:32:44.673848", "2018-04-11 15:52:38.61143", "NULL", 6, "6bc6afad-06c2-4c3d-97e8-5bc4b4d44e94", 1, "available", "extension", 1, "extension-lv", true],
"controller_fs_6": ["2018-04-11 15:32:44.680109", "2018-04-11 15:52:38.61858", "NULL", 7, "9691abe5-6450-4fdb-8cad-c5fb9cf4da27", 1, "available", "patch-vault", 8, "patch-vault-lv", true]
}

View File

@ -1,3 +0,0 @@
{
"drbdconfig_0": ["2018-04-11 15:32:39.945607", "NULL", "NULL", 1, "0d474006-2fa0-4871-bb02-51f31879312b", 40, 1, 0.200000000000000011, 1]
}

View File

@ -1,18 +0,0 @@
{
"ethernet_interfaces_0": ["NULL", "NULL", "NULL", 1, "a4:bf:01:01:b6:ae", 1500, "NULL", "NULL"],
"ethernet_interfaces_1": ["NULL", "NULL", "NULL", 2, "a4:bf:01:01:b6:af", 1500, "NULL", "NULL"],
"ethernet_interfaces_2": ["NULL", "NULL", "NULL", 3, "3c:fd:fe:9f:6f:08", 1500, "NULL", "NULL"],
"ethernet_interfaces_3": ["NULL", "NULL", "NULL", 4, "3c:fd:fe:9f:6f:09", 1500, "NULL", "NULL"],
"ethernet_interfaces_4": ["NULL", "NULL", "NULL", 5, "3c:fd:fe:9f:6f:0a", 1500, "NULL", "NULL"],
"ethernet_interfaces_5": ["NULL", "NULL", "NULL", 6, "3c:fd:fe:9f:6f:0b", 1500, "NULL", "NULL"],
"ethernet_interfaces_6": ["NULL", "NULL", "NULL", 7, "90:e2:ba:b0:df:d0", 9216, "NULL", "NULL"],
"ethernet_interfaces_7": ["NULL", "NULL", "NULL", 8, "90:e2:ba:b0:df:d1", 1500, "NULL", "NULL"],
"ethernet_interfaces_8": ["NULL", "NULL", "NULL", 10, "a4:bf:01:01:66:ca", 1500, "NULL", "NULL"],
"ethernet_interfaces_9": ["NULL", "NULL", "NULL", 11, "a4:bf:01:01:66:cb", 1500, "NULL", "NULL"],
"ethernet_interfaces_10": ["NULL", "NULL", "NULL", 12, "3c:fd:fe:9f:74:c8", 1500, "NULL", "NULL"],
"ethernet_interfaces_11": ["NULL", "NULL", "NULL", 13, "3c:fd:fe:9f:74:c9", 1500, "NULL", "NULL"],
"ethernet_interfaces_12": ["NULL", "NULL", "NULL", 14, "3c:fd:fe:9f:74:ca", 1500, "NULL", "NULL"],
"ethernet_interfaces_13": ["NULL", "NULL", "NULL", 15, "3c:fd:fe:9f:74:cb", 1500, "NULL", "NULL"],
"ethernet_interfaces_14": ["NULL", "NULL", "NULL", 16, "90:e2:ba:b0:e9:f4", 9216, "NULL", "NULL"],
"ethernet_interfaces_15": ["NULL", "NULL", "NULL", 18, "90:e2:ba:b0:e9:f5", 1500, "NULL", "NULL"]
}

View File

@ -1,18 +0,0 @@
{
"ethernet_ports_0": ["NULL", "NULL", "NULL", 2, "a4:bf:01:01:b6:af", 1500, "NULL", "0", "NULL", "NULL", "NULL", "NULL"],
"ethernet_ports_1": ["NULL", "NULL", "NULL", 3, "3c:fd:fe:9f:6f:08", 1500, "NULL", "0", "NULL", "NULL", "NULL", "NULL"],
"ethernet_ports_2": ["NULL", "NULL", "NULL", 4, "3c:fd:fe:9f:6f:09", 1500, "NULL", "0", "NULL", "NULL", "NULL", "NULL"],
"ethernet_ports_3": ["NULL", "NULL", "NULL", 5, "3c:fd:fe:9f:6f:0a", 1500, "NULL", "0", "NULL", "NULL", "NULL", "NULL"],
"ethernet_ports_4": ["NULL", "NULL", "NULL", 6, "3c:fd:fe:9f:6f:0b", 1500, "NULL", "0", "NULL", "NULL", "NULL", "NULL"],
"ethernet_ports_5": ["NULL", "NULL", "NULL", 8, "90:e2:ba:b0:df:d1", 1500, "NULL", "0", "NULL", "NULL", "NULL", "NULL"],
"ethernet_ports_6": ["NULL", "NULL", "NULL", 10, "a4:bf:01:01:66:cb", 1500, "NULL", "0", "NULL", "NULL", "NULL", "NULL"],
"ethernet_ports_7": ["NULL", "NULL", "NULL", 11, "3c:fd:fe:9f:74:c8", 1500, "NULL", "0", "NULL", "NULL", "NULL", "NULL"],
"ethernet_ports_8": ["NULL", "NULL", "NULL", 12, "3c:fd:fe:9f:74:c9", 1500, "NULL", "0", "NULL", "NULL", "NULL", "NULL"],
"ethernet_ports_9": ["NULL", "NULL", "NULL", 13, "3c:fd:fe:9f:74:ca", 1500, "NULL", "0", "NULL", "NULL", "NULL", "NULL"],
"ethernet_ports_10": ["NULL", "NULL", "NULL", 14, "3c:fd:fe:9f:74:cb", 1500, "NULL", "0", "NULL", "NULL", "NULL", "NULL"],
"ethernet_ports_11": ["NULL", "NULL", "NULL", 16, "90:e2:ba:b0:e9:f5", 1500, "NULL", "0", "NULL", "NULL", "NULL", "NULL"],
"ethernet_ports_12": ["NULL", "NULL", "NULL", 9, "a4:bf:01:01:66:ca", 1500, 1000, "0", "NULL", "NULL", "NULL", "NULL"],
"ethernet_ports_13": ["NULL", "NULL", "NULL", 15, "90:e2:ba:b0:e9:f4", 1500, 10000, "0", "NULL", "NULL", "True", "NULL"],
"ethernet_ports_14": ["NULL", "NULL", "NULL", 1, "a4:bf:01:01:b6:ae", 1500, 1000, "0", "NULL", "NULL", "NULL", "NULL"],
"ethernet_ports_15": ["NULL", "NULL", "NULL", 7, "90:e2:ba:b0:df:d0", 1500, 10000, "0", "NULL", "NULL", "True", "NULL"]
}

View File

@ -1,92 +0,0 @@
{
"event_suppression_0": ["2018-04-11 15:44:32.411013", "NULL", "NULL", 1, "f2b22955-dc71-4ad3-aff8-d11dbab7c4dd", "200.007", "{""major"": "Host is degraded due to a ""major"" out-of-tolerance reading from the ""<sensorname>"" sensor", ""critical"": "Host is degraded due to a ""critical"" out-of-tolerance reading from the ""<sensorname>"" sensor", ""minor"": "Host is reporting a ""minor"" ...", "unsuppressed", false, "none"],
"event_suppression_1": ["2018-04-11 15:44:32.43499", "NULL", "NULL", 2, "6ced0ed1-fa46-4cbb-8339-ef5058918429", "400.003", "License key is not installed; a valid license key is required for operation.],
"event_suppression_2": ["2018-04-11 15:44:32.438485", "NULL", "NULL", 3, "595e1a35-d1ad-406d-941b-3bbd8b50d768", "700.005", "Instance <instance_name> owned by <tenant_name> is rebooting on host <host_name>", "unsuppressed", false, "warning"],
"event_suppression_3": ["2018-04-11 15:44:32.440863", "NULL", "NULL", 4, "a5c19884-9e6e-42c4-a3b9-fdd8d3d0431d", "800.101", "Storage Alarm Condition:],
"event_suppression_4": ["2018-04-11 15:44:32.4445", "NULL", "NULL", 5, "a3a22349-6ac3-414b-9e6c-e343024033b4", "900.002", "Obsolete patch in system.", "unsuppressed", false, "warning"],
"event_suppression_5": ["2018-04-11 15:44:32.447356", "NULL", "NULL", 6, "75885e4c-a0fb-4742-a507-0d0cedb8b99e", "100.101", "Platform CPU threshold exceeded; threshold x%, actual y% .],
"event_suppression_6": ["2018-04-11 15:44:32.450028", "NULL", "NULL", 7, "28c837af-094a-4302-85ea-ff54cedd7b00", "100.102", "VSwitch CPU threshold exceeded; threshold x%, actual y% .],
"event_suppression_7": ["2018-04-11 15:44:32.453621", "NULL", "NULL", 8, "951687b9-4596-44d8-8cea-3a82c0113c37", "100.103", "Memory threshold exceeded; threshold x%, actual y% .],
"event_suppression_8": ["2018-04-11 15:44:32.455968", "NULL", "NULL", 9, "ec1de68d-3e71-4270-ae93-e182c5cf9d8e", "100.104", "host=<hostname>.filesystem=<mount-dir>],
"event_suppression_9": ["2018-04-11 15:44:32.458326", "NULL", "NULL", 10, "23a19251-8614-48d9-8c22-4aa4f68fa207", "100.106", """OAM"" Port failed.", "unsuppressed", false, "warning"],
"event_suppression_10": ["2018-04-11 15:44:32.460868", "NULL", "NULL", 11, "be8315da-7cc5-4865-937d-01b464644265", "100.107", """OAM"" Interface degraded.],
"event_suppression_11": ["2018-04-11 15:44:32.464405", "NULL", "NULL", 12, "949cea6d-d780-408a-9fe9-adc17ebdc018", "100.108", """MGMT"" Port failed.", "unsuppressed", false, "warning"],
"event_suppression_12": ["2018-04-11 15:44:32.466828", "NULL", "NULL", 13, "1bfdd175-8059-49e9-ae99-53d503b37863", "100.109", """MGMT"" Interface degraded.],
"event_suppression_13": ["2018-04-11 15:44:32.46902", "NULL", "NULL", 14, "4b3d56ee-6057-472b-a068-14c9faa39b13", "100.110", """INFRA"" Port failed.", "unsuppressed", false, "warning"],
"event_suppression_14": ["2018-04-11 15:44:32.471247", "NULL", "NULL", 15, "21307216-8d9d-4cc8-b100-3136bd52ce93", "100.111", """INFRA"" Interface degraded.],
"event_suppression_15": ["2018-04-11 15:44:32.474824", "NULL", "NULL", 16, "6708ca12-58f6-4392-8ec9-e217a6834e42", "100.112", """DATA-VRS"" Port down.", "unsuppressed", false, "none"],
"event_suppression_16": ["2018-04-11 15:44:32.478837", "NULL", "NULL", 17, "bf2ab172-aa6a-45f1-ae2f-bb0408178626", "100.113", """DATA-VRS"" Interface degraded.],
"event_suppression_17": ["2018-04-11 15:44:32.484603", "NULL", "NULL", 19, "c98852d7-1f5e-4a2b-b326-2e8141ea0ebd", "100.115", "VSwitch Memory Usage, processor <processor> threshold exceeded; threshold x%, actual y% .", "unsuppressed", false, "none"],
"event_suppression_18": ["2018-04-11 15:44:32.487322", "NULL", "NULL", 20, "b5fa53ff-484a-4de5-9f98-36088edbcc95", "100.116", "Cinder LVM Thinpool Usage threshold exceeded; threshold x%, actual y% .", "unsuppressed", false, "none"],
"event_suppression_19": ["2018-04-11 15:44:32.490273", "NULL", "NULL", 21, "35984c2a-5d0e-46dc-be0b-53f0148dbfe9", "100.117", "Nova LVM Thinpool Usage threshold exceeded; threshold x%, actual y% .", "unsuppressed", false, "major"],
"event_suppression_20": ["2018-04-11 15:44:32.493255", "NULL", "NULL", 22, "2318fcdb-a324-4421-b5ca-43db8313b5da", "100.118", "Controller cannot establish connection with remote logging server.", "unsuppressed", false, "none"],
"event_suppression_21": ["2018-04-11 15:44:32.497279", "NULL", "NULL", 23, "2b625133-2dff-4647-9c62-04c815d418ce", "200.001", "<hostname> was administratively locked to take it out-of-service.", "unsuppressed", false, "warning"],
"event_suppression_22": ["2018-04-11 15:44:32.499831", "NULL", "NULL", 24, "cb9c1f90-3824-40c0-b906-786725b60cc0", "200.004", "<hostname> experienced a service-affecting failure.],
"event_suppression_23": ["2018-04-11 15:44:32.503633", "NULL", "NULL", 25, "4f79881c-7b9b-436b-9dd5-4ecb2b5eb5a9", "200.005", "Degrade:],
"event_suppression_24": ["2018-04-11 15:44:32.506405", "NULL", "NULL", 26, "e055964e-4289-4d2d-9541-132a58995028", "200.006", "Main Process Monitor Daemon Failure (major):],
"event_suppression_25": ["2018-04-11 15:44:32.509942", "NULL", "NULL", 27, "ed4210e2-b59a-4758-b8e1-6c8cba441b3b", "200.009", "Degrade:],
"event_suppression_26": ["2018-04-11 15:44:32.513938", "NULL", "NULL", 28, "467ccc81-b65f-4bf2-b72e-33f520998353", "200.010", "<hostname> access to board management module has failed.", "unsuppressed", false, "none"],
"event_suppression_27": ["2018-04-11 15:44:32.517946", "NULL", "NULL", 29, "5a89ad11-5805-4773-ab42-33f902f74e8f", "200.011", "<hostname> experienced a configuration failure during initialization. Host is being re-configured by Reboot.", "unsuppressed", false, "warning"],
"event_suppression_28": ["2018-04-11 15:44:32.520274", "NULL", "NULL", 30, "a0947c3b-3ec7-4328-887d-fd21b4252c61", "200.012", "<hostname> controller function has in-service failure while compute services remain healthy.", "unsuppressed", false, "warning"],
"event_suppression_29": ["2018-04-11 15:44:32.522833", "NULL", "NULL", 31, "98e0557b-a3d8-4205-b1af-20c46620cd0e", "200.013", "<hostname> compute service of the only available controller is not poperational. Auto-recovery is disabled. Deggrading host instead.", "unsuppressed", false, "warning"],
"event_suppression_30": ["2018-04-11 15:44:32.526752", "NULL", "NULL", 32, "3ac593b7-ea29-4579-b394-371fd3599c5f", "200.014", "The Hardware Monitor was unable to load, configure and monitor one or more hardware sensors.", "unsuppressed", false, "none"],
"event_suppression_31": ["2018-04-11 15:44:32.529867", "NULL", "NULL", 33, "8038cb01-a27a-4181-8eba-7d80a7ec047d", "200.015", "Unable to read one or more sensor groups from this host""s board management controller", "unsuppressed", false, "none"],
"event_suppression_32": ["2018-04-11 15:44:32.532185", "NULL", "NULL", 34, "5bfe121b-70ea-4af8-9aa6-7e05744418e8", "210.001", "System Backup in progress.", "unsuppressed", false, "warning"],
"event_suppression_33": ["2018-04-11 15:44:32.535752", "NULL", "NULL", 35, "77fb2910-1005-4ee9-aa46-bc9432ae9da6", "250.001", "<hostname> Configuration is out-of-date.", "unsuppressed", false, "warning"],
"event_suppression_34": ["2018-04-11 15:44:32.538161", "NULL", "NULL", 36, "dc15da60-1588-44eb-84f0-3f1c35a7ad34", "250.002", "<hostname> Ceph cache tiering configuration is out-of-date.", "unsuppressed", false, "warning"],
"event_suppression_35": ["2018-04-11 15:44:32.541135", "NULL", "NULL", 37, "bf2179f5-92a3-40a7-b75a-a28be7c4055f", "270.001", "Host <host_name> compute services failure[, reason = <reason_text>]", "unsuppressed", false, "warning"],
"event_suppression_36": ["2018-04-11 15:44:32.544931", "NULL", "NULL", 38, "d174dba0-f3a5-4c49-8647-a53164a2ff28", "280.001", "<subcloud> is offline", "unsuppressed", false, "warning"],
"event_suppression_37": ["2018-04-11 15:44:32.54996", "NULL", "NULL", 40, "ad5757c0-d683-42b7-b0e1-670c049f733d", "300.001", """Data"" Port failed.", "unsuppressed", false, "warning"],
"event_suppression_38": ["2018-04-11 15:44:32.552888", "NULL", "NULL", 41, "78b518e5-9853-4261-bbbe-501ad7824441", "300.002", """Data"" Interface degraded.],
"event_suppression_39": ["2018-04-11 15:44:32.555243", "NULL", "NULL", 42, "a45e432a-ea17-4696-8d25-c43ef759630c", "300.003", "Networking Agent not responding.", "unsuppressed", false, "warning"],
"event_suppression_40": ["2018-04-11 15:44:32.55758", "NULL", "NULL", 43, "8289c192-f64c-4615-8332-1b662cb02e58", "300.004", "No enabled compute host with connectivity to provider network.", "unsuppressed", false, "warning"],
"event_suppression_41": ["2018-04-11 15:44:32.559837", "NULL", "NULL", 44, "44de4bbc-584a-458d-b26c-28432351d223", "300.005", "Communication failure detected over provider network x% for ranges y% on host z%.],
"event_suppression_42": ["2018-04-11 15:44:32.562213", "NULL", "NULL", 45, "11350dc7-bd5b-4a9c-8484-16dfbe080435", "300.010", "ML2 Driver Agent non-reachable],
"event_suppression_43": ["2018-04-11 15:44:32.564635", "NULL", "NULL", 46, "3f066c6d-11a3-428a-8504-9102be3814a3", "300.012", "Openflow Controller connection failed.", "unsuppressed", false, "warning"],
"event_suppression_44": ["2018-04-11 15:44:32.567144", "NULL", "NULL", 47, "6b7d9627-9806-405d-b6fb-a766eaebf5e8", "300.013", "No active Openflow controller connections found for this network.],
"event_suppression_45": ["2018-04-11 15:44:32.569395", "NULL", "NULL", 48, "d0d3820e-fb13-4cce-97f6-6663199165a9", "300.014", "OVSDB Manager connection failed.", "unsuppressed", false, "warning"],
"event_suppression_46": ["2018-04-11 15:44:32.571928", "NULL", "NULL", 49, "a9b58550-83a2-4bbc-b9ea-88b77773bc10", "300.015", "No active OVSDB connections found.", "unsuppressed", false, "warning"],
"event_suppression_47": ["2018-04-11 15:44:32.574799", "NULL", "NULL", 50, "8e2e2ab4-2b57-4dce-b846-7882ed7e7f53", "300.016", "Dynamic routing agent x% lost connectivity to peer y%.", "unsuppressed", false, "warning"],
"event_suppression_48": ["2018-04-11 15:44:32.577197", "NULL", "NULL", 51, "4cb8ec94-79e8-41d9-b187-8105842ff172", "400.001", "Service group failure; <list of affected services>.],
"event_suppression_49": ["2018-04-11 15:44:32.579505", "NULL", "NULL", 52, "68462add-5e85-42b4-a579-78564370f08d", "400.002", "Service group loss of redundancy; expected <num> standby member<s> but only <num> standby member<s> available.],
"event_suppression_50": ["2018-04-11 15:44:32.581805", "NULL", "NULL", 53, "92c62f6b-bcef-48f9-a99e-aeb5f20c1fc3", "400.005", "Communication failure detected with peer over port <linux-ifname>.],
"event_suppression_51": ["2018-04-11 15:44:32.584203", "NULL", "NULL", 54, "545cf28b-9f8e-418f-a0a1-96f12ba1373b", "500.100", "TPM initialization failed on host.", "unsuppressed", false, "none"],
"event_suppression_52": ["2018-04-11 15:44:32.589051", "NULL", "NULL", 56, "f7d6dbe7-760c-454a-a572-4997dd787c68", "700.001", "Instance <instance_name> owned by <tenant_name> has failed on host <host_name>],
"event_suppression_53": ["2018-04-11 15:44:32.591532", "NULL", "NULL", 57, "10b8629e-4021-4032-9c3a-6c3ea302d2b5", "700.002", "Instance <instance_name> owned by <tenant_name> is paused on host <host_name>", "unsuppressed", false, "warning"],
"event_suppression_54": ["2018-04-11 15:44:32.59367", "NULL", "NULL", 58, "7eb9315d-6b06-4e1c-a858-87a9cd6d9931", "700.003", "Instance <instance_name> owned by <tenant_name> is suspended on host <host_name>", "unsuppressed", false, "warning"],
"event_suppression_55": ["2018-04-11 15:44:32.595932", "NULL", "NULL", 59, "35f17ae4-f605-4a33-b979-2df4d01b85df", "700.004", "Instance <instance_name> owned by <tenant_name> is stopped on host <host_name>", "unsuppressed", false, "warning"],
"event_suppression_56": ["2018-04-11 15:44:32.598225", "NULL", "NULL", 60, "d1cdb74c-aff3-4d7a-864e-3515e6d8737c", "700.006", "Instance <instance_name> owned by <tenant_name> is rebuilding on host <host_name>", "unsuppressed", false, "warning"],
"event_suppression_57": ["2018-04-11 15:44:32.600544", "NULL", "NULL", 61, "af0de7e0-a45d-40de-a8d5-521f28d6d4b7", "700.007", "Instance <instance_name> owned by <tenant_name> is evacuating from host <host_name>", "unsuppressed", false, "warning"],
"event_suppression_58": ["2018-04-11 15:44:32.60296", "NULL", "NULL", 62, "2da9b4ed-a6b4-433d-a25f-85d8d26251f7", "700.008", "Instance <instance_name> owned by <tenant_name> is live migrating from host <host_name>", "unsuppressed", false, "warning"],
"event_suppression_59": ["2018-04-11 15:44:32.608135", "NULL", "NULL", 63, "9585178e-d799-49d5-9bef-9e443ba7d10a", "700.009", "Instance <instance_name> owned by <tenant_name> is cold migrating from host <host_name>", "unsuppressed", false, "warning"],
"event_suppression_60": ["2018-04-11 15:44:32.610512", "NULL", "NULL", 64, "a14dfae8-711d-47f0-b898-8fef80876682", "700.010", "Instance <instance_name> owned by <tenant_name> has been cold-migrated to host <host_name> waiting for confirmation", "unsuppressed", false, "warning"],
"event_suppression_61": ["2018-04-11 15:44:32.613231", "NULL", "NULL", 65, "b4ec1dd8-9ec4-41f6-a711-1a64ba406934", "700.011", "Instance <instance_name> owned by <tenant_name> is reverting cold migrate to host <host_name>", "unsuppressed", false, "warning"],
"event_suppression_62": ["2018-04-11 15:44:32.615925", "NULL", "NULL", 66, "fcf60ab4-7ab5-4909-9b07-5c5b89cd256d", "700.012", "Instance <instance_name> owned by <tenant_name> is resizing on host <host_name>", "unsuppressed", false, "warning"],
"event_suppression_63": ["2018-04-11 15:44:32.618689", "NULL", "NULL", 67, "2345b587-6754-4c32-a45d-1fb0cdb77d0f", "700.013", "Instance <instance_name> owned by <tenant_name> has been resized on host <host_name> waiting for confirmation", "unsuppressed", false, "warning"],
"event_suppression_64": ["2018-04-11 15:44:32.620872", "NULL", "NULL", 68, "cb16826d-d8bf-42c6-91ef-271a2b6d1e69", "700.014", "Instance <instance_name> owned by <tenant_name> is reverting resize on host <host_name>", "unsuppressed", false, "warning"],
"event_suppression_65": ["2018-04-11 15:44:32.623352", "NULL", "NULL", 69, "42b14fbb-e0b5-4cf8-bf94-1d17b93377d5", "700.015", "Guest Heartbeat not established for instance <instance_name> owned by <tenant_name> on host <host_name>", "unsuppressed", false, "warning"],
"event_suppression_66": ["2018-04-11 15:44:32.625556", "NULL", "NULL", 70, "de1409fa-3450-4a68-b387-083cde1ebd7c", "700.016", "Multi-Node Recovery Mode", "unsuppressed", false, "warning"],
"event_suppression_67": ["2018-04-11 15:44:32.627937", "NULL", "NULL", 71, "9ab7798c-55d3-4128-97fd-4a4dc0446532", "700.017", "Server group <server_group_name> <policy> policy was not satisfied", "unsuppressed", false, "none"],
"event_suppression_68": ["2018-04-11 15:44:32.630159", "NULL", "NULL", 72, "4dd24d8f-2e43-47b4-913c-d4b6c681b3ac", "800.001", "Storage Alarm Condition:],
"event_suppression_69": ["2018-04-11 15:44:32.63256", "NULL", "NULL", 73, "3bb4ff79-2bd4-4905-a681-13ba4874370c", "800.002", "[""Image storage media is full: There is not enough disk space on the image storage media."", ""Instance <instance name> snapshot failed: There is not enough disk space on the image storage media."", "Supplied <attrs> (<supplied>) and <attrs> generated f ...", "unsuppressed", false, "none"],
"event_suppression_70": ["2018-04-11 15:44:32.634666", "NULL", "NULL", 74, "2ede62a9-e30d-43b0-8165-d7e3fa8e1420", "800.003", "Storage Alarm Condition:],
"event_suppression_71": ["2018-04-11 15:44:32.586818", "2018-04-16 16:40:39.222585", "NULL", 55, "4405c9dc-ade2-4295-a32a-e09dab2231b8", "500.101", "Developer patch certificate enabled.", "suppressed", false, "none"],
"event_suppression_72": ["2018-04-11 15:44:32.547374", "2018-04-16 17:10:44.207576", "NULL", 39, "aa213e29-1452-48d3-9f30-6342562511d8", "280.002", "<subcloud> <resource> sync_status is out-of-sync", "suppressed", false, "warning"],
"event_suppression_73": ["2018-04-11 15:44:32.636707", "NULL", "NULL", 75, "9569204a-a0b6-44c3-b7c3-aab0543f03a1", "800.010", "Potential data loss. No available OSDs in storage replication group.", "unsuppressed", false, "warning"],
"event_suppression_74": ["2018-04-11 15:44:32.638867", "NULL", "NULL", 76, "db6bd5d8-211b-4c26-a06e-06009ae06a1d", "800.011", "Loss of replication in peergroup.", "unsuppressed", false, "warning"],
"event_suppression_75": ["2018-04-11 15:44:32.640974", "NULL", "NULL", 77, "55df89ce-0cea-4d07-9c43-0b0eed5384fd", "800.100", "Storage Alarm Condition:],
"event_suppression_76": ["2018-04-11 15:44:32.643207", "NULL", "NULL", 78, "f71fc83f-545c-4604-b356-edd0a7f2e41d", "800.102", "Storage Alarm Condition:],
"event_suppression_77": ["2018-04-11 15:44:32.645502", "NULL", "NULL", 79, "c1a0da02-d55b-44b6-928c-aeabce68cdb6", "800.103", "Storage Alarm Condition:],
"event_suppression_78": ["2018-04-11 15:44:32.647728", "NULL", "NULL", 80, "85d81e46-269d-425f-8d0f-1bd5b6809dec", "800.104", "Storage Alarm Condition:],
"event_suppression_79": ["2018-04-11 15:44:32.650224", "NULL", "NULL", 81, "a1180fbf-275d-4cb6-8bd8-e11f5e22c922", "900.001", "Patching operation in progress.", "unsuppressed", false, "warning"],
"event_suppression_80": ["2018-04-11 15:44:32.652566", "NULL", "NULL", 82, "5ef868a6-c79d-4893-844b-0dfefee8aeff", "900.003", "Patch host install failure.", "unsuppressed", false, "warning"],
"event_suppression_81": ["2018-04-11 15:44:32.654859", "NULL", "NULL", 83, "19910b38-c707-4e7d-94f1-209ab7999b05", "900.004", "Host version mismatch.", "unsuppressed", false, "warning"],
"event_suppression_82": ["2018-04-11 15:44:32.657067", "NULL", "NULL", 84, "c0bd82ee-6e19-4d92-8ead-b3582d3669db", "900.005", "System Upgrade in progress.", "unsuppressed", false, "warning"],
"event_suppression_83": ["2018-04-11 15:44:32.659281", "NULL", "NULL", 85, "c330581f-fe1a-42c6-9dce-e374069bf943", "900.101", "Software patch auto-apply inprogress", "unsuppressed", false, "warning"],
"event_suppression_84": ["2018-04-11 15:44:32.66156", "NULL", "NULL", 86, "381bd4ac-83a8-45fd-9582-7071b52830b9", "900.102", "Software patch auto-apply aborting", "unsuppressed", false, "warning"],
"event_suppression_85": ["2018-04-11 15:44:32.663658", "NULL", "NULL", 87, "fef20dc9-2beb-4e80-ab3c-a56754c9e1de", "900.103", "Software patch auto-apply failed", "unsuppressed", false, "warning"],
"event_suppression_86": ["2018-04-11 15:44:32.665871", "NULL", "NULL", 88, "057c75e0-2503-44cc-9280-2b83ac99cb10", "900.201", "Software upgrade auto-apply inprogress", "unsuppressed", false, "warning"],
"event_suppression_87": ["2018-04-11 15:44:32.667915", "NULL", "NULL", 89, "34bc6a7e-f60b-4ad3-ab0d-646b983e4bdd", "900.202", "Software upgrade auto-apply aborting", "unsuppressed", false, "warning"],
"event_suppression_88": ["2018-04-11 15:44:32.670038", "NULL", "NULL", 90, "bf9c7cea-9f98-4350-ad99-714e18a15b57", "900.203", "Software upgrade auto-apply failed", "unsuppressed", false, "warning"],
"event_suppression_89": ["2018-04-11 15:44:32.48162", "2018-04-11 20:51:50.520149", "NULL", 18, "f43c790c-ec04-4ecd-899b-f0544181691d", "100.114", "{""major"": ""NTP configuration does not contain any valid or reachable NTP servers."", ""minor"": ""NTP address <IP address> is not a valid or a reachable NTP server.""}", "suppressed", false, "none"]
}

View File

@ -1,4 +0,0 @@
{
"host_upgrade_0": ["2018-04-11 15:32:44.768861", "NULL", "NULL", 1, "2e6b9736-9e00-4804-913f-4b30346709de", 1, 1, 1],
"host_upgrade_1": ["2018-04-11 16:58:20.061424", "NULL", "NULL", 2, "4eb96def-f831-40f9-97c2-b741a620c48d", 2, 1, 1]
}

View File

@ -1,3 +0,0 @@
{
"i_alarm_0": ["2018-04-16 16:33:33.569314", "NULL", "NULL", 115, "a19c245b-44b9-41de-9142-96d66003bb55", "500.101", "set", "host", "host=controller", "2018-04-16 16:33:33.568539", "critical", "Developer patch certificate is enabled", "security-service-or-mechanism-violation", "unspecified-reason", "Reinstall system to disable certificate and remove untrusted patches", false, false, false, false]
}

View File

@ -1,3 +0,0 @@
{
"i_dns_0": ["2018-04-11 15:32:39.931146", "2018-04-11 15:52:42.629276", "NULL", 1, "a631812f-baf1-48e4-8328-1cf4a8418572", "8.8.8.8,8.8.4.4", 1]
}

View File

@ -1,4 +0,0 @@
{
"i_host_0": ["2018-04-11 16:58:20.055114", "2018-05-28 17:49:08.775529", "NULL", false, "standard", "03152ed9-cf5f-4849-a0f3-f2e1d553371e", 2, "controller-1", "90:e2:ba:b0:e9:f4", "fd01:1::4", "128.224.64.214", "NULL", "bmc", "root", "controller", "NULL", "{"locn": ""}", "unlocked", "enabled", "available", "none", "", 1022811, "{"pers_subtype": "ceph-backing"}", "NULL", "3fa7d012-36d4-4197-bc5d-7d2cfa0182f7", "3fa7d012-36d4-4197-bc5d-7d2cfa0182f7", 1, "provisioned", "unlock", "services-enabled", "controller", "disabled", "online", "sda", "sda", "graphical", "", "NULL", false, "NULL", "reinstalled", "NULL", "completed+", "NULL", "iqn.1994-05.com.redhat:79e9f87b1c67", "false"],
"i_host_1": ["2018-04-11 15:32:44.764124", "2018-05-28 17:49:08.95438", "NULL", false, "standard", "fa1e22a0-61e2-4bc9-8d3f-5fc5d552235a", 1, "controller-0", "90:e2:ba:b0:df:d0", "fd01:1::3", "128.224.64.213", "NULL", "bmc", "root", "controller", "NULL", "{"locn": ""}", "unlocked", "enabled", "available", "none", "", 1024866, "{"pers_subtype": "ceph-backing"}", "NULL", "3fa7d012-36d4-4197-bc5d-7d2cfa0182f7", "3fa7d012-36d4-4197-bc5d-7d2cfa0182f7", 1, "provisioned", "unlock", "services-enabled", "controller", "disabled", "online", "/dev/disk/by-path/pci-0000:00:1f.2-ata-1.0", "/dev/disk/by-path/pci-0000:00:1f.2-ata-1.0", "text", "tty0", "NULL", false, "NULL", "reinstalled", "NULL", "completed+", "NULL", "iqn.1994-05.com.redhat:298bbe50fd7", "false"]
}

View File

@ -1,90 +0,0 @@
{
"i_icpu_0": ["2018-04-11 15:33:39.531912", "NULL", "NULL", 1, "c7b392bf-d088-48aa-8279-4631bb54523d", 0, 0, 0, "6", "Intel(R) Xeon(R) CPU E5-2699 v4 @ 2.20GHz", "Platform", "{}", 1, 1],
"i_icpu_1": ["2018-04-11 15:33:39.539085", "NULL", "NULL", 2, "162d56fe-1a60-45b1-b813-c53fd44ccffe", 1, 1, 0, "6", "Intel(R) Xeon(R) CPU E5-2699 v4 @ 2.20GHz", "Platform", "{}", 1, 1],
"i_icpu_2": ["2018-04-11 15:33:39.545597", "NULL", "NULL", 3, "cb821617-624b-42f4-b5cc-095c7847b197", 2, 2, 0, "6", "Intel(R) Xeon(R) CPU E5-2699 v4 @ 2.20GHz", "Platform", "{}", 1, 1],
"i_icpu_3": ["2018-04-11 15:33:39.552015", "NULL", "NULL", 4, "9db101f2-8cf7-48e4-93a6-70d572591189", 3, 3, 0, "6", "Intel(R) Xeon(R) CPU E5-2699 v4 @ 2.20GHz", "Platform", "{}", 1, 1],
"i_icpu_4": ["2018-04-11 15:33:39.558593", "NULL", "NULL", 5, "66e60ff5-5ad4-418c-be75-7f9e75d15560", 4, 4, 0, "6", "Intel(R) Xeon(R) CPU E5-2699 v4 @ 2.20GHz", "Platform", "{}", 1, 1],
"i_icpu_5": ["2018-04-11 15:33:39.566787", "NULL", "NULL", 6, "5f5b7ff1-6b3a-4ceb-b8d0-8601c936b5c3", 5, 5, 0, "6", "Intel(R) Xeon(R) CPU E5-2699 v4 @ 2.20GHz", "Platform", "{}", 1, 1],
"i_icpu_6": ["2018-04-11 15:33:39.573192", "NULL", "NULL", 7, "8b022229-e9fc-4cd0-a3d1-fbaf40a1db7a", 6, 8, 0, "6", "Intel(R) Xeon(R) CPU E5-2699 v4 @ 2.20GHz", "Platform", "{}", 1, 1],
"i_icpu_7": ["2018-04-11 15:33:39.579678", "NULL", "NULL", 8, "bc357378-e1ee-4a12-bb63-1ca3288e2507", 7, 9, 0, "6", "Intel(R) Xeon(R) CPU E5-2699 v4 @ 2.20GHz", "Platform", "{}", 1, 1],
"i_icpu_8": ["2018-04-11 15:33:39.586176", "NULL", "NULL", 9, "b9589e9e-f87c-4647-b134-9f5d23d05c13", 8, 10, 0, "6", "Intel(R) Xeon(R) CPU E5-2699 v4 @ 2.20GHz", "Platform", "{}", 1, 1],
"i_icpu_9": ["2018-04-11 15:33:39.592604", "NULL", "NULL", 10, "72c7b44a-68e2-40ed-98ce-218c7d80759f", 9, 11, 0, "6", "Intel(R) Xeon(R) CPU E5-2699 v4 @ 2.20GHz", "Platform", "{}", 1, 1],
"i_icpu_10": ["2018-04-11 15:33:39.599119", "NULL", "NULL", 11, "75e1f98f-8411-46ce-bb8c-e2234f990ffb", 10, 12, 0, "6", "Intel(R) Xeon(R) CPU E5-2699 v4 @ 2.20GHz", "Platform", "{}", 1, 1],
"i_icpu_11": ["2018-04-11 15:33:39.605694", "NULL", "NULL", 12, "fd5c5d04-084f-4758-8fae-9756e8ffdb65", 11, 16, 0, "6", "Intel(R) Xeon(R) CPU E5-2699 v4 @ 2.20GHz", "Platform", "{}", 1, 1],
"i_icpu_12": ["2018-04-11 15:33:39.613359", "NULL", "NULL", 13, "a45b3a61-98ea-4baf-a7ff-b00e68f886b8", 12, 17, 0, "6", "Intel(R) Xeon(R) CPU E5-2699 v4 @ 2.20GHz", "Platform", "{}", 1, 1],
"i_icpu_13": ["2018-04-11 15:33:39.619629", "NULL", "NULL", 14, "d5536faa-8506-4efe-9e3b-7c783f0ae575", 13, 18, 0, "6", "Intel(R) Xeon(R) CPU E5-2699 v4 @ 2.20GHz", "Platform", "{}", 1, 1],
"i_icpu_14": ["2018-04-11 15:33:39.626155", "NULL", "NULL", 15, "78fb6954-47cc-48e3-ae81-34d330b8d807", 14, 19, 0, "6", "Intel(R) Xeon(R) CPU E5-2699 v4 @ 2.20GHz", "Platform", "{}", 1, 1],
"i_icpu_15": ["2018-04-11 15:33:39.634153", "NULL", "NULL", 16, "fd48f6c0-cf1a-4a4e-b0db-4e3b6b47434b", 15, 20, 0, "6", "Intel(R) Xeon(R) CPU E5-2699 v4 @ 2.20GHz", "Platform", "{}", 1, 1],
"i_icpu_16": ["2018-04-11 15:33:39.640528", "NULL", "NULL", 17, "3111895a-42b0-44f4-9e0d-65324b734c7b", 16, 21, 0, "6", "Intel(R) Xeon(R) CPU E5-2699 v4 @ 2.20GHz", "Platform", "{}", 1, 1],
"i_icpu_17": ["2018-04-11 15:33:39.647087", "NULL", "NULL", 18, "04441b8e-a296-480b-87af-aac24a100d3a", 17, 24, 0, "6", "Intel(R) Xeon(R) CPU E5-2699 v4 @ 2.20GHz", "Platform", "{}", 1, 1],
"i_icpu_18": ["2018-04-11 15:33:39.653552", "NULL", "NULL", 19, "50731c44-5af7-431d-98e0-c5e2322d99b6", 18, 25, 0, "6", "Intel(R) Xeon(R) CPU E5-2699 v4 @ 2.20GHz", "Platform", "{}", 1, 1],
"i_icpu_19": ["2018-04-11 15:33:39.660019", "NULL", "NULL", 20, "193905a9-5f28-4483-b4d0-fcc42a5896a2", 19, 26, 0, "6", "Intel(R) Xeon(R) CPU E5-2699 v4 @ 2.20GHz", "Platform", "{}", 1, 1],
"i_icpu_20": ["2018-04-11 15:33:39.666649", "NULL", "NULL", 21, "93e25779-7083-4377-8dcd-2a32d98429ff", 20, 27, 0, "6", "Intel(R) Xeon(R) CPU E5-2699 v4 @ 2.20GHz", "Platform", "{}", 1, 1],
"i_icpu_21": ["2018-04-11 15:33:39.673023", "NULL", "NULL", 22, "31b5f3ad-db36-4943-9295-0ab061807ebe", 21, 28, 0, "6", "Intel(R) Xeon(R) CPU E5-2699 v4 @ 2.20GHz", "Platform", "{}", 1, 1],
"i_icpu_22": ["2018-04-11 15:33:39.679968", "NULL", "NULL", 23, "1eb522e1-0917-4cef-897d-356fa473f0a5", 22, 0, 0, "6", "Intel(R) Xeon(R) CPU E5-2699 v4 @ 2.20GHz", "Platform", "{}", 1, 2],
"i_icpu_23": ["2018-04-11 15:33:39.690245", "NULL", "NULL", 24, "e522822f-74a5-4f84-8989-dce2ceedda8d", 23, 1, 0, "6", "Intel(R) Xeon(R) CPU E5-2699 v4 @ 2.20GHz", "Platform", "{}", 1, 2],
"i_icpu_24": ["2018-04-11 15:33:39.700456", "NULL", "NULL", 25, "1c6dd77e-14b1-4d36-ab7e-1fcf6172145d", 24, 2, 0, "6", "Intel(R) Xeon(R) CPU E5-2699 v4 @ 2.20GHz", "Platform", "{}", 1, 2],
"i_icpu_25": ["2018-04-11 15:33:39.707215", "NULL", "NULL", 26, "ff043f01-9183-4a4c-8d9a-ad3f00ec33c7", 25, 3, 0, "6", "Intel(R) Xeon(R) CPU E5-2699 v4 @ 2.20GHz", "Platform", "{}", 1, 2],
"i_icpu_26": ["2018-04-11 15:33:39.713829", "NULL", "NULL", 27, "65bddb09-a137-4a1b-82b8-6aa0c84e2e7d", 26, 4, 0, "6", "Intel(R) Xeon(R) CPU E5-2699 v4 @ 2.20GHz", "Platform", "{}", 1, 2],
"i_icpu_27": ["2018-04-11 15:33:39.720535", "NULL", "NULL", 28, "aa26489b-d7ad-4d4b-805d-45d83160b2d0", 27, 5, 0, "6", "Intel(R) Xeon(R) CPU E5-2699 v4 @ 2.20GHz", "Platform", "{}", 1, 2],
"i_icpu_28": ["2018-04-11 15:33:39.727136", "NULL", "NULL", 29, "7b81c47c-7013-424a-84e7-6483035ac967", 28, 8, 0, "6", "Intel(R) Xeon(R) CPU E5-2699 v4 @ 2.20GHz", "Platform", "{}", 1, 2],
"i_icpu_29": ["2018-04-11 15:33:39.733642", "NULL", "NULL", 30, "55550dc5-25b3-4e61-93f4-dee3c102b6b6", 29, 9, 0, "6", "Intel(R) Xeon(R) CPU E5-2699 v4 @ 2.20GHz", "Platform", "{}", 1, 2],
"i_icpu_30": ["2018-04-11 15:33:39.740459", "NULL", "NULL", 31, "1075b561-5751-400c-9f21-69ea92b86998", 30, 10, 0, "6", "Intel(R) Xeon(R) CPU E5-2699 v4 @ 2.20GHz", "Platform", "{}", 1, 2],
"i_icpu_31": ["2018-04-11 15:33:39.746735", "NULL", "NULL", 32, "a286e98c-be38-4bf1-9a8c-19adbf2fc204", 31, 11, 0, "6", "Intel(R) Xeon(R) CPU E5-2699 v4 @ 2.20GHz", "Platform", "{}", 1, 2],
"i_icpu_32": ["2018-04-11 15:33:39.753171", "NULL", "NULL", 33, "9205bba1-71d8-4dda-8cb3-865dfa5b39ac", 32, 12, 0, "6", "Intel(R) Xeon(R) CPU E5-2699 v4 @ 2.20GHz", "Platform", "{}", 1, 2],
"i_icpu_33": ["2018-04-11 15:33:39.75973", "NULL", "NULL", 34, "a3edaa74-dbed-47c1-b692-ba91428eff87", 33, 16, 0, "6", "Intel(R) Xeon(R) CPU E5-2699 v4 @ 2.20GHz", "Platform", "{}", 1, 2],
"i_icpu_34": ["2018-04-11 15:33:39.767622", "NULL", "NULL", 35, "04035b20-8ab9-4bc5-8fcd-05ce887a1f95", 34, 17, 0, "6", "Intel(R) Xeon(R) CPU E5-2699 v4 @ 2.20GHz", "Platform", "{}", 1, 2],
"i_icpu_35": ["2018-04-11 15:33:39.774076", "NULL", "NULL", 36, "a48d3689-3517-4784-a5b5-81923d62f5bb", 35, 18, 0, "6", "Intel(R) Xeon(R) CPU E5-2699 v4 @ 2.20GHz", "Platform", "{}", 1, 2],
"i_icpu_36": ["2018-04-11 15:33:39.780565", "NULL", "NULL", 37, "bc1d4f26-d10c-4dd6-9ce9-2658e75f0226", 36, 19, 0, "6", "Intel(R) Xeon(R) CPU E5-2699 v4 @ 2.20GHz", "Platform", "{}", 1, 2],
"i_icpu_37": ["2018-04-11 15:33:39.787305", "NULL", "NULL", 38, "fab1ce15-39fd-4530-af50-cc3c194c337b", 37, 20, 0, "6", "Intel(R) Xeon(R) CPU E5-2699 v4 @ 2.20GHz", "Platform", "{}", 1, 2],
"i_icpu_38": ["2018-04-11 15:33:39.793701", "NULL", "NULL", 39, "496b4b80-c99c-4795-b571-0c1d866de751", 38, 21, 0, "6", "Intel(R) Xeon(R) CPU E5-2699 v4 @ 2.20GHz", "Platform", "{}", 1, 2],
"i_icpu_39": ["2018-04-11 15:33:39.8002", "NULL", "NULL", 40, "f3465d7c-181a-47c3-8502-79b6b195060b", 39, 24, 0, "6", "Intel(R) Xeon(R) CPU E5-2699 v4 @ 2.20GHz", "Platform", "{}", 1, 2],
"i_icpu_40": ["2018-04-11 15:33:39.806701", "NULL", "NULL", 41, "56a81b34-8b3d-44da-9bdf-fde0032cec49", 40, 25, 0, "6", "Intel(R) Xeon(R) CPU E5-2699 v4 @ 2.20GHz", "Platform", "{}", 1, 2],
"i_icpu_41": ["2018-04-11 15:33:39.813174", "NULL", "NULL", 42, "5f346a35-d043-4dcc-96d5-5d23189510c9", 41, 26, 0, "6", "Intel(R) Xeon(R) CPU E5-2699 v4 @ 2.20GHz", "Platform", "{}", 1, 2],
"i_icpu_42": ["2018-04-11 15:33:39.819849", "NULL", "NULL", 43, "d34d6478-3043-48aa-ab7f-6afd66e11831", 42, 27, 0, "6", "Intel(R) Xeon(R) CPU E5-2699 v4 @ 2.20GHz", "Platform", "{}", 1, 2],
"i_icpu_43": ["2018-04-11 15:33:39.827817", "NULL", "NULL", 44, "ae690294-10ff-4f62-a16e-d0a1d9caba73", 43, 28, 0, "6", "Intel(R) Xeon(R) CPU E5-2699 v4 @ 2.20GHz", "Platform", "{}", 1, 2],
"i_icpu_44": ["2018-04-11 17:11:16.301315", "NULL", "NULL", 45, "9a168328-064f-4934-bb0a-11a99f3c2574", 0, 0, 0, "6", "Intel(R) Xeon(R) CPU E5-2699 v4 @ 2.20GHz", "Platform", "{}", 2, 3],
"i_icpu_45": ["2018-04-11 17:11:16.311008", "NULL", "NULL", 46, "cd5d71d5-2031-4aef-b53f-07d6163a2240", 1, 1, 0, "6", "Intel(R) Xeon(R) CPU E5-2699 v4 @ 2.20GHz", "Platform", "{}", 2, 3],
"i_icpu_46": ["2018-04-11 17:11:16.31912", "NULL", "NULL", 47, "a10e6fb9-dfc1-403b-b44f-6f3908436a03", 2, 2, 0, "6", "Intel(R) Xeon(R) CPU E5-2699 v4 @ 2.20GHz", "Platform", "{}", 2, 3],
"i_icpu_47": ["2018-04-11 17:11:16.326803", "NULL", "NULL", 48, "92f770f2-6e80-467f-87e4-27e5f290a31f", 3, 3, 0, "6", "Intel(R) Xeon(R) CPU E5-2699 v4 @ 2.20GHz", "Platform", "{}", 2, 3],
"i_icpu_48": ["2018-04-11 17:11:16.334705", "NULL", "NULL", 49, "c7456eec-b30c-4cb4-abab-182f3e9bf6ee", 4, 4, 0, "6", "Intel(R) Xeon(R) CPU E5-2699 v4 @ 2.20GHz", "Platform", "{}", 2, 3],
"i_icpu_49": ["2018-04-11 17:11:16.343101", "NULL", "NULL", 50, "829ee7c1-c3d7-4eaf-b44b-68a4a1c664b2", 5, 5, 0, "6", "Intel(R) Xeon(R) CPU E5-2699 v4 @ 2.20GHz", "Platform", "{}", 2, 3],
"i_icpu_50": ["2018-04-11 17:11:16.351305", "NULL", "NULL", 51, "803be762-65c9-49ae-a7aa-55d919a681e4", 6, 8, 0, "6", "Intel(R) Xeon(R) CPU E5-2699 v4 @ 2.20GHz", "Platform", "{}", 2, 3],
"i_icpu_51": ["2018-04-11 17:11:16.359423", "NULL", "NULL", 52, "974d1ca6-edf9-4858-b368-f7ed3bb97a65", 7, 9, 0, "6", "Intel(R) Xeon(R) CPU E5-2699 v4 @ 2.20GHz", "Platform", "{}", 2, 3],
"i_icpu_52": ["2018-04-11 17:11:16.367212", "NULL", "NULL", 53, "3c10a002-e486-41bd-99c0-4745586e0f76", 8, 10, 0, "6", "Intel(R) Xeon(R) CPU E5-2699 v4 @ 2.20GHz", "Platform", "{}", 2, 3],
"i_icpu_53": ["2018-04-11 17:11:16.374792", "NULL", "NULL", 54, "736e67d5-0840-412c-94b2-90c256164c37", 9, 11, 0, "6", "Intel(R) Xeon(R) CPU E5-2699 v4 @ 2.20GHz", "Platform", "{}", 2, 3],
"i_icpu_54": ["2018-04-11 17:11:16.384399", "NULL", "NULL", 55, "c0129165-a155-49a2-ae48-f330ac16f1e6", 10, 12, 0, "6", "Intel(R) Xeon(R) CPU E5-2699 v4 @ 2.20GHz", "Platform", "{}", 2, 3],
"i_icpu_55": ["2018-04-11 17:11:16.392417", "NULL", "NULL", 56, "e1bc44d7-98a4-4510-9907-53ca05740353", 11, 16, 0, "6", "Intel(R) Xeon(R) CPU E5-2699 v4 @ 2.20GHz", "Platform", "{}", 2, 3],
"i_icpu_56": ["2018-04-11 17:11:16.400232", "NULL", "NULL", 57, "3403a5cf-ab52-4f44-bb9a-f4cfe7ef1b27", 12, 17, 0, "6", "Intel(R) Xeon(R) CPU E5-2699 v4 @ 2.20GHz", "Platform", "{}", 2, 3],
"i_icpu_57": ["2018-04-11 17:11:16.40801", "NULL", "NULL", 58, "e086b620-7ef2-49df-885f-967e332046a6", 13, 18, 0, "6", "Intel(R) Xeon(R) CPU E5-2699 v4 @ 2.20GHz", "Platform", "{}", 2, 3],
"i_icpu_58": ["2018-04-11 17:11:16.41611", "NULL", "NULL", 59, "eed14557-219b-4170-900e-b51bc74ca1bd", 14, 19, 0, "6", "Intel(R) Xeon(R) CPU E5-2699 v4 @ 2.20GHz", "Platform", "{}", 2, 3],
"i_icpu_59": ["2018-04-11 17:11:16.423718", "NULL", "NULL", 60, "39ad5a1a-82fa-4c36-9a0b-d2b86b3ed3c3", 15, 20, 0, "6", "Intel(R) Xeon(R) CPU E5-2699 v4 @ 2.20GHz", "Platform", "{}", 2, 3],
"i_icpu_60": ["2018-04-11 17:11:16.431703", "NULL", "NULL", 61, "cdee7690-3c13-47da-ba14-c6c617a22faa", 16, 21, 0, "6", "Intel(R) Xeon(R) CPU E5-2699 v4 @ 2.20GHz", "Platform", "{}", 2, 3],
"i_icpu_61": ["2018-04-11 17:11:16.43972", "NULL", "NULL", 62, "323356ac-30da-4555-b7f8-472f94cdd4e7", 17, 24, 0, "6", "Intel(R) Xeon(R) CPU E5-2699 v4 @ 2.20GHz", "Platform", "{}", 2, 3],
"i_icpu_62": ["2018-04-11 17:11:16.447712", "NULL", "NULL", 63, "0d7bd35e-fb25-4ba8-8bf3-1368b8725cbf", 18, 25, 0, "6", "Intel(R) Xeon(R) CPU E5-2699 v4 @ 2.20GHz", "Platform", "{}", 2, 3],
"i_icpu_63": ["2018-04-11 17:11:16.457469", "NULL", "NULL", 64, "a44c9dd6-acfd-4c80-bac4-1cfb5d163da6", 19, 26, 0, "6", "Intel(R) Xeon(R) CPU E5-2699 v4 @ 2.20GHz", "Platform", "{}", 2, 3],
"i_icpu_64": ["2018-04-11 17:11:16.465295", "NULL", "NULL", 65, "ead5d986-d2ff-4980-9f75-2b3a66c52e55", 20, 27, 0, "6", "Intel(R) Xeon(R) CPU E5-2699 v4 @ 2.20GHz", "Platform", "{}", 2, 3],
"i_icpu_65": ["2018-04-11 17:11:16.472688", "NULL", "NULL", 66, "25a18fb1-f9c5-4319-b170-142209c6404b", 21, 28, 0, "6", "Intel(R) Xeon(R) CPU E5-2699 v4 @ 2.20GHz", "Platform", "{}", 2, 3],
"i_icpu_66": ["2018-04-11 17:11:16.480912", "NULL", "NULL", 67, "c7d90c4b-caeb-47d3-a479-dfc73bbd9876", 22, 0, 0, "6", "Intel(R) Xeon(R) CPU E5-2699 v4 @ 2.20GHz", "Platform", "{}", 2, 4],
"i_icpu_67": ["2018-04-11 17:11:16.488717", "NULL", "NULL", 68, "1b8e2454-6036-4b3f-9b82-06c7e092bc98", 23, 1, 0, "6", "Intel(R) Xeon(R) CPU E5-2699 v4 @ 2.20GHz", "Platform", "{}", 2, 4],
"i_icpu_68": ["2018-04-11 17:11:16.496973", "NULL", "NULL", 69, "3fd64c59-e877-4ecd-98a4-c89270eb73ce", 24, 2, 0, "6", "Intel(R) Xeon(R) CPU E5-2699 v4 @ 2.20GHz", "Platform", "{}", 2, 4],
"i_icpu_69": ["2018-04-11 17:11:16.504925", "NULL", "NULL", 70, "fc7df4e3-0a63-4711-be71-2a79e8d6cd23", 25, 3, 0, "6", "Intel(R) Xeon(R) CPU E5-2699 v4 @ 2.20GHz", "Platform", "{}", 2, 4],
"i_icpu_70": ["2018-04-11 17:11:16.512986", "NULL", "NULL", 71, "46e9e30f-6cbd-4134-8545-d60acca057fa", 26, 4, 0, "6", "Intel(R) Xeon(R) CPU E5-2699 v4 @ 2.20GHz", "Platform", "{}", 2, 4],
"i_icpu_71": ["2018-04-11 17:11:16.5205", "NULL", "NULL", 72, "095c6f47-4a0c-4ca9-b3eb-5eb82ee9dcfd", 27, 5, 0, "6", "Intel(R) Xeon(R) CPU E5-2699 v4 @ 2.20GHz", "Platform", "{}", 2, 4],
"i_icpu_72": ["2018-04-11 17:11:16.527954", "NULL", "NULL", 73, "7d60be24-0a19-4bd0-ad6d-e93c4efb35f7", 28, 8, 0, "6", "Intel(R) Xeon(R) CPU E5-2699 v4 @ 2.20GHz", "Platform", "{}", 2, 4],
"i_icpu_73": ["2018-04-11 17:11:16.537122", "NULL", "NULL", 74, "148c8322-2cc3-4d85-aba0-6a955a8d33ed", 29, 9, 0, "6", "Intel(R) Xeon(R) CPU E5-2699 v4 @ 2.20GHz", "Platform", "{}", 2, 4],
"i_icpu_74": ["2018-04-11 17:11:16.545401", "NULL", "NULL", 75, "2066d82b-a8cf-4b1b-b1a3-e13cf680b631", 30, 10, 0, "6", "Intel(R) Xeon(R) CPU E5-2699 v4 @ 2.20GHz", "Platform", "{}", 2, 4],
"i_icpu_75": ["2018-04-11 17:11:16.553033", "NULL", "NULL", 76, "ca4ed9df-ce23-47e2-ba40-7ea90950f2be", 31, 11, 0, "6", "Intel(R) Xeon(R) CPU E5-2699 v4 @ 2.20GHz", "Platform", "{}", 2, 4],
"i_icpu_76": ["2018-04-11 17:11:16.560856", "NULL", "NULL", 77, "60f422cf-619f-4fe8-b29a-ba543fc2c68b", 32, 12, 0, "6", "Intel(R) Xeon(R) CPU E5-2699 v4 @ 2.20GHz", "Platform", "{}", 2, 4],
"i_icpu_77": ["2018-04-11 17:11:16.568698", "NULL", "NULL", 78, "45998441-92d1-4a1d-97d2-3d760597fec4", 33, 16, 0, "6", "Intel(R) Xeon(R) CPU E5-2699 v4 @ 2.20GHz", "Platform", "{}", 2, 4],
"i_icpu_78": ["2018-04-11 17:11:16.576274", "NULL", "NULL", 79, "6d192c21-30ea-49fc-9173-b87d359cb9f7", 34, 17, 0, "6", "Intel(R) Xeon(R) CPU E5-2699 v4 @ 2.20GHz", "Platform", "{}", 2, 4],
"i_icpu_79": ["2018-04-11 17:11:16.584011", "NULL", "NULL", 80, "102a2188-9093-4249-9535-55b60982b10c", 35, 18, 0, "6", "Intel(R) Xeon(R) CPU E5-2699 v4 @ 2.20GHz", "Platform", "{}", 2, 4],
"i_icpu_80": ["2018-04-11 17:11:16.592053", "NULL", "NULL", 81, "9287d096-0a35-4469-91f2-aa1795b9509b", 36, 19, 0, "6", "Intel(R) Xeon(R) CPU E5-2699 v4 @ 2.20GHz", "Platform", "{}", 2, 4],
"i_icpu_81": ["2018-04-11 17:11:16.600195", "NULL", "NULL", 82, "fba8215f-bda9-4e69-b539-12358e191d6e", 37, 20, 0, "6", "Intel(R) Xeon(R) CPU E5-2699 v4 @ 2.20GHz", "Platform", "{}", 2, 4],
"i_icpu_82": ["2018-04-11 17:11:16.610205", "NULL", "NULL", 83, "9d192ad1-3856-4090-b22a-3335e2601f8f", 38, 21, 0, "6", "Intel(R) Xeon(R) CPU E5-2699 v4 @ 2.20GHz", "Platform", "{}", 2, 4],
"i_icpu_83": ["2018-04-11 17:11:16.617702", "NULL", "NULL", 84, "25c206c4-65aa-4e33-b20f-9da38a16801d", 39, 24, 0, "6", "Intel(R) Xeon(R) CPU E5-2699 v4 @ 2.20GHz", "Platform", "{}", 2, 4],
"i_icpu_84": ["2018-04-11 17:11:16.625061", "NULL", "NULL", 85, "af0971c6-6bf2-480d-8072-5ea9c741427a", 40, 25, 0, "6", "Intel(R) Xeon(R) CPU E5-2699 v4 @ 2.20GHz", "Platform", "{}", 2, 4],
"i_icpu_85": ["2018-04-11 17:11:16.63289", "NULL", "NULL", 86, "18607d02-7fba-469e-bda0-bb235117c94c", 41, 26, 0, "6", "Intel(R) Xeon(R) CPU E5-2699 v4 @ 2.20GHz", "Platform", "{}", 2, 4],
"i_icpu_86": ["2018-04-11 17:11:16.641004", "NULL", "NULL", 87, "b1207ba1-0593-4dd8-93e2-30ad23ce6703", 42, 27, 0, "6", "Intel(R) Xeon(R) CPU E5-2699 v4 @ 2.20GHz", "Platform", "{}", 2, 4],
"i_icpu_87": ["2018-04-11 17:11:16.64875", "NULL", "NULL", 88, "37a10700-2baf-43e3-a882-9f1c7a4f9c71", 43, 28, 0, "6", "Intel(R) Xeon(R) CPU E5-2699 v4 @ 2.20GHz", "Platform", "{}", 2, 4]
}

View File

@ -1,8 +0,0 @@
{
"i_idisk_0": ["2018-04-11 15:33:40.505214", "2018-05-28 17:52:20.141316", "NULL", 2, "6900d7af-5482-4999-823f-e3e6833663af", "/dev/sdb", 2064, "SSD", 457862, "PHWA620402ZU480FGN", "{"model_num": "INTEL SSDSC2BB480G6"}", 1, "NULL", "NULL", "N/A", "ata-INTEL_SSDSC2BB480G6_PHWA620402ZU480FGN", "/dev/disk/by-path/pci-0000:00:1f.2-ata-2.0", "wwn-0x55cd2e404c78a9ba", 311893],
"i_idisk_1": ["2018-04-11 15:33:40.523454", "2018-05-28 17:52:20.171622", "NULL", 3, "97314435-cb13-4531-91ea-f975971a6af6", "/dev/sdc", 2080, "SSD", 457862, "PHWA620402ZN480FGN", "{"model_num": "INTEL SSDSC2BB480G6"}", 1, "NULL", "NULL", "N/A", "ata-INTEL_SSDSC2BB480G6_PHWA620402ZN480FGN", "/dev/disk/by-path/pci-0000:00:1f.2-ata-3.0", "wwn-0x55cd2e404c78a9b8", 457860],
"i_idisk_2": ["2018-04-11 17:11:17.577572", "2018-05-28 17:52:11.404163", "NULL", 4, "2e899653-e838-4b83-ac74-fa26729184e4", "/dev/sda", 2048, "SSD", 457862, "PHWA620402W9480FGN", "{"model_num": "INTEL SSDSC2BB480G6", "stor_function": "rootfs"}", 2, "NULL", "NULL", "N/A", "ata-INTEL_SSDSC2BB480G6_PHWA620402W9480FGN", "/dev/disk/by-path/pci-0000:00:1f.2-ata-1.0", "wwn-0x55cd2e404c78a981", 0],
"i_idisk_3": ["2018-04-11 17:11:17.600735", "2018-05-28 17:52:11.438693", "NULL", 5, "756437b3-3c5e-42ae-b0a4-034def142e9e", "/dev/sdb", 2064, "SSD", 457862, "PHWA620402LS480FGN", "{"model_num": "INTEL SSDSC2BB480G6"}", 2, "NULL", "NULL", "N/A", "ata-INTEL_SSDSC2BB480G6_PHWA620402LS480FGN", "/dev/disk/by-path/pci-0000:00:1f.2-ata-2.0", "wwn-0x55cd2e404c78a95a", 311893],
"i_idisk_4": ["2018-04-11 17:11:17.620712", "2018-05-28 17:52:11.472483", "NULL", 6, "26546f25-b61c-4417-9237-a92a85d17cee", "/dev/sdc", 2080, "SSD", 457862, "PHWA6204034Y480FGN", "{"model_num": "INTEL SSDSC2BB480G6"}", 2, "NULL", "NULL", "N/A", "ata-INTEL_SSDSC2BB480G6_PHWA6204034Y480FGN", "/dev/disk/by-path/pci-0000:00:1f.2-ata-3.0", "wwn-0x55cd2e404c78a9fe", 457860],
"i_idisk_5": ["2018-04-11 15:33:40.484557", "2018-05-28 17:52:20.107967", "NULL", 1, "15df3dcb-9578-451e-9a71-16caa5ce8a7d", "/dev/sda", 2048, "SSD", 457862, "PHWA620402QH480FGN", "{"model_num": "INTEL SSDSC2BB480G6", "stor_function": "rootfs"}", 1, "NULL", "NULL", "N/A", "ata-INTEL_SSDSC2BB480G6_PHWA620402QH480FGN", "/dev/disk/by-path/pci-0000:00:1f.2-ata-1.0", "wwn-0x55cd2e404c78a961", 0]
}

View File

@ -1,6 +0,0 @@
{
"i_imemory_0": ["2018-04-11 17:11:16.991305", "2018-05-28 17:52:10.721885", "NULL", 3, "c998a671-4889-4347-876d-6375408db0f6", 65439, 47461, "NULL", false, "NULL", "NULL", "NULL", "NULL", "NULL", 2, 3, "NULL", "NULL", false, "NULL", "NULL", "NULL", "NULL", "NULL", "NULL", "NULL", "NULL"],
"i_imemory_1": ["2018-04-11 17:11:17.031842", "2018-05-28 17:52:10.747659", "NULL", 4, "923e3ddc-2f25-40f2-88fd-4d53d1476631", 65536, 50991, "NULL", false, "NULL", "NULL", "NULL", "NULL", "NULL", 2, 4, "NULL", "NULL", false, "NULL", "NULL", "NULL", "NULL", "NULL", "NULL", "NULL", "NULL"],
"i_imemory_2": ["2018-04-11 15:33:39.901965", "2018-05-28 17:52:19.445662", "NULL", 1, "65f2e8da-e996-4d0c-a3bc-569ac05677ee", 65436, 62735, "NULL", false, "NULL", "NULL", "NULL", "NULL", "NULL", 1, 1, "NULL", "NULL", false, "NULL", "NULL", "NULL", "NULL", "NULL", "NULL", "NULL", "NULL"],
"i_imemory_3": ["2018-04-11 15:33:39.931909", "2018-05-28 17:52:19.472705", "NULL", 2, "34761e76-7bf8-4e9f-9215-0080da865f74", 65536, 63129, "NULL", false, "NULL", "NULL", "NULL", "NULL", "NULL", 1, 2, "NULL", "NULL", false, "NULL", "NULL", "NULL", "NULL", "NULL", "NULL", "NULL", "NULL"]
}

View File

@ -1,6 +0,0 @@
{
"i_lvg_0": ["2018-04-11 15:55:19.436718", "2018-05-18 17:48:57.833773", "NULL", 2, "91741b12-3140-4ffb-b678-bbb8c9d757b5", "provisioned", "cinder-volumes", "1fTfXH-Pn34-Wchy-7WdQ-jmJN-UICy-wjyZeC", "wz--n-", 0, 1, 0, 1, 153050152960, 36490, 365, "{"lvm_type": "thin"}", 1],
"i_lvg_1": ["2018-04-11 17:11:18.393977", "2018-05-24 10:46:16.224453", "NULL", 3, "5ea70574-e071-4894-a34d-91f8c0081288", "provisioned", "cgts-vg", "89aN2C-rq62-Fjew-UiUL-BoB6-wSsK-Hmj1kB", "wz--n-", 0, 10, 0, 1, 458588422144, 13667, 8905, "NULL", 2],
"i_lvg_2": ["2018-04-11 17:34:06.646536", "2018-05-24 10:46:16.232289", "NULL", 4, "f61e7962-cc87-4c39-94fd-3757f9fd64b3", "provisioned", "cinder-volumes", "1fTfXH-Pn34-Wchy-7WdQ-jmJN-UICy-wjyZeC", "wz--n-", 0, 1, 0, 1, 153050152960, 36490, 365, "{"lvm_type": "thin"}", 2],
"i_lvg_3": ["2018-04-11 15:33:41.331137", "2018-05-24 10:46:16.877725", "NULL", 1, "60f640c6-f6a8-496b-ae91-cc5bc21e19a3", "provisioned", "cgts-vg", "kTaIxy-yDi7-Vdqe-q3DQ-3Rau-OwKo-pphwnZ", "wz--n-", 0, 10, 0, 1, 458588422144, 13667, 8905, "NULL", 1]
}

View File

@ -1,6 +0,0 @@
{
"i_node_0": ["2018-04-11 15:33:39.302808", "NULL", "NULL", 1, "6f02d1be-2a80-42f2-85e0-df75f0d3b56f", 0, "{}", 1],
"i_node_1": ["2018-04-11 15:33:39.443611", "NULL", "NULL", 2, "110e51f0-5772-4668-ac37-7e67e3eec452", 1, "{}", 1],
"i_node_2": ["2018-04-11 17:11:15.937057", "NULL", "NULL", 3, "ae2bb5e5-3460-433c-b71c-ca7e460a7b0b", 0, "{}", 2],
"i_node_3": ["2018-04-11 17:11:16.203203", "NULL", "NULL", 4, "e8d94718-bf32-4062-bd7f-9749b6b399b9", 1, "{}", 2]
}

View File

@ -1,3 +0,0 @@
{
"i_ntp_0": ["2018-04-11 15:32:39.938629", "2018-04-11 15:52:46.292322", "NULL", 1, "a631812f-baf1-48e4-8328-1cf4a8418572", "0.pool.ntp.org,1.pool.ntp.org,2.pool.ntp.org", 1]
}

View File

@ -1,6 +0,0 @@
{
"i_pv_0": ["2018-04-11 15:55:20.977272", "2018-05-18 17:48:57.705941", "NULL", 2, "3c8827bd-0092-42cc-b93f-0fc8318e67cb", "provisioned", "partition", "c5b9f660-8036-43a0-92a2-4ec402693d84", "/dev/sdb1", "/dev/drbd4", "cinder-volumes", "c3QUOm-Ylhu-59GW-vmCO-Yo5x-ryYN-QU5jJg", 153050152960, 36490, 36125, "NULL", 1, 2, "/dev/disk/by-path/pci-0000:00:1f.2-ata-2.0-part1"],
"i_pv_1": ["2018-04-11 17:37:55.801387", "2018-05-24 10:46:16.031028", "NULL", 4, "e857a26a-7a0b-4142-a88d-e5160e1925a3", "provisioned", "partition", "4b20d2cc-9426-4f6c-aea2-f51949a089f0", "/dev/sdb1", "/dev/drbd4", "cinder-volumes", "c3QUOm-Ylhu-59GW-vmCO-Yo5x-ryYN-QU5jJg", 153050152960, 36490, 36125, "NULL", 2, 4, "/dev/disk/by-path/pci-0000:00:1f.2-ata-2.0-part1"],
"i_pv_2": ["2018-04-11 17:11:19.769983", "2018-05-24 10:46:16.084335", "NULL", 3, "cff94efe-dfd9-4cc5-ad1d-d3a80bc15045", "provisioned", "partition", "19fbbcc0-7e91-4bb7-9b96-928778459e39", "/dev/sda4", "/dev/sda4", "cgts-vg", "mAs5zK-jns8-D5L0-NYEX-Y1MU-x4sW-xVidzf", 458588422144, 13667, 4762, "NULL", 2, 3, "/dev/disk/by-path/pci-0000:00:1f.2-ata-1.0-part4"],
"i_pv_3": ["2018-04-11 15:33:42.632857", "2018-05-24 10:46:16.792272", "NULL", 1, "c12269c9-2df2-43e1-83c2-c4ff16e7f808", "provisioned", "partition", "69217878-28e7-4ac2-8d73-828692df069e", "/dev/sda4", "/dev/sda4", "cgts-vg", "JOcJrC-2EAP-OuW4-aUYI-Y2jJ-322X-YVmjfB", 458588422144, 13667, 4762, "NULL", 1, 1, "/dev/disk/by-path/pci-0000:00:1f.2-ata-1.0-part4"]
}

View File

@ -1,10 +0,0 @@
{
"i_sensorgroups_0": ["2018-04-11 17:04:14.386334", "2018-04-11 17:04:19.135812", "NULL", 1, "0ca13638-c6eb-4cb3-873c-1ebbd12dc579", 2, "server fans", "na", "discrete", "fan", "NULL", "enabled", "NULL", 120, "NULL", "debounce-1.v1", "ignore,log,alarm,reset,power-cycle", "ignore,log,alarm", "ignore,log,alarm", "ignore", "log", "alarm", false, "NULL"],
"i_sensorgroups_1": ["2018-04-11 17:04:14.429267", "2018-04-11 17:04:19.185008", "NULL", 2, "25e2959d-2ad8-41fa-92eb-8879d8edb72f", 2, "server temperature", "na", "discrete", "temperature", "NULL", "enabled", "NULL", 120, "NULL", "debounce-1.v1", "ignore,log,alarm,reset,power-cycle", "ignore,log,alarm", "ignore,log,alarm", "ignore", "log", "alarm", false, "NULL"],
"i_sensorgroups_2": ["2018-04-11 17:04:14.458081", "2018-04-11 17:04:19.231536", "NULL", 3, "7c55fb29-7bbb-48f6-bbe2-aa7499ccf927", 2, "server power", "na", "discrete", "power", "NULL", "enabled", "NULL", 120, "NULL", "debounce-1.v1", "ignore,log,alarm,reset,power-cycle", "ignore,log,alarm", "ignore,log,alarm", "ignore", "log", "alarm", false, "NULL"],
"i_sensorgroups_3": ["2018-04-11 17:04:14.48919", "2018-04-11 17:04:19.280021", "NULL", 4, "7d793c0e-a192-4da2-84b7-12dfb19a2681", 2, "server voltage", "na", "discrete", "voltage", "NULL", "enabled", "NULL", 120, "NULL", "debounce-1.v1", "ignore,log,alarm,reset,power-cycle", "ignore,log,alarm", "ignore,log,alarm", "ignore", "log", "alarm", false, "NULL"],
"i_sensorgroups_4": ["2018-04-11 17:10:26.993174", "2018-04-11 17:10:31.38618", "NULL", 5, "daded4c8-7f51-4423-aec4-2c4e8839bea6", 1, "server fans", "na", "discrete", "fan", "NULL", "enabled", "NULL", 120, "NULL", "debounce-1.v1", "ignore,log,alarm,reset,power-cycle", "ignore,log,alarm", "ignore,log,alarm", "ignore", "log", "alarm", false, "NULL"],
"i_sensorgroups_5": ["2018-04-11 17:10:27.033789", "2018-04-11 17:10:31.432569", "NULL", 6, "05757226-5c39-4cb0-9257-5e64aad01b21", 1, "server temperature", "na", "discrete", "temperature", "NULL", "enabled", "NULL", 120, "NULL", "debounce-1.v1", "ignore,log,alarm,reset,power-cycle", "ignore,log,alarm", "ignore,log,alarm", "ignore", "log", "alarm", false, "NULL"],
"i_sensorgroups_6": ["2018-04-11 17:10:27.065682", "2018-04-11 17:10:31.479503", "NULL", 7, "40af954c-9dbc-4507-af02-e80fcd8f4d2b", 1, "server power", "na", "discrete", "power", "NULL", "enabled", "NULL", 120, "NULL", "debounce-1.v1", "ignore,log,alarm,reset,power-cycle", "ignore,log,alarm", "ignore,log,alarm", "ignore", "log", "alarm", false, "NULL"],
"i_sensorgroups_7": ["2018-04-11 17:10:27.096627", "2018-04-11 17:10:31.527621", "NULL", 8, "bcb296bf-7afa-4f91-aba3-8bfc154b3732", 1, "server voltage", "na", "discrete", "voltage", "NULL", "enabled", "NULL", 120, "NULL", "debounce-1.v1", "ignore,log,alarm,reset,power-cycle", "ignore,log,alarm", "ignore,log,alarm", "ignore", "log", "alarm", false, "NULL"]
}

View File

@ -1,10 +0,0 @@
{
"i_sensorgroups_discrete_0": ["NULL", "NULL", "NULL", 1],
"i_sensorgroups_discrete_1": ["NULL", "NULL", "NULL", 2],
"i_sensorgroups_discrete_2": ["NULL", "NULL", "NULL", 3],
"i_sensorgroups_discrete_3": ["NULL", "NULL", "NULL", 4],
"i_sensorgroups_discrete_4": ["NULL", "NULL", "NULL", 5],
"i_sensorgroups_discrete_5": ["NULL", "NULL", "NULL", 6],
"i_sensorgroups_discrete_6": ["NULL", "NULL", "NULL", 7],
"i_sensorgroups_discrete_7": ["NULL", "NULL", "NULL", 8]
}

View File

@ -1,78 +0,0 @@
{
"i_sensors_0": ["2018-04-11 17:04:14.600754", "2018-05-26 13:05:24.079785", "NULL", 3, "5f11c358-7b43-4dc0-ab2e-03a02f9f9be4", 2, 2, "BB P2 VR Temp", "", "discrete", "temperature", "ok", "enabled", "NULL", "NULL", 0, "debounce-1.v1", "ignore", "log", "alarm", false, "NULL"],
"i_sensors_1": ["2018-04-11 17:04:14.93988", "2018-04-19 22:01:54.905968", "NULL", 14, "62dd6071-7c35-47fe-b1e6-16b7f69b5302", 2, 1, "System Fan 2A", "", "discrete", "fan", "ok", "enabled", "NULL", "NULL", 0, "debounce-1.v1", "ignore", "log", "alarm", false, "NULL"],
"i_sensors_2": ["2018-04-11 17:04:14.973051", "2018-04-11 17:04:20.060486", "NULL", 15, "723d9c73-f7ba-4c98-8bb7-4ea0ff17dfb8", 2, 1, "System Fan 2B", "", "discrete", "fan", "ok", "enabled", "NULL", "NULL", 0, "debounce-1.v1", "ignore", "log", "alarm", false, "NULL"],
"i_sensors_3": ["2018-04-11 17:04:15.002569", "2018-04-11 17:04:20.096687", "NULL", 16, "e62e8d41-6514-4779-b2e0-a1acc9e00154", 2, 1, "System Fan 3A", "", "discrete", "fan", "ok", "enabled", "NULL", "NULL", 0, "debounce-1.v1", "ignore", "log", "alarm", false, "NULL"],
"i_sensors_4": ["2018-04-11 17:04:15.034786", "2018-04-11 17:04:20.1356", "NULL", 17, "4bbea0f8-afae-4f2a-acb2-31f48910279f", 2, 1, "System Fan 3B", "", "discrete", "fan", "ok", "enabled", "NULL", "NULL", 0, "debounce-1.v1", "ignore", "log", "alarm", false, "NULL"],
"i_sensors_5": ["2018-04-11 17:04:15.064897", "2018-04-20 17:11:08.773152", "NULL", 18, "3a4b22ba-19a0-4e05-b4ce-1d4fe6028662", 2, 1, "System Fan 4A", "", "discrete", "fan", "ok", "enabled", "NULL", "NULL", 0, "debounce-1.v1", "ignore", "log", "alarm", false, "NULL"],
"i_sensors_6": ["2018-04-11 17:04:15.094726", "2018-05-17 07:31:01.334506", "NULL", 19, "e5aead60-c0b7-4d27-bf6d-fe8c21631969", 2, 1, "System Fan 4B", "", "discrete", "fan", "ok", "enabled", "NULL", "NULL", 0, "debounce-1.v1", "ignore", "log", "alarm", false, "NULL"],
"i_sensors_7": ["2018-04-11 17:04:15.12667", "2018-04-11 17:04:20.252069", "NULL", 20, "900abf46-a628-4ee3-b813-56ec3e362ad0", 2, 1, "System Fan 5A", "", "discrete", "fan", "ok", "enabled", "NULL", "NULL", 0, "debounce-1.v1", "ignore", "log", "alarm", false, "NULL"],
"i_sensors_8": ["2018-04-11 17:04:15.156121", "2018-04-11 17:04:20.287889", "NULL", 21, "5b8b6b72-b962-4855-a7b5-496206aa0b51", 2, 1, "System Fan 5B", "", "discrete", "fan", "ok", "enabled", "NULL", "NULL", 0, "debounce-1.v1", "ignore", "log", "alarm", false, "NULL"],
"i_sensors_9": ["2018-04-11 17:04:15.187865", "2018-05-25 16:30:01.423213", "NULL", 22, "e7438025-2093-4f68-8f54-9ba5cb02d2b9", 2, 1, "System Fan 6A", "", "discrete", "fan", "ok", "enabled", "NULL", "NULL", 0, "debounce-1.v1", "ignore", "log", "alarm", false, "NULL"],
"i_sensors_10": ["2018-04-11 17:04:15.217113", "2018-04-11 17:04:20.361196", "NULL", 23, "a0f419b3-ca9b-49b7-a75d-785ff9214239", 2, 1, "System Fan 6B", "", "discrete", "fan", "ok", "enabled", "NULL", "NULL", 0, "debounce-1.v1", "ignore", "log", "alarm", false, "NULL"],
"i_sensors_11": ["2018-04-11 17:04:15.246792", "2018-05-15 15:10:09.156488", "NULL", 24, "4a69701e-ff83-4e78-ae10-3b7d1b9ab554", 2, 3, "PS1 Input Power", "", "discrete", "power", "ok", "enabled", "NULL", "NULL", 0, "debounce-1.v1", "ignore", "log", "alarm", false, "NULL"],
"i_sensors_12": ["2018-04-11 17:04:15.278232", "2018-04-11 17:04:20.433893", "NULL", 25, "4c59eabb-9d7f-4a0c-8bc1-cea292574eb4", 2, 3, "PS2 Input Power", "", "discrete", "power", "ok", "enabled", "NULL", "NULL", 0, "debounce-1.v1", "ignore", "log", "alarm", false, "NULL"],
"i_sensors_13": ["2018-04-11 17:04:14.63257", "2018-04-20 15:44:09.553798", "NULL", 4, "657668e1-c501-4c56-92ea-d3a3e7e24c07", 2, 2, "Front Panel Temp", "", "discrete", "temperature", "ok", "enabled", "NULL", "NULL", 0, "debounce-1.v1", "ignore", "log", "alarm", false, "NULL"],
"i_sensors_14": ["2018-04-11 17:04:14.663359", "2018-04-11 17:04:19.644048", "NULL", 5, "ae6b4c22-1e0d-42c2-84bd-1b4758e194fc", 2, 2, "SSB Temp", "", "discrete", "temperature", "ok", "enabled", "NULL", "NULL", 0, "debounce-1.v1", "ignore", "log", "alarm", false, "NULL"],
"i_sensors_15": ["2018-04-11 17:04:14.693529", "2018-04-11 17:04:19.685896", "NULL", 6, "115a305a-48dd-4bb0-92e5-a7fd27b76322", 2, 2, "BB BMC Temp", "", "discrete", "temperature", "ok", "enabled", "NULL", "NULL", 0, "debounce-1.v1", "ignore", "log", "alarm", false, "NULL"],
"i_sensors_16": ["2018-04-11 17:04:14.725338", "2018-05-09 15:49:57.572135", "NULL", 7, "388f2216-2fb7-452c-ac17-f7fe88bf68b9", 2, 2, "BB Rt Rear Temp", "", "discrete", "temperature", "ok", "enabled", "NULL", "NULL", 0, "debounce-1.v1", "ignore", "log", "alarm", false, "NULL"],
"i_sensors_17": ["2018-04-11 17:04:14.754977", "2018-04-11 17:04:19.765549", "NULL", 8, "752f6a91-0bbe-46ca-86dc-09c83a7138a8", 2, 2, "BB Lft Rear Temp", "", "discrete", "temperature", "ok", "enabled", "NULL", "NULL", 0, "debounce-1.v1", "ignore", "log", "alarm", false, "NULL"],
"i_sensors_18": ["2018-04-11 17:04:14.78724", "2018-04-11 17:04:19.807569", "NULL", 9, "b4f8d1b0-392d-4936-8852-6ac28347cbb9", 2, 2, "HSBP 1 Temp", "", "discrete", "temperature", "ok", "enabled", "NULL", "NULL", 0, "debounce-1.v1", "ignore", "log", "alarm", false, "NULL"],
"i_sensors_19": ["2018-04-11 17:04:14.817054", "2018-04-17 14:16:54.605433", "NULL", 10, "a7cea2c5-724f-45bf-8eea-7cb42abad5d8", 2, 2, "Exit Air Temp", "", "discrete", "temperature", "ok", "enabled", "NULL", "NULL", 0, "debounce-1.v1", "ignore", "log", "alarm", false, "NULL"],
"i_sensors_20": ["2018-04-11 17:04:14.846833", "2018-04-11 17:04:19.890728", "NULL", 11, "4a995976-c38e-4e22-ba01-9b5af54fceb3", 2, 2, "LAN NIC Temp", "", "discrete", "temperature", "ok", "enabled", "NULL", "NULL", 0, "debounce-1.v1", "ignore", "log", "alarm", false, "NULL"],
"i_sensors_21": ["2018-04-11 17:04:14.879278", "2018-04-11 17:04:19.932643", "NULL", 12, "9923ab79-2835-4ad2-96cf-d06f9bc39249", 2, 1, "System Fan 1A", "", "discrete", "fan", "ok", "enabled", "NULL", "NULL", 0, "debounce-1.v1", "ignore", "log", "alarm", false, "NULL"],
"i_sensors_22": ["2018-04-11 17:04:14.908651", "2018-04-11 17:04:19.974484", "NULL", 13, "e411d6d8-39c4-4a8a-b48e-dc3e98045b65", 2, 1, "System Fan 1B", "", "discrete", "fan", "ok", "enabled", "NULL", "NULL", 0, "debounce-1.v1", "ignore", "log", "alarm", false, "NULL"],
"i_sensors_23": ["2018-04-11 17:04:15.435919", "2018-04-11 17:04:20.541937", "NULL", 28, "39b85102-1851-434f-987b-d2b5575b8425", 2, 2, "P1 Therm Margin", "", "discrete", "temperature", "ok", "enabled", "NULL", "NULL", 0, "debounce-1.v1", "ignore", "log", "alarm", false, "NULL"],
"i_sensors_24": ["2018-04-11 17:04:15.606905", "2018-04-11 17:04:20.576219", "NULL", 29, "5ebb6c87-faf0-486b-a39e-c191940ce6b9", 2, 2, "P2 Therm Margin", "", "discrete", "temperature", "ok", "enabled", "NULL", "NULL", 0, "debounce-1.v1", "ignore", "log", "alarm", false, "NULL"],
"i_sensors_25": ["2018-04-11 17:04:15.652366", "2018-04-11 17:04:20.713045", "NULL", 30, "0454aba5-323f-49a4-ac9c-5da00beb8617", 2, 2, "P1 DTS Therm Mgn", "", "discrete", "temperature", "ok", "enabled", "NULL", "NULL", 0, "debounce-1.v1", "ignore", "log", "alarm", false, "NULL"],
"i_sensors_26": ["2018-04-11 17:04:15.681465", "2018-04-11 17:04:20.751894", "NULL", 31, "9b02da8e-e0df-4f0d-842e-b79010959bc4", 2, 2, "P2 DTS Therm Mgn", "", "discrete", "temperature", "ok", "enabled", "NULL", "NULL", 0, "debounce-1.v1", "ignore", "log", "alarm", false, "NULL"],
"i_sensors_27": ["2018-04-11 17:04:15.708762", "2018-04-11 17:04:20.789767", "NULL", 32, "43280352-efd5-4f2b-bdbd-c32b9c12f85a", 2, 2, "DIMM Thrm Mrgn 1", "", "discrete", "temperature", "ok", "enabled", "NULL", "NULL", 0, "debounce-1.v1", "ignore", "log", "alarm", false, "NULL"],
"i_sensors_28": ["2018-04-11 17:04:15.735988", "2018-04-20 14:35:30.290666", "NULL", 33, "830b307b-b966-452e-b0ea-bcb745eac276", 2, 2, "DIMM Thrm Mrgn 2", "", "discrete", "temperature", "ok", "enabled", "NULL", "NULL", 0, "debounce-1.v1", "ignore", "log", "alarm", false, "NULL"],
"i_sensors_29": ["2018-04-11 17:04:15.764789", "2018-05-16 23:06:38.6583", "NULL", 34, "8386a066-6093-4456-bddf-bf329c49049c", 2, 2, "DIMM Thrm Mrgn 3", "", "discrete", "temperature", "ok", "enabled", "NULL", "NULL", 0, "debounce-1.v1", "ignore", "log", "alarm", false, "NULL"],
"i_sensors_30": ["2018-04-11 17:04:15.792013", "2018-04-11 17:04:20.898968", "NULL", 35, "791a3a4b-fbec-4d3e-a19c-2a5db608124e", 2, 2, "DIMM Thrm Mrgn 4", "", "discrete", "temperature", "ok", "enabled", "NULL", "NULL", 0, "debounce-1.v1", "ignore", "log", "alarm", false, "NULL"],
"i_sensors_31": ["2018-04-11 17:04:15.819033", "2018-04-20 12:56:13.679183", "NULL", 36, "44258b03-66e2-412a-8d6a-a14c226806c0", 2, 2, "Agg Therm Mgn 1", "", "discrete", "temperature", "ok", "enabled", "NULL", "NULL", 0, "debounce-1.v1", "ignore", "log", "alarm", false, "NULL"],
"i_sensors_32": ["2018-04-11 17:04:15.848074", "2018-04-11 17:04:20.970614", "NULL", 37, "44fa26f8-1294-4ad2-b758-63d93554c084", 2, 4, "BB +12.0V", "", "discrete", "voltage", "ok", "enabled", "NULL", "NULL", 0, "debounce-1.v1", "ignore", "log", "alarm", false, "NULL"],
"i_sensors_33": ["2018-04-11 17:04:15.875329", "2018-04-13 17:26:18.366883", "NULL", 38, "035f64d2-ccce-41c5-a52d-1583e8da4c42", 2, 4, "BB +3.3V Vbat", "", "discrete", "voltage", "ok", "enabled", "NULL", "NULL", 0, "debounce-1.v1", "ignore", "log", "alarm", false, "NULL"],
"i_sensors_34": ["2018-04-11 17:04:15.308341", "2018-04-11 17:04:20.469101", "NULL", 26, "61a9fdea-e1d2-47c5-9c72-261b9643eb32", 2, 2, "PS1 Temperature", "", "discrete", "temperature", "ok", "enabled", "NULL", "NULL", 0, "debounce-1.v1", "ignore", "log", "alarm", false, "NULL"],
"i_sensors_35": ["2018-04-11 17:04:15.338171", "2018-04-11 17:04:20.505303", "NULL", 27, "f32dffcb-370d-4777-b0ee-69491f370d14", 2, 2, "PS2 Temperature", "", "discrete", "temperature", "ok", "enabled", "NULL", "NULL", 0, "debounce-1.v1", "ignore", "log", "alarm", false, "NULL"],
"i_sensors_36": ["2018-04-11 17:04:14.526636", "2018-04-11 17:04:19.482279", "NULL", 1, "eb8158a2-8753-4794-8293-31b0842a4df0", 2, 1, "System Airflow", "", "discrete", "fan", "ok", "enabled", "NULL", "NULL", 0, "debounce-1.v1", "ignore", "log", "alarm", false, "NULL"],
"i_sensors_37": ["2018-04-11 17:04:14.571048", "2018-04-19 21:31:07.626152", "NULL", 2, "30f964fb-a628-4db9-8b5f-7510c972d659", 2, 2, "BB P1 VR Temp", "", "discrete", "temperature", "ok", "enabled", "NULL", "NULL", 0, "debounce-1.v1", "ignore", "log", "alarm", false, "NULL"],
"i_sensors_38": ["2018-04-11 17:10:27.247246", "2018-04-11 17:10:32.023661", "NULL", 42, "65204732-c60e-4b11-aaca-16eefb5511c3", 1, 6, "Front Panel Temp", "", "discrete", "temperature", "ok", "enabled", "NULL", "NULL", 0, "debounce-1.v1", "ignore", "log", "alarm", false, "NULL"],
"i_sensors_39": ["2018-04-11 17:10:27.183025", "2018-04-20 14:24:06.487777", "NULL", 40, "a87187c1-e444-4222-8421-f72a1c7fc267", 1, 6, "BB P1 VR Temp", "", "discrete", "temperature", "ok", "enabled", "NULL", "NULL", 0, "debounce-1.v1", "ignore", "log", "alarm", false, "NULL"],
"i_sensors_40": ["2018-04-11 17:10:27.216074", "2018-04-11 17:10:31.984548", "NULL", 41, "68426933-d2f8-453e-a6fb-580b7ca49564", 1, 6, "BB P2 VR Temp", "", "discrete", "temperature", "ok", "enabled", "NULL", "NULL", 0, "debounce-1.v1", "ignore", "log", "alarm", false, "NULL"],
"i_sensors_41": ["2018-04-11 17:10:27.814992", "2018-04-11 17:10:32.720085", "NULL", 57, "2b9dc2a6-9f55-4047-aea8-ae0322c5901e", 1, 5, "System Fan 4B", "", "discrete", "fan", "ok", "enabled", "NULL", "NULL", 0, "debounce-1.v1", "ignore", "log", "alarm", false, "NULL"],
"i_sensors_42": ["2018-04-11 17:10:27.842918", "2018-04-11 17:10:32.76191", "NULL", 58, "836827c9-8c08-411e-aec9-792e22242c5f", 1, 5, "System Fan 5A", "", "discrete", "fan", "ok", "enabled", "NULL", "NULL", 0, "debounce-1.v1", "ignore", "log", "alarm", false, "NULL"],
"i_sensors_43": ["2018-04-11 17:10:27.870329", "2018-04-11 17:10:32.801248", "NULL", 59, "e3585d38-3d6a-43a1-9ac2-524cb66d9270", 1, 5, "System Fan 5B", "", "discrete", "fan", "ok", "enabled", "NULL", "NULL", 0, "debounce-1.v1", "ignore", "log", "alarm", false, "NULL"],
"i_sensors_44": ["2018-04-11 17:10:27.897413", "2018-04-11 17:10:32.843358", "NULL", 60, "3cdf07f9-75f8-49ba-84dd-2e6d211e3fbb", 1, 5, "System Fan 6A", "", "discrete", "fan", "ok", "enabled", "NULL", "NULL", 0, "debounce-1.v1", "ignore", "log", "alarm", false, "NULL"],
"i_sensors_45": ["2018-04-11 17:10:27.926138", "2018-04-11 17:10:32.889545", "NULL", 61, "85685f9a-4f1e-4485-81e0-9d98070d5d3d", 1, 5, "System Fan 6B", "", "discrete", "fan", "ok", "enabled", "NULL", "NULL", 0, "debounce-1.v1", "ignore", "log", "alarm", false, "NULL"],
"i_sensors_46": ["2018-04-11 17:10:28.203746", "2018-04-24 23:52:43.292117", "NULL", 71, "91f183ee-78bc-49c7-80fe-1b7f3b279634", 1, 6, "DIMM Thrm Mrgn 2", "", "discrete", "temperature", "ok", "enabled", "NULL", "NULL", 0, "debounce-1.v1", "ignore", "log", "alarm", false, "NULL"],
"i_sensors_47": ["2018-04-11 17:10:28.00976", "2018-04-11 17:10:32.962632", "NULL", 64, "7c182aee-cc8f-495d-90e9-16a4d7aca517", 1, 6, "PS1 Temperature", "", "discrete", "temperature", "ok", "enabled", "NULL", "NULL", 0, "debounce-1.v1", "ignore", "log", "alarm", false, "NULL"],
"i_sensors_48": ["2018-04-11 17:10:28.065491", "2018-04-11 17:10:33.002018", "NULL", 66, "993eb172-61b7-44e2-a8dd-8f6a2cd592d0", 1, 6, "P1 Therm Margin", "", "discrete", "temperature", "ok", "enabled", "NULL", "NULL", 0, "debounce-1.v1", "ignore", "log", "alarm", false, "NULL"],
"i_sensors_49": ["2018-04-11 17:10:28.092532", "2018-04-11 17:10:33.03736", "NULL", 67, "2e1b134d-9ebd-4753-bfec-36b578cd92d4", 1, 6, "P2 Therm Margin", "", "discrete", "temperature", "ok", "enabled", "NULL", "NULL", 0, "debounce-1.v1", "ignore", "log", "alarm", false, "NULL"],
"i_sensors_50": ["2018-04-11 17:10:27.597845", "2018-05-10 15:19:50.481308", "NULL", 49, "9e601cb3-d679-4adc-9876-6a585a0d3fd0", 1, 6, "LAN NIC Temp", "", "discrete", "temperature", "ok", "enabled", "NULL", "NULL", 0, "debounce-1.v1", "ignore", "log", "alarm", false, "NULL"],
"i_sensors_51": ["2018-04-11 17:10:27.983247", "2018-04-11 17:10:30.879749", "NULL", 63, "282410b9-7821-4ddd-bfff-020ee520a6af", 1, 7, "PS2 Input Power", "", "discrete", "power", "offline", "enabled", "NULL", "NULL", 0, "debounce-1.v1", "ignore", "log", "alarm", false, "NULL"],
"i_sensors_52": ["2018-04-11 17:10:27.569165", "2018-05-23 13:55:42.317944", "NULL", 48, "d079b50e-7490-447e-9cdc-7bc4f107e3b1", 1, 6, "Exit Air Temp", "", "discrete", "temperature", "ok", "enabled", "NULL", "NULL", 0, "debounce-1.v1", "ignore", "log", "alarm", false, "NULL"],
"i_sensors_53": ["2018-04-11 17:10:27.626006", "2018-04-11 17:10:32.433965", "NULL", 50, "a8bea8e2-dd68-4e6c-be0e-ce8fe55ee36e", 1, 5, "System Fan 1A", "", "discrete", "fan", "ok", "enabled", "NULL", "NULL", 0, "debounce-1.v1", "ignore", "log", "alarm", false, "NULL"],
"i_sensors_54": ["2018-04-11 17:10:27.678969", "2018-04-11 17:10:32.515668", "NULL", 52, "dd1b76a7-80cd-430a-b904-26b3ae649f3f", 1, 5, "System Fan 2A", "", "discrete", "fan", "ok", "enabled", "NULL", "NULL", 0, "debounce-1.v1", "ignore", "log", "alarm", false, "NULL"],
"i_sensors_55": ["2018-04-11 17:10:27.706466", "2018-04-11 17:10:32.557128", "NULL", 53, "d42deb73-53ae-4bec-8838-d8689ae76465", 1, 5, "System Fan 2B", "", "discrete", "fan", "ok", "enabled", "NULL", "NULL", 0, "debounce-1.v1", "ignore", "log", "alarm", false, "NULL"],
"i_sensors_56": ["2018-04-11 17:10:27.733552", "2018-04-11 17:10:32.596914", "NULL", 54, "f376d950-0e4c-4e32-9167-35661251277a", 1, 5, "System Fan 3A", "", "discrete", "fan", "ok", "enabled", "NULL", "NULL", 0, "debounce-1.v1", "ignore", "log", "alarm", false, "NULL"],
"i_sensors_57": ["2018-04-11 17:10:27.760459", "2018-04-11 17:10:32.639511", "NULL", 55, "6c9e9404-756f-4afe-b2c9-accfacdce194", 1, 5, "System Fan 3B", "", "discrete", "fan", "ok", "enabled", "NULL", "NULL", 0, "debounce-1.v1", "ignore", "log", "alarm", false, "NULL"],
"i_sensors_58": ["2018-04-11 17:10:28.121637", "2018-04-25 16:57:44.765615", "NULL", 68, "53f2515f-f6f3-4552-a7db-637e211348a7", 1, 6, "P1 DTS Therm Mgn", "", "discrete", "temperature", "ok", "enabled", "NULL", "NULL", 0, "debounce-1.v1", "ignore", "log", "alarm", false, "NULL"],
"i_sensors_59": ["2018-04-11 17:10:28.230467", "2018-04-11 17:10:33.314352", "NULL", 72, "e0f70986-e987-41ed-b5b5-bedc177d3ecd", 1, 6, "DIMM Thrm Mrgn 3", "", "discrete", "temperature", "ok", "enabled", "NULL", "NULL", 0, "debounce-1.v1", "ignore", "log", "alarm", false, "NULL"],
"i_sensors_60": ["2018-04-11 17:10:28.258733", "2018-04-11 17:10:33.353305", "NULL", 73, "b03b3e6d-62a6-4388-b487-d7a8f5720083", 1, 6, "DIMM Thrm Mrgn 4", "", "discrete", "temperature", "ok", "enabled", "NULL", "NULL", 0, "debounce-1.v1", "ignore", "log", "alarm", false, "NULL"],
"i_sensors_61": ["2018-04-11 17:10:28.285891", "2018-04-11 17:10:33.390338", "NULL", 74, "21f3a468-2241-4082-978c-8219c1d831c8", 1, 6, "Agg Therm Mgn 1", "", "discrete", "temperature", "ok", "enabled", "NULL", "NULL", 0, "debounce-1.v1", "ignore", "log", "alarm", false, "NULL"],
"i_sensors_62": ["2018-04-11 17:10:28.312522", "2018-04-11 17:10:33.427364", "NULL", 75, "2a3400fb-ac02-4971-873f-fff9ad9a4c11", 1, 8, "BB +12.0V", "", "discrete", "voltage", "ok", "enabled", "NULL", "NULL", 0, "debounce-1.v1", "ignore", "log", "alarm", false, "NULL"],
"i_sensors_63": ["2018-04-11 17:10:27.377646", "2018-05-17 15:52:02.161537", "NULL", 46, "201f5abf-45ec-444d-a9bc-e7df9136592f", 1, 6, "BB Lft Rear Temp", "", "discrete", "temperature", "ok", "enabled", "NULL", "NULL", 0, "debounce-1.v1", "ignore", "log", "alarm", false, "NULL"],
"i_sensors_64": ["2018-04-11 17:10:27.652276", "2018-04-25 00:17:15.575419", "NULL", 51, "fe69b9bb-d3e2-4413-86b7-5bf927ebceb2", 1, 5, "System Fan 1B", "", "discrete", "fan", "ok", "enabled", "NULL", "NULL", 0, "debounce-1.v1", "ignore", "log", "alarm", false, "NULL"],
"i_sensors_65": ["2018-04-11 17:10:28.14837", "2018-04-12 05:46:12.904773", "NULL", 69, "80840676-1d8b-4a49-904c-82c9a35559c1", 1, 6, "P2 DTS Therm Mgn", "", "discrete", "temperature", "ok", "enabled", "NULL", "NULL", 0, "debounce-1.v1", "ignore", "log", "alarm", false, "NULL"],
"i_sensors_66": ["2018-04-11 17:10:27.953486", "2018-04-20 17:27:21.579132", "NULL", 62, "dbb73a93-181c-4c16-acd1-3fc203e39500", 1, 7, "PS1 Input Power", "", "discrete", "power", "ok", "enabled", "NULL", "NULL", 0, "debounce-1.v1", "ignore", "log", "alarm", false, "NULL"],
"i_sensors_67": ["2018-04-11 17:10:27.2787", "2018-04-20 15:44:38.910954", "NULL", 43, "db650813-1ff1-40fa-9692-3914736cf096", 1, 6, "SSB Temp", "", "discrete", "temperature", "ok", "enabled", "NULL", "NULL", 0, "debounce-1.v1", "ignore", "log", "alarm", false, "NULL"],
"i_sensors_68": ["2018-04-11 17:10:27.138332", "2018-04-11 17:10:31.896869", "NULL", 39, "dd8ceb13-5381-47a4-ad4e-64ac7e1fef52", 1, 5, "System Airflow", "", "discrete", "fan", "ok", "enabled", "NULL", "NULL", 0, "debounce-1.v1", "ignore", "log", "alarm", false, "NULL"],
"i_sensors_69": ["2018-04-11 17:10:28.036932", "2018-04-11 17:10:30.951974", "NULL", 65, "60f86fa2-f189-4362-b6b4-1755ff09ab0b", 1, 6, "PS2 Temperature", "", "discrete", "temperature", "offline", "enabled", "NULL", "NULL", 0, "debounce-1.v1", "ignore", "log", "alarm", false, "NULL"],
"i_sensors_70": ["2018-04-11 17:10:28.175366", "2018-04-11 17:10:33.239162", "NULL", 70, "e9b0be11-826c-46af-9d30-abbc7208b949", 1, 6, "DIMM Thrm Mrgn 1", "", "discrete", "temperature", "ok", "enabled", "NULL", "NULL", 0, "debounce-1.v1", "ignore", "log", "alarm", false, "NULL"],
"i_sensors_71": ["2018-04-11 17:10:27.312214", "2018-04-11 17:10:32.184471", "NULL", 44, "8dba862c-eab6-4a47-b6ac-fbb7bc69ebe8", 1, 6, "BB BMC Temp", "", "discrete", "temperature", "ok", "enabled", "NULL", "NULL", 0, "debounce-1.v1", "ignore", "log", "alarm", false, "NULL"],
"i_sensors_72": ["2018-04-11 17:10:27.343777", "2018-04-11 17:10:32.226564", "NULL", 45, "96bd1740-314c-4931-92fc-db60501aaa13", 1, 6, "BB Rt Rear Temp", "", "discrete", "temperature", "ok", "enabled", "NULL", "NULL", 0, "debounce-1.v1", "ignore", "log", "alarm", false, "NULL"],
"i_sensors_73": ["2018-04-11 17:10:28.340885", "2018-05-18 13:51:03.37858", "NULL", 76, "111ea70f-19fa-469c-a378-237c76bb3596", 1, 8, "BB +3.3V Vbat", "", "discrete", "voltage", "ok", "enabled", "NULL", "NULL", 0, "debounce-1.v1", "ignore", "log", "alarm", false, "NULL"],
"i_sensors_74": ["2018-04-11 17:10:27.408029", "2018-04-11 17:10:32.30996", "NULL", 47, "2d23817b-d6bb-4257-9586-1693f8c1b45c", 1, 6, "HSBP 1 Temp", "", "discrete", "temperature", "ok", "enabled", "NULL", "NULL", 0, "debounce-1.v1", "ignore", "log", "alarm", false, "NULL"],
"i_sensors_75": ["2018-04-11 17:10:27.788518", "2018-04-11 17:10:32.678189", "NULL", 56, "9023191e-b785-43e8-9e09-684755ae276f", 1, 5, "System Fan 4A", "", "discrete", "fan", "ok", "enabled", "NULL", "NULL", 0, "debounce-1.v1", "ignore", "log", "alarm", false, "NULL"]
}

View File

@ -1,78 +0,0 @@
{
"i_sensors_discrete_0": ["NULL", "NULL", "NULL", 1],
"i_sensors_discrete_1": ["NULL", "NULL", "NULL", 2],
"i_sensors_discrete_2": ["NULL", "NULL", "NULL", 3],
"i_sensors_discrete_3": ["NULL", "NULL", "NULL", 4],
"i_sensors_discrete_4": ["NULL", "NULL", "NULL", 5],
"i_sensors_discrete_5": ["NULL", "NULL", "NULL", 6],
"i_sensors_discrete_6": ["NULL", "NULL", "NULL", 7],
"i_sensors_discrete_7": ["NULL", "NULL", "NULL", 8],
"i_sensors_discrete_8": ["NULL", "NULL", "NULL", 9],
"i_sensors_discrete_9": ["NULL", "NULL", "NULL", 10],
"i_sensors_discrete_10": ["NULL", "NULL", "NULL", 11],
"i_sensors_discrete_11": ["NULL", "NULL", "NULL", 12],
"i_sensors_discrete_12": ["NULL", "NULL", "NULL", 13],
"i_sensors_discrete_13": ["NULL", "NULL", "NULL", 14],
"i_sensors_discrete_14": ["NULL", "NULL", "NULL", 15],
"i_sensors_discrete_15": ["NULL", "NULL", "NULL", 16],
"i_sensors_discrete_16": ["NULL", "NULL", "NULL", 17],
"i_sensors_discrete_17": ["NULL", "NULL", "NULL", 18],
"i_sensors_discrete_18": ["NULL", "NULL", "NULL", 19],
"i_sensors_discrete_19": ["NULL", "NULL", "NULL", 20],
"i_sensors_discrete_20": ["NULL", "NULL", "NULL", 21],
"i_sensors_discrete_21": ["NULL", "NULL", "NULL", 22],
"i_sensors_discrete_22": ["NULL", "NULL", "NULL", 23],
"i_sensors_discrete_23": ["NULL", "NULL", "NULL", 24],
"i_sensors_discrete_24": ["NULL", "NULL", "NULL", 25],
"i_sensors_discrete_25": ["NULL", "NULL", "NULL", 26],
"i_sensors_discrete_26": ["NULL", "NULL", "NULL", 27],
"i_sensors_discrete_27": ["NULL", "NULL", "NULL", 28],
"i_sensors_discrete_28": ["NULL", "NULL", "NULL", 29],
"i_sensors_discrete_29": ["NULL", "NULL", "NULL", 30],
"i_sensors_discrete_30": ["NULL", "NULL", "NULL", 31],
"i_sensors_discrete_31": ["NULL", "NULL", "NULL", 32],
"i_sensors_discrete_32": ["NULL", "NULL", "NULL", 33],
"i_sensors_discrete_33": ["NULL", "NULL", "NULL", 34],
"i_sensors_discrete_34": ["NULL", "NULL", "NULL", 35],
"i_sensors_discrete_35": ["NULL", "NULL", "NULL", 36],
"i_sensors_discrete_36": ["NULL", "NULL", "NULL", 37],
"i_sensors_discrete_37": ["NULL", "NULL", "NULL", 38],
"i_sensors_discrete_38": ["NULL", "NULL", "NULL", 39],
"i_sensors_discrete_39": ["NULL", "NULL", "NULL", 40],
"i_sensors_discrete_40": ["NULL", "NULL", "NULL", 41],
"i_sensors_discrete_41": ["NULL", "NULL", "NULL", 42],
"i_sensors_discrete_42": ["NULL", "NULL", "NULL", 43],
"i_sensors_discrete_43": ["NULL", "NULL", "NULL", 44],
"i_sensors_discrete_44": ["NULL", "NULL", "NULL", 45],
"i_sensors_discrete_45": ["NULL", "NULL", "NULL", 46],
"i_sensors_discrete_46": ["NULL", "NULL", "NULL", 47],
"i_sensors_discrete_47": ["NULL", "NULL", "NULL", 48],
"i_sensors_discrete_48": ["NULL", "NULL", "NULL", 49],
"i_sensors_discrete_49": ["NULL", "NULL", "NULL", 50],
"i_sensors_discrete_50": ["NULL", "NULL", "NULL", 51],
"i_sensors_discrete_51": ["NULL", "NULL", "NULL", 52],
"i_sensors_discrete_52": ["NULL", "NULL", "NULL", 53],
"i_sensors_discrete_53": ["NULL", "NULL", "NULL", 54],
"i_sensors_discrete_54": ["NULL", "NULL", "NULL", 55],
"i_sensors_discrete_55": ["NULL", "NULL", "NULL", 56],
"i_sensors_discrete_56": ["NULL", "NULL", "NULL", 57],
"i_sensors_discrete_57": ["NULL", "NULL", "NULL", 58],
"i_sensors_discrete_58": ["NULL", "NULL", "NULL", 59],
"i_sensors_discrete_59": ["NULL", "NULL", "NULL", 60],
"i_sensors_discrete_60": ["NULL", "NULL", "NULL", 61],
"i_sensors_discrete_61": ["NULL", "NULL", "NULL", 62],
"i_sensors_discrete_62": ["NULL", "NULL", "NULL", 63],
"i_sensors_discrete_63": ["NULL", "NULL", "NULL", 64],
"i_sensors_discrete_64": ["NULL", "NULL", "NULL", 65],
"i_sensors_discrete_65": ["NULL", "NULL", "NULL", 66],
"i_sensors_discrete_66": ["NULL", "NULL", "NULL", 67],
"i_sensors_discrete_67": ["NULL", "NULL", "NULL", 68],
"i_sensors_discrete_68": ["NULL", "NULL", "NULL", 69],
"i_sensors_discrete_69": ["NULL", "NULL", "NULL", 70],
"i_sensors_discrete_70": ["NULL", "NULL", "NULL", 71],
"i_sensors_discrete_71": ["NULL", "NULL", "NULL", 72],
"i_sensors_discrete_72": ["NULL", "NULL", "NULL", 73],
"i_sensors_discrete_73": ["NULL", "NULL", "NULL", 74],
"i_sensors_discrete_74": ["NULL", "NULL", "NULL", 75],
"i_sensors_discrete_75": ["NULL", "NULL", "NULL", 76]
}

View File

@ -1,3 +0,0 @@
{
"i_system_0": ["2018-04-11 15:32:39.919912", "2018-05-16 21:04:53.427686", "NULL", 1, "51ecfab9-400e-41c9-b679-2c6ba37f1099", "Distributed-Cloud-Lab", "System_Controller: setup by lab_setup.sh", "{"https_enabled": false, "vswitch_type": "avs", "region_config": false, "sdn_enabled": false, "shared_services": "[]"}", "NULL", "Ottawa-PheonixLab-Aisle_3-Rack_A", 72, "18.03", "Standard", "duplex", "UTC", "standard", "RegionOne", "services", "systemcontroller"]
}

View File

@ -1,3 +0,0 @@
{
"i_user_0": ["2018-04-11 15:32:39.923168", "2018-04-11 15:44:42.153281", "NULL", 1, "a631812f-baf1-48e4-8328-1cf4a8418572", "c4decacb98ead527b91afeb0cec1e634", "NULL", "NULL", "NULL", 1, "$6$1sSJbEL3$opfSrh4/pzPW8TdNeTm2CAkxGXTAbPUU08SgpWtdbbH.o1bW3LIYpNRmStbfCuItvlQ9Coujo.ktxFjFFkgey/", 45]
}

View File

@ -1,20 +0,0 @@
{
"interfaces_0": ["2018-04-11 15:33:38.540065", "NULL", "NULL", 2, "2fc56a3e-2e1a-4830-b8fd-a508b5f558a4", 1, "ethernet", "enp3s0f3", "NULL", "NULL", "NULL", "NULL"],
"interfaces_1": ["2018-04-11 15:33:38.588309", "NULL", "NULL", 3, "96dd1a3b-a3b6-459a-8f4a-14f63e77430e", 1, "ethernet", "ens785f0", "NULL", "NULL", "NULL", "NULL"],
"interfaces_2": ["2018-04-11 15:33:38.63678", "NULL", "NULL", 4, "a471bb81-c7ea-492f-a82f-9bdab34164e2", 1, "ethernet", "ens785f1", "NULL", "NULL", "NULL", "NULL"],
"interfaces_3": ["2018-04-11 15:33:38.685778", "NULL", "NULL", 5, "421b0159-211a-42ba-b09a-69b8e6415947", 1, "ethernet", "ens785f2", "NULL", "NULL", "NULL", "NULL"],
"interfaces_4": ["2018-04-11 15:33:38.734062", "NULL", "NULL", 6, "03cbcf8a-5c78-490e-9b12-f38e66429ff4", 1, "ethernet", "ens785f3", "NULL", "NULL", "NULL", "NULL"],
"interfaces_5": ["2018-04-11 15:33:38.830606", "NULL", "NULL", 8, "496fb63d-d649-41cf-b445-d74de1931ab8", 1, "ethernet", "ens801f1", "NULL", "NULL", "NULL", "NULL"],
"interfaces_6": ["2018-04-11 15:33:38.782463", "2018-04-11 15:34:00.614247", "NULL", 7, "e0057166-5d4c-4673-8c5a-0fd940be6875", 1, "ethernet", "ens801f0", "pxeboot", 0, "NULL", "NULL"],
"interfaces_7": ["2018-04-11 15:34:01.126331", "NULL", "NULL", 9, "6935a406-570b-457d-8400-aad4f13d2a18", 1, "vlan", "ens801f0.133", "mgmt", 0, "NULL", "NULL"],
"interfaces_8": ["2018-04-11 15:33:38.471122", "2018-04-11 15:34:02.197169", "NULL", 1, "b78b4c99-197b-4078-be85-9273eed33c56", 1, "ethernet", "eno1", "oam", 0, "NULL", "NULL"],
"interfaces_9": ["2018-04-11 17:11:14.92829", "NULL", "NULL", 11, "c09bba5d-69ed-47b4-9553-b598f0b2280d", 2, "ethernet", "enp3s0f3", "NULL", "NULL", "NULL", "NULL"],
"interfaces_10": ["2018-04-11 17:11:14.988133", "NULL", "NULL", 12, "a276f617-fe32-4b2d-8099-1db845b10904", 2, "ethernet", "ens785f0", "NULL", "NULL", "NULL", "NULL"],
"interfaces_11": ["2018-04-11 17:11:15.048478", "NULL", "NULL", 13, "c9951c01-f4e8-4d51-8c7e-fe1d80eeffb2", 2, "ethernet", "ens785f1", "NULL", "NULL", "NULL", "NULL"],
"interfaces_12": ["2018-04-11 17:11:15.106918", "NULL", "NULL", 14, "9069e9c5-47d1-43b1-a252-dd1d912e07a9", 2, "ethernet", "ens785f2", "NULL", "NULL", "NULL", "NULL"],
"interfaces_13": ["2018-04-11 17:11:15.165828", "NULL", "NULL", 15, "a84358ca-5ac0-4667-8521-9cb38590023f", 2, "ethernet", "ens785f3", "NULL", "NULL", "NULL", "NULL"],
"interfaces_14": ["2018-04-11 17:11:15.224274", "NULL", "NULL", 16, "44f27af2-a8fa-4e5a-acf6-66020dcefb5c", 2, "ethernet", "pxeboot0", "pxeboot", "NULL", "NULL", "NULL"],
"interfaces_15": ["2018-04-11 17:11:15.270051", "NULL", "NULL", 17, "bbb9e208-1f0a-4193-8233-f9a1cbb23437", 2, "vlan", "mgmt0", "mgmt", "NULL", "NULL", "NULL"],
"interfaces_16": ["2018-04-11 17:11:15.476387", "NULL", "NULL", 18, "2cb578f6-e693-449f-9c1e-1d038e8d3694", 2, "ethernet", "ens801f1", "NULL", "NULL", "NULL", "NULL"],
"interfaces_17": ["2018-04-11 17:11:14.858777", "2018-04-11 17:36:11.31691", "NULL", 10, "11c0cc6f-ab99-47cb-8396-1bf0e8448a7a", 2, "ethernet", "oam0", "oam", 0, "NULL", "NULL"]
}

View File

@ -1,4 +0,0 @@
{
"interfaces_to_interfaces_0": [7, 9],
"interfaces_to_interfaces_1": [16, 17]
}

View File

@ -1,18 +0,0 @@
{
"lldp_agents_0": ["2018-04-11 15:51:26.318956", "NULL", "NULL", 1, "010de782-c80a-456c-87ee-598d4045aa2d", 1, 3, "rx=enabled,tx=enabled"],
"lldp_agents_1": ["2018-04-11 15:51:26.684301", "NULL", "NULL", 2, "14c8db49-f511-4684-9e9a-f3f97a026418", 1, 4, "rx=enabled,tx=enabled"],
"lldp_agents_2": ["2018-04-11 15:51:27.615927", "NULL", "NULL", 3, "f728b9a8-5c54-4830-90e6-f0654b4a28de", 1, 5, "rx=enabled,tx=enabled"],
"lldp_agents_3": ["2018-04-11 15:51:27.865353", "NULL", "NULL", 4, "5b5c8007-8488-43a4-b733-2c22b1447c28", 1, 1, "rx=enabled,tx=enabled"],
"lldp_agents_4": ["2018-04-11 15:51:28.22479", "NULL", "NULL", 5, "e765fb39-cb4d-40a8-bc16-b267f1cd4895", 1, 6, "rx=enabled,tx=enabled"],
"lldp_agents_5": ["2018-04-11 15:51:28.473039", "NULL", "NULL", 6, "13249556-4e8a-4771-a0e4-3532e9c074f9", 1, 7, "rx=enabled,tx=enabled"],
"lldp_agents_6": ["2018-04-11 15:51:28.746624", "NULL", "NULL", 7, "6cad1c0c-62dd-42b8-a152-35555c28f8fb", 1, 2, "rx=enabled,tx=enabled"],
"lldp_agents_7": ["2018-04-11 15:51:29.000971", "NULL", "NULL", 8, "cb8a7854-bd10-432b-a3e9-223470004697", 1, 8, "rx=enabled,tx=enabled"],
"lldp_agents_8": ["2018-04-11 17:17:13.981681", "NULL", "NULL", 9, "0610d1f4-a06b-45d3-a7eb-2b39a55f0231", 2, 11, "rx=enabled,tx=enabled"],
"lldp_agents_9": ["2018-04-11 17:17:14.2313", "NULL", "NULL", 10, "c7572fa4-3d0d-4601-9299-997d882c199b", 2, 12, "rx=enabled,tx=enabled"],
"lldp_agents_10": ["2018-04-11 17:17:14.476722", "NULL", "NULL", 11, "61c040f2-e063-4cf7-b061-13a283526cfb", 2, 13, "rx=enabled,tx=enabled"],
"lldp_agents_11": ["2018-04-11 17:17:14.726512", "NULL", "NULL", 12, "791576d5-94e2-4703-8def-67f1518de530", 2, 9, "rx=enabled,tx=enabled"],
"lldp_agents_12": ["2018-04-11 17:17:15.074982", "NULL", "NULL", 13, "126db5e7-a3f4-4a62-906f-104cc883e756", 2, 14, "rx=enabled,tx=enabled"],
"lldp_agents_13": ["2018-04-11 17:17:15.321967", "NULL", "NULL", 14, "1d19c57b-cdc7-4e17-90de-9782909d0c6f", 2, 15, "rx=enabled,tx=enabled"],
"lldp_agents_14": ["2018-04-11 17:17:15.59029", "NULL", "NULL", 15, "7aed93cf-cbd5-44e9-8844-3024c19f6730", 2, 10, "rx=enabled,tx=enabled"],
"lldp_agents_15": ["2018-04-11 17:17:15.846391", "NULL", "NULL", 16, "0df37546-9fed-4ccb-a1c1-a97f44bb4311", 2, 16, "rx=enabled,tx=enabled"]
}

View File

@ -1,6 +0,0 @@
{
"lldp_neighbours_0": ["2018-04-17 15:29:20.259636", "NULL", "NULL", 5, "75144a26-7909-406b-998d-178fffe4d67d", 1, 1, "e8:ba:70:1e:f7:80,Gi1/0/19"],
"lldp_neighbours_1": ["2018-04-17 17:44:28.200456", "NULL", "NULL", 6, "35f9f127-d51c-407b-ae85-fe27b8792621", 2, 9, "e8:ba:70:1e:f7:80,Gi1/0/20"],
"lldp_neighbours_2": ["2018-05-18 17:54:58.480967", "NULL", "NULL", 10, "9f20939f-a95f-42dc-ab19-8a122e9973e1", 1, 7, "54:ab:3a:05:7f:5e,yow-cgcs-wildcat-90, mgmt0+infra0"],
"lldp_neighbours_3": ["2018-05-18 17:55:30.142751", "NULL", "NULL", 12, "1f7ade25-9566-4efe-a3e7-5bcdad5a79de", 2, 15, "54:ab:3a:05:7f:5e,yow-cgcs-wildcat-91, mgmt0+infra0"]
}

View File

@ -1,198 +0,0 @@
{
"lldp_tlvs_0": ["2018-04-11 15:51:28.51652", "2018-05-16 21:04:54.715897", "NULL", 71, 6, "NULL", "system_name", "controller-0:Distributed-Cloud-Lab"],
"lldp_tlvs_1": ["2018-04-11 15:51:26.759814", "2018-05-16 21:04:54.888698", "NULL", 35, 2, "NULL", "system_name", "controller-0:Distributed-Cloud-Lab"],
"lldp_tlvs_2": ["2018-04-11 15:51:27.654128", "2018-05-16 21:04:55.25446", "NULL", 44, 3, "NULL", "system_name", "controller-0:Distributed-Cloud-Lab"],
"lldp_tlvs_3": ["2018-04-11 15:51:28.264126", "2018-05-16 21:04:55.412587", "NULL", 62, 5, "NULL", "system_name", "controller-0:Distributed-Cloud-Lab"],
"lldp_tlvs_4": ["2018-04-11 15:51:29.039733", "2018-05-16 21:04:55.578327", "NULL", 90, 8, "NULL", "system_name", "controller-0:Distributed-Cloud-Lab"],
"lldp_tlvs_5": ["2018-04-11 15:51:27.903468", "2018-05-16 21:04:54.244292", "NULL", 53, 4, "NULL", "system_name", "controller-0:Distributed-Cloud-Lab"],
"lldp_tlvs_6": ["2018-04-11 15:51:28.787928", "2018-05-16 21:04:54.554172", "NULL", 81, 7, "NULL", "system_name", "controller-0:Distributed-Cloud-Lab"],
"lldp_tlvs_7": ["2018-04-11 15:51:26.418331", "NULL", "NULL", 27, 1, "NULL", "port_description", "ens785f0"],
"lldp_tlvs_8": ["2018-04-11 15:51:26.506982", "NULL", "NULL", 30, 1, "NULL", "ttl", "120"],
"lldp_tlvs_9": ["2018-04-11 15:51:26.532507", "NULL", "NULL", 31, 1, "NULL", "port_identifier", "3c:fd:fe:9f:6f:08"],
"lldp_tlvs_10": ["2018-04-11 15:51:26.558776", "NULL", "NULL", 32, 1, "NULL", "system_capabilities", "station"],
"lldp_tlvs_11": ["2018-04-11 15:51:26.586886", "NULL", "NULL", 33, 1, "NULL", "chassis_id", "3c:fd:fe:9f:6f:08"],
"lldp_tlvs_12": ["2018-04-11 15:51:26.6131", "NULL", "NULL", 34, 1, "NULL", "dot1_lag", "capable=y,enabled=n"],
"lldp_tlvs_13": ["2018-04-11 15:51:26.858658", "NULL", "NULL", 36, 2, "NULL", "port_description", "ens785f1"],
"lldp_tlvs_14": ["2018-04-11 15:51:27.488618", "NULL", "NULL", 39, 2, "NULL", "ttl", "120"],
"lldp_tlvs_15": ["2018-04-11 15:51:27.509004", "NULL", "NULL", 40, 2, "NULL", "port_identifier", "3c:fd:fe:9f:6f:09"],
"lldp_tlvs_16": ["2018-04-11 15:51:27.530022", "NULL", "NULL", 41, 2, "NULL", "system_capabilities", "station"],
"lldp_tlvs_17": ["2018-04-11 15:51:27.5512", "NULL", "NULL", 42, 2, "NULL", "chassis_id", "3c:fd:fe:9f:6f:08"],
"lldp_tlvs_18": ["2018-04-11 15:51:27.571397", "NULL", "NULL", 43, 2, "NULL", "dot1_lag", "capable=y,enabled=n"],
"lldp_tlvs_19": ["2018-04-11 15:51:27.676711", "NULL", "NULL", 45, 3, "NULL", "port_description", "ens785f2"],
"lldp_tlvs_20": ["2018-04-11 15:51:27.739275", "NULL", "NULL", 48, 3, "NULL", "ttl", "120"],
"lldp_tlvs_21": ["2018-04-11 15:51:27.759437", "NULL", "NULL", 49, 3, "NULL", "port_identifier", "3c:fd:fe:9f:6f:0a"],
"lldp_tlvs_22": ["2018-04-11 15:51:27.77917", "NULL", "NULL", 50, 3, "NULL", "system_capabilities", "station"],
"lldp_tlvs_23": ["2018-04-11 15:51:27.800927", "NULL", "NULL", 51, 3, "NULL", "chassis_id", "3c:fd:fe:9f:6f:08"],
"lldp_tlvs_24": ["2018-04-11 15:51:27.821369", "NULL", "NULL", 52, 3, "NULL", "dot1_lag", "capable=y,enabled=n"],
"lldp_tlvs_25": ["2018-04-11 15:51:28.032604", "NULL", "NULL", 54, 4, "NULL", "port_description", "eno1"],
"lldp_tlvs_26": ["2018-04-11 15:51:28.09343", "NULL", "NULL", 57, 4, "NULL", "ttl", "120"],
"lldp_tlvs_27": ["2018-04-11 15:51:28.115112", "NULL", "NULL", 58, 4, "NULL", "port_identifier", "a4:bf:01:01:b6:ae"],
"lldp_tlvs_28": ["2018-04-11 15:51:28.135287", "NULL", "NULL", 59, 4, "NULL", "system_capabilities", "station"],
"lldp_tlvs_29": ["2018-04-11 15:51:28.15556", "NULL", "NULL", 60, 4, "NULL", "chassis_id", "3c:fd:fe:9f:6f:08"],
"lldp_tlvs_30": ["2018-04-11 15:51:28.178572", "NULL", "NULL", 61, 4, "NULL", "dot1_lag", "capable=y,enabled=n"],
"lldp_tlvs_31": ["2018-04-11 15:51:28.286851", "NULL", "NULL", 63, 5, "NULL", "port_description", "ens785f3"],
"lldp_tlvs_32": ["2018-04-11 15:51:28.348028", "NULL", "NULL", 66, 5, "NULL", "ttl", "120"],
"lldp_tlvs_33": ["2018-04-11 15:51:28.367588", "NULL", "NULL", 67, 5, "NULL", "port_identifier", "3c:fd:fe:9f:6f:0b"],
"lldp_tlvs_34": ["2018-04-11 15:51:28.387421", "NULL", "NULL", 68, 5, "NULL", "system_capabilities", "station"],
"lldp_tlvs_35": ["2018-04-11 15:51:28.408891", "NULL", "NULL", 69, 5, "NULL", "chassis_id", "3c:fd:fe:9f:6f:08"],
"lldp_tlvs_36": ["2018-04-11 15:51:28.429438", "NULL", "NULL", 70, 5, "NULL", "dot1_lag", "capable=y,enabled=n"],
"lldp_tlvs_37": ["2018-04-11 15:51:28.53719", "NULL", "NULL", 72, 6, "NULL", "port_description", "ens801f0"],
"lldp_tlvs_38": ["2018-04-11 15:51:28.557898", "NULL", "NULL", 73, 6, "NULL", "dot1_vlan_names", "ens801f0.133"],
"lldp_tlvs_39": ["2018-04-11 15:51:28.620788", "NULL", "NULL", 76, 6, "NULL", "ttl", "120"],
"lldp_tlvs_40": ["2018-04-11 15:51:28.642739", "NULL", "NULL", 77, 6, "NULL", "port_identifier", "90:e2:ba:b0:df:d0"],
"lldp_tlvs_41": ["2018-04-11 15:51:28.662583", "NULL", "NULL", 78, 6, "NULL", "system_capabilities", "station"],
"lldp_tlvs_42": ["2018-04-11 15:51:28.682311", "NULL", "NULL", 79, 6, "NULL", "chassis_id", "3c:fd:fe:9f:6f:08"],
"lldp_tlvs_43": ["2018-04-11 15:51:28.703709", "NULL", "NULL", 80, 6, "NULL", "dot1_lag", "capable=y,enabled=n"],
"lldp_tlvs_44": ["2018-04-11 15:51:28.807618", "NULL", "NULL", 82, 7, "NULL", "port_description", "enp3s0f3"],
"lldp_tlvs_45": ["2018-04-11 15:51:28.871202", "NULL", "NULL", 85, 7, "NULL", "ttl", "120"],
"lldp_tlvs_46": ["2018-04-11 15:51:28.89333", "NULL", "NULL", 86, 7, "NULL", "port_identifier", "a4:bf:01:01:b6:af"],
"lldp_tlvs_47": ["2018-04-11 15:51:28.913319", "NULL", "NULL", 87, 7, "NULL", "system_capabilities", "station"],
"lldp_tlvs_48": ["2018-04-11 15:51:28.93343", "NULL", "NULL", 88, 7, "NULL", "chassis_id", "3c:fd:fe:9f:6f:08"],
"lldp_tlvs_49": ["2018-04-11 15:51:28.955552", "NULL", "NULL", 89, 7, "NULL", "dot1_lag", "capable=y,enabled=n"],
"lldp_tlvs_50": ["2018-04-11 15:51:29.062455", "NULL", "NULL", 91, 8, "NULL", "port_description", "ens801f1"],
"lldp_tlvs_51": ["2018-04-11 15:51:29.123967", "NULL", "NULL", 94, 8, "NULL", "ttl", "120"],
"lldp_tlvs_52": ["2018-04-11 15:51:29.143663", "NULL", "NULL", 95, 8, "NULL", "port_identifier", "90:e2:ba:b0:df:d1"],
"lldp_tlvs_53": ["2018-04-11 15:51:29.163511", "NULL", "NULL", 96, 8, "NULL", "system_capabilities", "station"],
"lldp_tlvs_54": ["2018-04-11 15:51:28.306714", "2018-04-17 15:29:21.526998", "NULL", 64, 5, "NULL", "management_address", "128.224.151.151, fd01:1::3"],
"lldp_tlvs_55": ["2018-04-17 15:29:20.306434", "NULL", "NULL", 197, "NULL", 5, "system_name", "yow-cisco-b2u45"],
"lldp_tlvs_56": ["2018-04-11 15:51:28.052293", "2018-04-17 15:29:21.012125", "NULL", 55, 4, "NULL", "management_address", "128.224.151.151, fd01:1::3"],
"lldp_tlvs_57": ["2018-04-11 15:51:28.580375", "2018-04-17 15:29:21.220153", "NULL", 74, 6, "NULL", "management_address", "128.224.151.151, fd01:1::3"],
"lldp_tlvs_58": ["2018-04-11 15:51:28.60022", "2018-04-17 15:29:21.238839", "NULL", 75, 6, "NULL", "system_description", "Titanium Cloud version 18.03"],
"lldp_tlvs_59": ["2018-04-11 15:51:28.326592", "2018-04-17 15:29:21.547299", "NULL", 65, 5, "NULL", "system_description", "Titanium Cloud version 18.03"],
"lldp_tlvs_60": ["2018-04-11 15:51:27.444682", "2018-04-17 15:29:21.116676", "NULL", 37, 2, "NULL", "management_address", "128.224.151.151, fd01:1::3"],
"lldp_tlvs_61": ["2018-04-11 15:51:27.465738", "2018-04-17 15:29:21.135522", "NULL", 38, 2, "NULL", "system_description", "Titanium Cloud version 18.03"],
"lldp_tlvs_62": ["2018-04-11 15:51:29.082001", "2018-04-17 15:29:21.635786", "NULL", 92, 8, "NULL", "management_address", "128.224.151.151, fd01:1::3"],
"lldp_tlvs_63": ["2018-04-11 15:51:29.102313", "2018-04-17 15:29:21.654624", "NULL", 93, 8, "NULL", "system_description", "Titanium Cloud version 18.03"],
"lldp_tlvs_64": ["2018-04-11 15:51:28.830696", "2018-04-17 15:29:21.322966", "NULL", 83, 7, "NULL", "management_address", "128.224.151.151, fd01:1::3"],
"lldp_tlvs_65": ["2018-04-11 15:51:28.851107", "2018-04-17 15:29:21.341487", "NULL", 84, 7, "NULL", "system_description", "Titanium Cloud version 18.03"],
"lldp_tlvs_66": ["2018-04-11 15:51:27.697025", "2018-04-17 15:29:21.425968", "NULL", 46, 3, "NULL", "management_address", "128.224.151.151, fd01:1::3"],
"lldp_tlvs_67": ["2018-04-11 15:51:27.71713", "2018-04-17 15:29:21.443852", "NULL", 47, 3, "NULL", "system_description", "Titanium Cloud version 18.03"],
"lldp_tlvs_68": ["2018-04-17 17:44:28.419847", "NULL", "NULL", 209, "NULL", 6, "system_name", "yow-cisco-b2u45"],
"lldp_tlvs_69": ["2018-04-17 17:44:28.440466", "NULL", "NULL", 210, "NULL", 6, "dot1_port_vid", "103"],
"lldp_tlvs_70": ["2018-04-17 15:29:20.325824", "NULL", "NULL", 198, "NULL", 5, "dot1_port_vid", "103"],
"lldp_tlvs_71": ["2018-04-17 15:29:20.344472", "NULL", "NULL", 199, "NULL", 5, "port_description", "GigabitEthernet1/0/19"],
"lldp_tlvs_72": ["2018-04-17 15:29:20.364241", "NULL", "NULL", 200, "NULL", 5, "dot1_vlan_names", ""],
"lldp_tlvs_73": ["2018-04-17 15:29:20.382621", "NULL", "NULL", 201, "NULL", 5, "system_description", "Cisco IOS Software, C2960S Software (C2960S-UNIVERSALK9-M), Version 15.0(2)SE10a, RELEASE SOFTWARE (fc3)],
"lldp_tlvs_74": ["2018-04-17 17:44:28.46055", "NULL", "NULL", 211, "NULL", 6, "port_description", "GigabitEthernet1/0/20"],
"lldp_tlvs_75": ["2018-04-17 17:44:28.483456", "NULL", "NULL", 212, "NULL", 6, "dot1_vlan_names", ""],
"lldp_tlvs_76": ["2018-04-17 17:44:28.509263", "NULL", "NULL", 213, "NULL", 6, "system_description", "Cisco IOS Software, C2960S Software (C2960S-UNIVERSALK9-M), Version 15.0(2)SE10a, RELEASE SOFTWARE (fc3)],
"lldp_tlvs_77": ["2018-04-17 17:44:28.545293", "NULL", "NULL", 214, "NULL", 6, "dot3_mac_status", "auto-negotiation-capable=y,auto-negotiation-enabled=y,10base-tfd, 100base-txfd, 1000base-tfd"],
"lldp_tlvs_78": ["2018-04-11 15:51:29.185581", "NULL", "NULL", 97, 8, "NULL", "chassis_id", "3c:fd:fe:9f:6f:08"],
"lldp_tlvs_79": ["2018-04-11 15:51:29.20581", "NULL", "NULL", 98, 8, "NULL", "dot1_lag", "capable=y,enabled=n"],
"lldp_tlvs_80": ["2018-04-17 15:29:20.499284", "2018-05-28 17:28:18.518841", "NULL", 207, "NULL", 5, "ttl", "94"],
"lldp_tlvs_81": ["2018-05-18 17:55:30.243315", "2018-05-28 17:40:10.230892", "NULL", 262, "NULL", 12, "ttl", "97"],
"lldp_tlvs_82": ["2018-04-11 17:17:14.516098", "2018-05-16 21:04:54.66257", "NULL", 130, 11, "NULL", "system_name", "controller-1:Distributed-Cloud-Lab"],
"lldp_tlvs_83": ["2018-05-18 17:55:30.183363", "NULL", "NULL", 259, "NULL", 12, "port_identifier", "yow-cgcs-wildcat-91, mgmt0+infra0"],
"lldp_tlvs_84": ["2018-05-18 17:55:30.202767", "NULL", "NULL", 260, "NULL", 12, "dot1_lag", "capable=y,enabled=n"],
"lldp_tlvs_85": ["2018-05-18 17:55:30.222121", "NULL", "NULL", 261, "NULL", 12, "chassis_id", "54:ab:3a:05:7f:5e"],
"lldp_tlvs_86": ["2018-05-18 18:01:30.317788", "NULL", "NULL", 272, "NULL", 12, "system_name", "yow-cgcs-quanta-7"],
"lldp_tlvs_87": ["2018-05-18 18:01:30.337012", "NULL", "NULL", 273, "NULL", 12, "dot1_port_vid", "132"],
"lldp_tlvs_88": ["2018-05-18 18:01:30.418513", "2018-05-18 18:20:44.378225", "NULL", 277, "NULL", 12, "system_description", "LY2R, Runtime Code 5.4.05.00, Linux 3.8.13-rt9, U-Boot 2010.12 (Feb 10 2015 - 10:01:12) - ONIE 2014.05.03-d"],
"lldp_tlvs_89": ["2018-04-11 17:17:14.04255", "NULL", "NULL", 113, 9, "NULL", "port_description", "ens785f0"],
"lldp_tlvs_90": ["2018-04-11 15:51:26.396145", "2018-05-16 21:04:54.025332", "NULL", 26, 1, "NULL", "system_name", "controller-0:Distributed-Cloud-Lab"],
"lldp_tlvs_91": ["2018-04-11 17:17:14.105334", "NULL", "NULL", 116, 9, "NULL", "ttl", "120"],
"lldp_tlvs_92": ["2018-04-11 17:17:14.126605", "NULL", "NULL", 117, 9, "NULL", "port_identifier", "3c:fd:fe:9f:74:c8"],
"lldp_tlvs_93": ["2018-04-11 17:17:14.145793", "NULL", "NULL", 118, 9, "NULL", "system_capabilities", "station"],
"lldp_tlvs_94": ["2018-04-11 17:17:14.165828", "NULL", "NULL", 119, 9, "NULL", "chassis_id", "3c:fd:fe:9f:74:c8"],
"lldp_tlvs_95": ["2018-04-11 17:17:14.187199", "NULL", "NULL", 120, 9, "NULL", "dot1_lag", "capable=y,enabled=n"],
"lldp_tlvs_96": ["2018-04-11 17:17:14.291361", "NULL", "NULL", 122, 10, "NULL", "port_description", "ens785f1"],
"lldp_tlvs_97": ["2018-04-11 17:17:14.351333", "NULL", "NULL", 125, 10, "NULL", "ttl", "120"],
"lldp_tlvs_98": ["2018-04-11 17:17:14.371112", "NULL", "NULL", 126, 10, "NULL", "port_identifier", "3c:fd:fe:9f:74:c9"],
"lldp_tlvs_99": ["2018-04-11 17:17:14.391033", "NULL", "NULL", 127, 10, "NULL", "system_capabilities", "station"],
"lldp_tlvs_100": ["2018-04-11 17:17:14.413831", "NULL", "NULL", 128, 10, "NULL", "chassis_id", "3c:fd:fe:9f:74:c8"],
"lldp_tlvs_101": ["2018-04-11 17:17:14.433521", "NULL", "NULL", 129, 10, "NULL", "dot1_lag", "capable=y,enabled=n"],
"lldp_tlvs_102": ["2018-04-11 17:17:14.538397", "NULL", "NULL", 131, 11, "NULL", "port_description", "ens785f2"],
"lldp_tlvs_103": ["2018-04-11 17:17:14.601126", "NULL", "NULL", 134, 11, "NULL", "ttl", "120"],
"lldp_tlvs_104": ["2018-04-11 17:17:14.620921", "NULL", "NULL", 135, 11, "NULL", "port_identifier", "3c:fd:fe:9f:74:ca"],
"lldp_tlvs_105": ["2018-04-11 17:17:14.641948", "NULL", "NULL", 136, 11, "NULL", "system_capabilities", "station"],
"lldp_tlvs_106": ["2018-04-11 17:17:14.662088", "NULL", "NULL", 137, 11, "NULL", "chassis_id", "3c:fd:fe:9f:74:c8"],
"lldp_tlvs_107": ["2018-04-11 17:17:14.681618", "NULL", "NULL", 138, 11, "NULL", "dot1_lag", "capable=y,enabled=n"],
"lldp_tlvs_108": ["2018-04-11 17:17:14.886763", "NULL", "NULL", 140, 12, "NULL", "port_description", "eno1"],
"lldp_tlvs_109": ["2018-04-11 17:17:14.947227", "NULL", "NULL", 143, 12, "NULL", "ttl", "120"],
"lldp_tlvs_110": ["2018-04-11 17:17:14.968879", "NULL", "NULL", 144, 12, "NULL", "port_identifier", "a4:bf:01:01:66:ca"],
"lldp_tlvs_111": ["2018-04-11 17:17:14.988674", "NULL", "NULL", 145, 12, "NULL", "system_capabilities", "station"],
"lldp_tlvs_112": ["2018-04-11 17:17:15.011199", "NULL", "NULL", 146, 12, "NULL", "chassis_id", "3c:fd:fe:9f:74:c8"],
"lldp_tlvs_113": ["2018-04-11 17:17:15.030635", "NULL", "NULL", 147, 12, "NULL", "dot1_lag", "capable=y,enabled=n"],
"lldp_tlvs_114": ["2018-04-11 17:17:15.135308", "NULL", "NULL", 149, 13, "NULL", "port_description", "ens785f3"],
"lldp_tlvs_115": ["2018-04-11 17:17:14.269498", "2018-05-16 21:04:54.46626", "NULL", 121, 10, "NULL", "system_name", "controller-1:Distributed-Cloud-Lab"],
"lldp_tlvs_116": ["2018-04-11 17:17:15.197737", "NULL", "NULL", 152, 13, "NULL", "ttl", "120"],
"lldp_tlvs_117": ["2018-04-11 17:17:15.217731", "NULL", "NULL", 153, 13, "NULL", "port_identifier", "3c:fd:fe:9f:74:cb"],
"lldp_tlvs_118": ["2018-04-11 17:17:15.23658", "NULL", "NULL", 154, 13, "NULL", "system_capabilities", "station"],
"lldp_tlvs_119": ["2018-04-11 17:17:15.258537", "NULL", "NULL", 155, 13, "NULL", "chassis_id", "3c:fd:fe:9f:74:c8"],
"lldp_tlvs_120": ["2018-04-11 17:17:15.278415", "NULL", "NULL", 156, 13, "NULL", "dot1_lag", "capable=y,enabled=n"],
"lldp_tlvs_121": ["2018-04-11 17:17:15.382502", "NULL", "NULL", 158, 14, "NULL", "port_description", "ens801f0"],
"lldp_tlvs_122": ["2018-04-11 17:17:15.402636", "NULL", "NULL", 159, 14, "NULL", "dot1_vlan_names", "ens801f0.133"],
"lldp_tlvs_123": ["2018-04-11 17:17:15.464682", "NULL", "NULL", 162, 14, "NULL", "ttl", "120"],
"lldp_tlvs_124": ["2018-04-11 17:17:15.485802", "NULL", "NULL", 163, 14, "NULL", "port_identifier", "90:e2:ba:b0:e9:f4"],
"lldp_tlvs_125": ["2018-04-11 17:17:15.506362", "NULL", "NULL", 164, 14, "NULL", "system_capabilities", "station"],
"lldp_tlvs_126": ["2018-04-11 17:17:15.526508", "NULL", "NULL", 165, 14, "NULL", "chassis_id", "3c:fd:fe:9f:74:c8"],
"lldp_tlvs_127": ["2018-04-11 17:17:15.548093", "NULL", "NULL", 166, 14, "NULL", "dot1_lag", "capable=y,enabled=n"],
"lldp_tlvs_128": ["2018-04-11 17:17:15.651527", "NULL", "NULL", 168, 15, "NULL", "port_description", "enp3s0f3"],
"lldp_tlvs_129": ["2018-04-11 17:17:15.715391", "NULL", "NULL", 171, 15, "NULL", "ttl", "120"],
"lldp_tlvs_130": ["2018-04-11 17:17:15.737311", "NULL", "NULL", 172, 15, "NULL", "port_identifier", "a4:bf:01:01:66:cb"],
"lldp_tlvs_131": ["2018-04-11 17:17:15.75804", "NULL", "NULL", 173, 15, "NULL", "system_capabilities", "station"],
"lldp_tlvs_132": ["2018-04-11 17:17:15.777956", "NULL", "NULL", 174, 15, "NULL", "chassis_id", "3c:fd:fe:9f:74:c8"],
"lldp_tlvs_133": ["2018-04-11 17:17:15.800516", "NULL", "NULL", 175, 15, "NULL", "dot1_lag", "capable=y,enabled=n"],
"lldp_tlvs_134": ["2018-04-11 17:17:15.910487", "NULL", "NULL", 177, 16, "NULL", "port_description", "ens801f1"],
"lldp_tlvs_135": ["2018-04-11 17:17:15.973174", "NULL", "NULL", 180, 16, "NULL", "ttl", "120"],
"lldp_tlvs_136": ["2018-04-11 17:17:15.99226", "NULL", "NULL", 181, 16, "NULL", "port_identifier", "90:e2:ba:b0:e9:f5"],
"lldp_tlvs_137": ["2018-04-11 17:17:16.012351", "NULL", "NULL", 182, 16, "NULL", "system_capabilities", "station"],
"lldp_tlvs_138": ["2018-04-11 17:17:16.033553", "NULL", "NULL", 183, 16, "NULL", "chassis_id", "3c:fd:fe:9f:74:c8"],
"lldp_tlvs_139": ["2018-04-11 17:17:16.053695", "NULL", "NULL", 184, 16, "NULL", "dot1_lag", "capable=y,enabled=n"],
"lldp_tlvs_140": ["2018-04-11 17:17:14.86661", "2018-05-16 21:04:54.852016", "NULL", 139, 12, "NULL", "system_name", "controller-1:Distributed-Cloud-Lab"],
"lldp_tlvs_141": ["2018-04-11 17:17:14.023215", "2018-05-16 21:04:54.115524", "NULL", 112, 9, "NULL", "system_name", "controller-1:Distributed-Cloud-Lab"],
"lldp_tlvs_142": ["2018-04-11 17:17:15.63157", "2018-05-16 21:04:55.424585", "NULL", 167, 15, "NULL", "system_name", "controller-1:Distributed-Cloud-Lab"],
"lldp_tlvs_143": ["2018-04-11 17:17:15.363371", "2018-05-16 21:04:55.618947", "NULL", 157, 14, "NULL", "system_name", "controller-1:Distributed-Cloud-Lab"],
"lldp_tlvs_144": ["2018-04-11 17:17:15.424575", "2018-04-17 17:44:29.231506", "NULL", 160, 14, "NULL", "management_address", "128.224.151.153, fd01:1::4"],
"lldp_tlvs_145": ["2018-04-11 17:17:15.886527", "2018-05-16 21:04:55.730124", "NULL", 176, 16, "NULL", "system_name", "controller-1:Distributed-Cloud-Lab"],
"lldp_tlvs_146": ["2018-04-11 17:17:14.559094", "2018-04-17 17:44:30.775347", "NULL", 132, 11, "NULL", "management_address", "128.224.151.153, fd01:1::4"],
"lldp_tlvs_147": ["2018-04-11 17:17:15.155492", "2018-04-17 17:44:31.512547", "NULL", 150, 13, "NULL", "management_address", "128.224.151.153, fd01:1::4"],
"lldp_tlvs_148": ["2018-04-11 17:17:15.113587", "2018-05-16 21:04:55.220538", "NULL", 148, 13, "NULL", "system_name", "controller-1:Distributed-Cloud-Lab"],
"lldp_tlvs_149": ["2018-04-11 17:17:14.31052", "2018-04-17 17:44:29.343832", "NULL", 123, 10, "NULL", "management_address", "128.224.151.153, fd01:1::4"],
"lldp_tlvs_150": ["2018-04-11 17:17:15.930707", "2018-04-17 17:44:31.799391", "NULL", 178, 16, "NULL", "management_address", "128.224.151.153, fd01:1::4"],
"lldp_tlvs_151": ["2018-04-11 17:17:15.673998", "2018-04-17 17:44:29.977574", "NULL", 169, 15, "NULL", "management_address", "128.224.151.153, fd01:1::4"],
"lldp_tlvs_152": ["2018-04-11 17:17:15.694481", "2018-04-17 17:44:29.997563", "NULL", 170, 15, "NULL", "system_description", "Titanium Cloud version 18.03"],
"lldp_tlvs_153": ["2018-04-11 17:17:14.579489", "2018-04-17 17:44:30.79838", "NULL", 133, 11, "NULL", "system_description", "Titanium Cloud version 18.03"],
"lldp_tlvs_154": ["2018-04-11 17:17:15.950578", "2018-04-17 17:44:31.821609", "NULL", 179, 16, "NULL", "system_description", "Titanium Cloud version 18.03"],
"lldp_tlvs_155": ["2018-05-18 18:01:30.357209", "NULL", "NULL", 274, "NULL", 12, "port_description", "Slot: 0 Port: 22 10G - Level (56:AB:3A:FD:78:16)"],
"lldp_tlvs_156": ["2018-04-11 17:17:14.064773", "2018-04-17 17:44:29.005307", "NULL", 114, 9, "NULL", "management_address", "128.224.151.153, fd01:1::4"],
"lldp_tlvs_157": ["2018-04-11 17:17:14.908256", "2018-04-17 17:44:29.117225", "NULL", 141, 12, "NULL", "management_address", "128.224.151.153, fd01:1::4"],
"lldp_tlvs_158": ["2018-04-17 15:29:20.400839", "NULL", "NULL", 202, "NULL", 5, "dot3_mac_status", "auto-negotiation-capable=y,auto-negotiation-enabled=y,10base-tfd, 100base-txfd, 1000base-tfd"],
"lldp_tlvs_159": ["2018-04-11 17:17:14.927689", "2018-04-17 17:44:29.139564", "NULL", 142, 12, "NULL", "system_description", "Titanium Cloud version 18.03"],
"lldp_tlvs_160": ["2018-04-17 15:29:20.421295", "NULL", "NULL", 203, "NULL", 5, "port_identifier", "Gi1/0/19"],
"lldp_tlvs_161": ["2018-04-17 15:29:20.439727", "NULL", "NULL", 204, "NULL", 5, "chassis_id", "e8:ba:70:1e:f7:80"],
"lldp_tlvs_162": ["2018-04-17 15:29:20.458255", "NULL", "NULL", 205, "NULL", 5, "dot1_lag", "capable=y,enabled=n"],
"lldp_tlvs_163": ["2018-04-17 15:29:20.479024", "NULL", "NULL", 206, "NULL", 5, "management_address", "128.224.148.241"],
"lldp_tlvs_164": ["2018-04-11 17:17:14.329988", "2018-04-17 17:44:29.364607", "NULL", 124, 10, "NULL", "system_description", "Titanium Cloud version 18.03"],
"lldp_tlvs_165": ["2018-05-18 18:01:30.378594", "NULL", "NULL", 275, "NULL", 12, "dot3_max_frame", "9242"],
"lldp_tlvs_166": ["2018-05-18 18:01:30.399134", "NULL", "NULL", 276, "NULL", 12, "dot1_vlan_names", ""],
"lldp_tlvs_167": ["2018-05-18 18:01:30.439987", "NULL", "NULL", 278, "NULL", 12, "dot3_mac_status", "auto-negotiation-capable=y,auto-negotiation-enabled=n,"],
"lldp_tlvs_168": ["2018-05-18 18:01:30.460609", "NULL", "NULL", 279, "NULL", 12, "dot3_power_mdi", "power-mdi-supported=n,power-mdi-enabled=n,"],
"lldp_tlvs_169": ["2018-05-18 18:01:30.480929", "NULL", "NULL", 280, "NULL", 12, "system_capabilities", "bridge, router"],
"lldp_tlvs_170": ["2018-05-18 17:54:58.52286", "NULL", "NULL", 251, "NULL", 10, "port_identifier", "yow-cgcs-wildcat-90, mgmt0+infra0"],
"lldp_tlvs_171": ["2018-05-18 17:54:58.545036", "NULL", "NULL", 252, "NULL", 10, "dot1_lag", "capable=y,enabled=n"],
"lldp_tlvs_172": ["2018-05-18 17:54:58.566354", "NULL", "NULL", 253, "NULL", 10, "chassis_id", "54:ab:3a:05:7f:5e"],
"lldp_tlvs_173": ["2018-05-18 18:00:58.63015", "NULL", "NULL", 263, "NULL", 10, "system_name", "yow-cgcs-quanta-7"],
"lldp_tlvs_174": ["2018-05-18 18:00:58.650262", "NULL", "NULL", 264, "NULL", 10, "dot1_port_vid", "132"],
"lldp_tlvs_175": ["2018-05-18 18:00:58.669909", "NULL", "NULL", 265, "NULL", 10, "port_description", "Slot: 0 Port: 21 10G - Level (56:AB:3A:FD:78:15)"],
"lldp_tlvs_176": ["2018-05-18 18:00:58.69121", "NULL", "NULL", 266, "NULL", 10, "dot3_max_frame", "9242"],
"lldp_tlvs_177": ["2018-05-18 18:00:58.711045", "NULL", "NULL", 267, "NULL", 10, "dot1_vlan_names", ""],
"lldp_tlvs_178": ["2018-05-18 18:00:58.751855", "NULL", "NULL", 269, "NULL", 10, "dot3_mac_status", "auto-negotiation-capable=y,auto-negotiation-enabled=n,"],
"lldp_tlvs_179": ["2018-05-18 18:00:58.771524", "NULL", "NULL", 270, "NULL", 10, "dot3_power_mdi", "power-mdi-supported=n,power-mdi-enabled=n,"],
"lldp_tlvs_180": ["2018-05-18 18:00:58.790743", "NULL", "NULL", 271, "NULL", 10, "system_capabilities", "bridge, router"],
"lldp_tlvs_181": ["2018-05-18 17:54:58.585316", "2018-05-28 17:28:18.566748", "NULL", 254, "NULL", 10, "ttl", "117"],
"lldp_tlvs_182": ["2018-05-18 18:00:58.729926", "2018-05-18 18:20:32.397623", "NULL", 268, "NULL", 10, "system_description", "LY2R, Runtime Code 5.4.05.00, Linux 3.8.13-rt9, U-Boot 2010.12 (Feb 10 2015 - 10:01:12) - ONIE 2014.05.03-d"],
"lldp_tlvs_183": ["2018-04-17 17:44:28.670692", "2018-05-28 17:40:10.182505", "NULL", 219, "NULL", 6, "ttl", "106"],
"lldp_tlvs_184": ["2018-04-17 15:29:20.517854", "NULL", "NULL", 208, "NULL", 5, "system_capabilities", "bridge"],
"lldp_tlvs_185": ["2018-04-11 15:51:26.448944", "2018-04-17 15:29:20.908064", "NULL", 28, 1, "NULL", "management_address", "128.224.151.151, fd01:1::3"],
"lldp_tlvs_186": ["2018-04-11 15:51:26.481407", "2018-04-17 15:29:20.928035", "NULL", 29, 1, "NULL", "system_description", "Titanium Cloud version 18.03"],
"lldp_tlvs_187": ["2018-04-11 15:51:28.073773", "2018-04-17 15:29:21.032785", "NULL", 56, 4, "NULL", "system_description", "Titanium Cloud version 18.03"],
"lldp_tlvs_188": ["2018-04-17 17:44:28.57079", "NULL", "NULL", 215, "NULL", 6, "port_identifier", "Gi1/0/20"],
"lldp_tlvs_189": ["2018-04-17 17:44:28.593427", "NULL", "NULL", 216, "NULL", 6, "chassis_id", "e8:ba:70:1e:f7:80"],
"lldp_tlvs_190": ["2018-04-17 17:44:28.621591", "NULL", "NULL", 217, "NULL", 6, "dot1_lag", "capable=y,enabled=n"],
"lldp_tlvs_191": ["2018-04-17 17:44:28.649707", "NULL", "NULL", 218, "NULL", 6, "management_address", "128.224.148.241"],
"lldp_tlvs_192": ["2018-04-17 17:44:28.69122", "NULL", "NULL", 220, "NULL", 6, "system_capabilities", "bridge"],
"lldp_tlvs_193": ["2018-04-11 17:17:14.084826", "2018-04-17 17:44:29.026054", "NULL", 115, 9, "NULL", "system_description", "Titanium Cloud version 18.03"],
"lldp_tlvs_194": ["2018-04-11 17:17:15.44443", "2018-04-17 17:44:29.251355", "NULL", 161, 14, "NULL", "system_description", "Titanium Cloud version 18.03"],
"lldp_tlvs_195": ["2018-04-11 17:17:15.175761", "2018-04-17 17:44:31.533257", "NULL", 151, 13, "NULL", "system_description", "Titanium Cloud version 18.03"]
}

View File

@ -1,3 +0,0 @@
{
"loads_0": ["2018-04-11 15:32:43.337062", "NULL", "NULL", 1, "461daa09-a46d-452c-9ae8-5d84d56fad35", "active", "18.03", "N/A", "N/A"]
}

View File

@ -1,3 +0,0 @@
{
"migrate_version_0": ["sysinv", "/usr/lib64/python2.7/site-packages/sysinv/db/sqlalchemy/migrate_repo", 67]
}

View File

@ -1,6 +0,0 @@
{
"networks_0": ["2018-04-11 15:32:43.431455", "NULL", "NULL", 1, "ef1b76d8-ba94-4b6f-a631-0ebc54b26635", "mgmt", 9216, 10000, true, 133, 1],
"networks_1": ["2018-04-11 15:32:43.660784", "NULL", "NULL", 2, "52ab3edf-e136-4441-94d4-137775e44f86", "pxeboot", 9216, "NULL", true, "NULL", 2],
"networks_2": ["2018-04-11 15:32:43.907972", "NULL", "NULL", 3, "ba666757-954b-4a9b-9cbc-b40dd81dee31", "oam", 1500, "NULL", false, "NULL", 3],
"networks_3": ["2018-04-11 15:32:44.050673", "NULL", "NULL", 4, "d277b894-aacd-44d0-af42-927efa197561", "multicast", 9216, "NULL", false, "NULL", 4]
}

View File

@ -1,12 +0,0 @@
{
"partition_0": ["2018-04-11 15:52:53.442427", "2018-05-18 17:48:57.714339", "NULL", 5, "c5b9f660-8036-43a0-92a2-4ec402693d84", 1, 145968, 145967, "/dev/disk/by-path/pci-0000:00:1f.2-ata-2.0-part1", "ba5eba11-0000-1111-2222-000000000001", "LVM Physical Volume", 2, "6900d7af-5482-4999-823f-e3e6833663af", "NULL", 1, 2, 1, "/dev/sdb1"],
"partition_1": ["2018-04-11 17:35:47.295219", "2018-05-24 10:46:16.044707", "NULL", 12, "4b20d2cc-9426-4f6c-aea2-f51949a089f0", 1, 145968, 145967, "/dev/disk/by-path/pci-0000:00:1f.2-ata-2.0-part1", "ba5eba11-0000-1111-2222-000000000001", "LVM Physical Volume", 5, "756437b3-3c5e-42ae-b0a4-034def142e9e", "NULL", 1, 4, 2, "/dev/sdb1"],
"partition_2": ["2018-04-11 17:11:18.235864", "2018-05-24 10:46:16.10309", "NULL", 11, "19fbbcc0-7e91-4bb7-9b96-928778459e39", 20502, 457862, 437360, "/dev/disk/by-path/pci-0000:00:1f.2-ata-1.0-part4", "e6d6d379-f507-44c2-a23c-238f2a3df928", "Linux LVM", 4, "2e899653-e838-4b83-ac74-fa26729184e4", "NULL", 1, 3, 2, "/dev/sda4"],
"partition_3": ["2018-04-11 15:33:41.19528", "2018-05-24 10:46:16.804861", "NULL", 4, "69217878-28e7-4ac2-8d73-828692df069e", 20502, 457862, 437360, "/dev/disk/by-path/pci-0000:00:1f.2-ata-1.0-part4", "e6d6d379-f507-44c2-a23c-238f2a3df928", "Linux LVM", 1, "15df3dcb-9578-451e-9a71-16caa5ce8a7d", "NULL", 1, 1, 1, "/dev/sda4"],
"partition_4": ["2018-04-11 15:33:41.139602", "2018-05-17 23:53:40.048667", "NULL", 1, "377a1a04-fa36-49ba-93a2-0c13f8d180f6", 1, 2, 1, "/dev/disk/by-path/pci-0000:00:1f.2-ata-1.0-part1", "21686148-6449-6e6f-744e-656564454649", "BIOS boot partition", 1, "15df3dcb-9578-451e-9a71-16caa5ce8a7d", "NULL", 1, "NULL", 1, "/dev/sda1"],
"partition_5": ["2018-04-11 15:33:41.159382", "2018-05-17 23:53:40.060336", "NULL", 2, "9647b1af-bfe7-4822-8868-d922f8cf7386", 2, 502, 500, "/dev/disk/by-path/pci-0000:00:1f.2-ata-1.0-part2", "ebd0a0a2-b9e5-4433-87c0-68b6b72699c7", "Microsoft basic data", 1, "15df3dcb-9578-451e-9a71-16caa5ce8a7d", "NULL", 1, "NULL", 1, "/dev/sda2"],
"partition_6": ["2018-04-11 15:33:41.178183", "2018-05-17 23:53:40.071821", "NULL", 3, "7a002034-98a4-4f02-9b53-17dffc2b6147", 502, 20502, 20000, "/dev/disk/by-path/pci-0000:00:1f.2-ata-1.0-part3", "ebd0a0a2-b9e5-4433-87c0-68b6b72699c7", "Microsoft basic data", 1, "15df3dcb-9578-451e-9a71-16caa5ce8a7d", "NULL", 1, "NULL", 1, "/dev/sda3"],
"partition_7": ["2018-04-11 17:11:18.168709", "2018-05-17 23:52:06.643161", "NULL", 8, "6293717f-bc68-4348-8364-faecd1ff0c9e", 1, 2, 1, "/dev/disk/by-path/pci-0000:00:1f.2-ata-1.0-part1", "21686148-6449-6e6f-744e-656564454649", "BIOS boot partition", 4, "2e899653-e838-4b83-ac74-fa26729184e4", "NULL", 1, "NULL", 2, "/dev/sda1"],
"partition_8": ["2018-04-11 17:11:18.191481", "2018-05-17 23:52:06.654195", "NULL", 9, "fcb8a520-2a48-4cea-b634-568ec8aa9ce0", 2, 502, 500, "/dev/disk/by-path/pci-0000:00:1f.2-ata-1.0-part2", "ebd0a0a2-b9e5-4433-87c0-68b6b72699c7", "Microsoft basic data", 4, "2e899653-e838-4b83-ac74-fa26729184e4", "NULL", 1, "NULL", 2, "/dev/sda2"],
"partition_9": ["2018-04-11 17:11:18.212978", "2018-05-17 23:52:06.666203", "NULL", 10, "37504d26-1a1c-4c67-8f5e-d506c9abb912", 502, 20502, 20000, "/dev/disk/by-path/pci-0000:00:1f.2-ata-1.0-part3", "ebd0a0a2-b9e5-4433-87c0-68b6b72699c7", "Microsoft basic data", 4, "2e899653-e838-4b83-ac74-fa26729184e4", "NULL", 1, "NULL", 2, "/dev/sda3"]
}

View File

@ -1,40 +0,0 @@
{
"pci_devices_0": ["2018-04-11 15:33:38.931771", "NULL", "NULL", 1, "c9486f78-eadc-412c-8042-63d7f838ea6f", 1, "pci_0000_00_11_0", "0000:00:11.0", "ff0000", "8086", "8d7c", "Unassigned class [ff00]", "Intel Corporation", "C610/X99 series chipset SPSR", "Intel Corporation", "Device 0000", 0, "NULL", "NULL", 0, "", false, "NULL"],
"pci_devices_1": ["2018-04-11 15:33:38.945293", "NULL", "NULL", 2, "ce96b406-5873-4500-b8da-1b09e20c6870", 1, "pci_0000_00_11_1", "0000:00:11.1", "0c0500", "8086", "8d7d", "SMBus", "Intel Corporation", "C610/X99 series chipset MS SMBus 0", "Intel Corporation", "Device 35c4", 0, "i801_smbus", "NULL", 0, "", false, "NULL"],
"pci_devices_2": ["2018-04-11 15:33:39.037819", "NULL", "NULL", 3, "1ddb41fe-a62f-45c8-ab90-201d638c3d05", 1, "pci_0000_00_11_4", "0000:00:11.4", "010601", "8086", "8d62", "SATA controller", "Intel Corporation", "C610/X99 series chipset sSATA Controller [AHCI mode]", "-p01", "Intel Corporation", 0, "ahci", "NULL", 0, "", false, "NULL"],
"pci_devices_3": ["2018-04-11 15:33:39.052362", "NULL", "NULL", 4, "fb8add21-6418-480a-a731-45fff81b84c7", 1, "pci_0000_00_14_0", "0000:00:14.0", "0c0330", "8086", "8d31", "USB controller", "Intel Corporation", "C610/X99 series chipset USB xHCI Host Controller", "-p30", "Intel Corporation", 0, "NULL", "NULL", 0, "", false, "NULL"],
"pci_devices_4": ["2018-04-11 15:33:39.066262", "NULL", "NULL", 5, "aac711a1-a5b5-4066-8686-f95b03d98480", 1, "pci_0000_00_16_0", "0000:00:16.0", "078000", "8086", "8d3a", "Communication controller", "Intel Corporation", "C610/X99 series chipset MEI Controller #1", "Intel Corporation", "Device 35c4", 0, "NULL", "NULL", 0, "", false, "NULL"],
"pci_devices_5": ["2018-04-11 15:33:39.08064", "NULL", "NULL", 6, "64be6483-03b3-4ac9-a2e9-a9bc1c9135ce", 1, "pci_0000_00_16_1", "0000:00:16.1", "078000", "8086", "8d3b", "Communication controller", "Intel Corporation", "C610/X99 series chipset MEI Controller #2", "Intel Corporation", "Device 35c4", 0, "NULL", "NULL", 0, "", false, "NULL"],
"pci_devices_6": ["2018-04-11 15:33:39.09381", "NULL", "NULL", 7, "a4cc79bf-822d-42a4-893d-4a1871beaf26", 1, "pci_0000_00_1a_0", "0000:00:1a.0", "0c0320", "8086", "8d2d", "USB controller", "Intel Corporation", "C610/X99 series chipset USB Enhanced Host Controller #2", "-p20", "Intel Corporation", 0, "NULL", "NULL", 0, "", false, "NULL"],
"pci_devices_7": ["2018-04-11 15:33:39.107156", "NULL", "NULL", 8, "0c24f6ae-513e-4b05-8273-12ba32691798", 1, "pci_0000_00_1d_0", "0000:00:1d.0", "0c0320", "8086", "8d26", "USB controller", "Intel Corporation", "C610/X99 series chipset USB Enhanced Host Controller #1", "-p20", "Intel Corporation", 0, "NULL", "NULL", 0, "", false, "NULL"],
"pci_devices_8": ["2018-04-11 15:33:39.120486", "NULL", "NULL", 9, "9fdcffd7-8a6c-4660-b4c9-ceeb44daf46a", 1, "pci_0000_00_1f_2", "0000:00:1f.2", "010601", "8086", "8d02", "SATA controller", "Intel Corporation", "C610/X99 series chipset 6-Port SATA Controller [AHCI mode]", "-p01", "Intel Corporation", 0, "ahci", "NULL", 0, "", false, "NULL"],
"pci_devices_9": ["2018-04-11 15:33:39.133785", "NULL", "NULL", 10, "86eb65c4-cd6c-4755-bfd7-73c94d6a9833", 1, "pci_0000_00_1f_3", "0000:00:1f.3", "0c0500", "8086", "8d22", "SMBus", "Intel Corporation", "C610/X99 series chipset SMBus Controller", "Intel Corporation", "Device 35c4", 0, "i801_smbus", "NULL", 0, "", false, "NULL"],
"pci_devices_10": ["2018-04-11 15:33:39.14807", "NULL", "NULL", 11, "9a9b36dd-8da3-4cf0-93e3-7bc9ad1f2a0c", 1, "pci_0000_08_00_0", "0000:08:00.0", "030000", "102b", "0522", "VGA compatible controller", "Matrox Electronics Systems Ltd.", "MGA G200e [Pilot] ServerEngines (SEP1)", "Intel Corporation", "Device 0103", 0, "NULL", "NULL", 0, "", true, "NULL"],
"pci_devices_11": ["2018-04-11 15:33:39.161157", "NULL", "NULL", 12, "25f082b7-7f36-47c9-ac36-fbfaca1b123c", 1, "pci_0000_7f_0e_2", "0000:7f:0e.2", "ffffff", "8086", "6ff2", "Unassigned class [ffff]", "Intel Corporation", "Device 6ff2", "-pff", "Intel Corporation", -1, "NULL", "NULL", 0, "", false, "NULL"],
"pci_devices_12": ["2018-04-11 15:33:39.174161", "NULL", "NULL", 13, "1462f7f5-744f-4652-bb31-e81c54fb2323", 1, "pci_0000_7f_0e_3", "0000:7f:0e.3", "ffffff", "8086", "6ff3", "Unassigned class [ffff]", "Intel Corporation", "Device 6ff3", "-pff", "Intel Corporation", -1, "NULL", "NULL", 0, "", false, "NULL"],
"pci_devices_13": ["2018-04-11 15:33:39.187493", "NULL", "NULL", 14, "aa56a201-e9e8-46fb-a9da-ea899aff3c7a", 1, "pci_0000_7f_0e_4", "0000:7f:0e.4", "ffffff", "8086", "6ff4", "Unassigned class [ffff]", "Intel Corporation", "Device 6ff4", "-pff", "Intel Corporation", -1, "NULL", "NULL", 0, "", false, "NULL"],
"pci_devices_14": ["2018-04-11 15:33:39.200415", "NULL", "NULL", 15, "20acc6c1-c00a-4058-91dc-3d6074ac329c", 1, "pci_0000_7f_0e_5", "0000:7f:0e.5", "ffffff", "8086", "6ff5", "Unassigned class [ffff]", "Intel Corporation", "Device 6ff5", "-pff", "Intel Corporation", -1, "NULL", "NULL", 0, "", false, "NULL"],
"pci_devices_15": ["2018-04-11 15:33:39.215015", "NULL", "NULL", 16, "aa6ec9ac-82ee-4109-bad2-564f4e35b44b", 1, "pci_0000_ff_0e_2", "0000:ff:0e.2", "ffffff", "8086", "6ff2", "Unassigned class [ffff]", "Intel Corporation", "Device 6ff2", "-pff", "Intel Corporation", -1, "NULL", "NULL", 0, "", false, "NULL"],
"pci_devices_16": ["2018-04-11 15:33:39.22797", "NULL", "NULL", 17, "d462bb26-9e8f-4e30-8498-4dee5c98c04a", 1, "pci_0000_ff_0e_3", "0000:ff:0e.3", "ffffff", "8086", "6ff3", "Unassigned class [ffff]", "Intel Corporation", "Device 6ff3", "-pff", "Intel Corporation", -1, "NULL", "NULL", 0, "", false, "NULL"],
"pci_devices_17": ["2018-04-11 15:33:39.240909", "NULL", "NULL", 18, "0a40591d-7089-4c69-ac00-d71258ebe68e", 1, "pci_0000_ff_0e_4", "0000:ff:0e.4", "ffffff", "8086", "6ff4", "Unassigned class [ffff]", "Intel Corporation", "Device 6ff4", "-pff", "Intel Corporation", -1, "NULL", "NULL", 0, "", false, "NULL"],
"pci_devices_18": ["2018-04-11 15:33:39.254222", "NULL", "NULL", 19, "3e749432-ebbe-4b12-8801-c32ddc8865d4", 1, "pci_0000_ff_0e_5", "0000:ff:0e.5", "ffffff", "8086", "6ff5", "Unassigned class [ffff]", "Intel Corporation", "Device 6ff5", "-pff", "Intel Corporation", -1, "NULL", "NULL", 0, "", false, "NULL"],
"pci_devices_19": ["2018-04-11 17:11:15.599588", "NULL", "NULL", 20, "991fc4f4-44b0-43dd-9968-80d59697d731", 2, "pci_0000_00_11_0", "0000:00:11.0", "ff0000", "8086", "8d7c", "Unassigned class [ff00]", "Intel Corporation", "C610/X99 series chipset SPSR", "Intel Corporation", "Device 0000", 0, "NULL", "NULL", 0, "", false, "NULL"],
"pci_devices_20": ["2018-04-11 17:11:15.616116", "NULL", "NULL", 21, "dae38232-999e-4f5a-b51b-30a79bb8339f", 2, "pci_0000_00_11_1", "0000:00:11.1", "0c0500", "8086", "8d7d", "SMBus", "Intel Corporation", "C610/X99 series chipset MS SMBus 0", "Intel Corporation", "Device 35c4", 0, "i801_smbus", "NULL", 0, "", false, "NULL"],
"pci_devices_21": ["2018-04-11 17:11:15.632822", "NULL", "NULL", 22, "b9bde356-306c-4b0f-af71-4d0927ddfad8", 2, "pci_0000_00_11_4", "0000:00:11.4", "010601", "8086", "8d62", "SATA controller", "Intel Corporation", "C610/X99 series chipset sSATA Controller [AHCI mode]", "-p01", "Intel Corporation", 0, "ahci", "NULL", 0, "", false, "NULL"],
"pci_devices_22": ["2018-04-11 17:11:15.649084", "NULL", "NULL", 23, "39f9a72a-af6d-4af6-a7df-e94bfd29087b", 2, "pci_0000_00_14_0", "0000:00:14.0", "0c0330", "8086", "8d31", "USB controller", "Intel Corporation", "C610/X99 series chipset USB xHCI Host Controller", "-p30", "Intel Corporation", 0, "NULL", "NULL", 0, "", false, "NULL"],
"pci_devices_23": ["2018-04-11 17:11:15.665365", "NULL", "NULL", 24, "2f4a01b9-8e54-492f-8dcc-32008494acf6", 2, "pci_0000_00_16_0", "0000:00:16.0", "078000", "8086", "8d3a", "Communication controller", "Intel Corporation", "C610/X99 series chipset MEI Controller #1", "Intel Corporation", "Device 35c4", 0, "NULL", "NULL", 0, "", false, "NULL"],
"pci_devices_24": ["2018-04-11 17:11:15.680556", "NULL", "NULL", 25, "0c813cbb-0358-4508-a967-1af5c5cf4ce8", 2, "pci_0000_00_16_1", "0000:00:16.1", "078000", "8086", "8d3b", "Communication controller", "Intel Corporation", "C610/X99 series chipset MEI Controller #2", "Intel Corporation", "Device 35c4", 0, "NULL", "NULL", 0, "", false, "NULL"],
"pci_devices_25": ["2018-04-11 17:11:15.69692", "NULL", "NULL", 26, "00604bd9-6135-4961-bdfe-0438f62d2c12", 2, "pci_0000_00_1a_0", "0000:00:1a.0", "0c0320", "8086", "8d2d", "USB controller", "Intel Corporation", "C610/X99 series chipset USB Enhanced Host Controller #2", "-p20", "Intel Corporation", 0, "NULL", "NULL", 0, "", false, "NULL"],
"pci_devices_26": ["2018-04-11 17:11:15.713996", "NULL", "NULL", 27, "0459721c-425d-4d06-b9c4-239ba7cb681a", 2, "pci_0000_00_1d_0", "0000:00:1d.0", "0c0320", "8086", "8d26", "USB controller", "Intel Corporation", "C610/X99 series chipset USB Enhanced Host Controller #1", "-p20", "Intel Corporation", 0, "NULL", "NULL", 0, "", false, "NULL"],
"pci_devices_27": ["2018-04-11 17:11:15.729494", "NULL", "NULL", 28, "62ff322e-1229-4b99-a96d-50c0ea42a0b0", 2, "pci_0000_00_1f_2", "0000:00:1f.2", "010601", "8086", "8d02", "SATA controller", "Intel Corporation", "C610/X99 series chipset 6-Port SATA Controller [AHCI mode]", "-p01", "Intel Corporation", 0, "ahci", "NULL", 0, "", false, "NULL"],
"pci_devices_28": ["2018-04-11 17:11:15.745326", "NULL", "NULL", 29, "6c216a1c-9ff9-4346-b73f-235e5defbada", 2, "pci_0000_00_1f_3", "0000:00:1f.3", "0c0500", "8086", "8d22", "SMBus", "Intel Corporation", "C610/X99 series chipset SMBus Controller", "Intel Corporation", "Device 35c4", 0, "i801_smbus", "NULL", 0, "", false, "NULL"],
"pci_devices_29": ["2018-04-11 17:11:15.761015", "NULL", "NULL", 30, "f77bde75-5077-47e1-aac2-4ed2291d0583", 2, "pci_0000_08_00_0", "0000:08:00.0", "030000", "102b", "0522", "VGA compatible controller", "Matrox Electronics Systems Ltd.", "MGA G200e [Pilot] ServerEngines (SEP1)", "Intel Corporation", "Device 0103", 0, "NULL", "NULL", 0, "", true, "NULL"],
"pci_devices_30": ["2018-04-11 17:11:15.777254", "NULL", "NULL", 31, "c46bf744-72dc-493c-83db-6d94a30dd53b", 2, "pci_0000_7f_0e_2", "0000:7f:0e.2", "ffffff", "8086", "6ff2", "Unassigned class [ffff]", "Intel Corporation", "Device 6ff2", "-pff", "Intel Corporation", -1, "NULL", "NULL", 0, "", false, "NULL"],
"pci_devices_31": ["2018-04-11 17:11:15.795", "NULL", "NULL", 32, "c83e401f-04da-424b-9b75-a0ad05b4aa65", 2, "pci_0000_7f_0e_3", "0000:7f:0e.3", "ffffff", "8086", "6ff3", "Unassigned class [ffff]", "Intel Corporation", "Device 6ff3", "-pff", "Intel Corporation", -1, "NULL", "NULL", 0, "", false, "NULL"],
"pci_devices_32": ["2018-04-11 17:11:15.810628", "NULL", "NULL", 33, "54826141-5909-4347-961a-0eb61dd53925", 2, "pci_0000_7f_0e_4", "0000:7f:0e.4", "ffffff", "8086", "6ff4", "Unassigned class [ffff]", "Intel Corporation", "Device 6ff4", "-pff", "Intel Corporation", -1, "NULL", "NULL", 0, "", false, "NULL"],
"pci_devices_33": ["2018-04-11 17:11:15.825939", "NULL", "NULL", 34, "8b4d86ae-a58b-41cc-aae3-f7797d052a79", 2, "pci_0000_7f_0e_5", "0000:7f:0e.5", "ffffff", "8086", "6ff5", "Unassigned class [ffff]", "Intel Corporation", "Device 6ff5", "-pff", "Intel Corporation", -1, "NULL", "NULL", 0, "", false, "NULL"],
"pci_devices_34": ["2018-04-11 17:11:15.841812", "NULL", "NULL", 35, "c51e18f4-9174-486e-815e-1f363ad684cf", 2, "pci_0000_ff_0e_2", "0000:ff:0e.2", "ffffff", "8086", "6ff2", "Unassigned class [ffff]", "Intel Corporation", "Device 6ff2", "-pff", "Intel Corporation", -1, "NULL", "NULL", 0, "", false, "NULL"],
"pci_devices_35": ["2018-04-11 17:11:15.857688", "NULL", "NULL", 36, "b4430803-afec-4e52-99f1-e982db12fe11", 2, "pci_0000_ff_0e_3", "0000:ff:0e.3", "ffffff", "8086", "6ff3", "Unassigned class [ffff]", "Intel Corporation", "Device 6ff3", "-pff", "Intel Corporation", -1, "NULL", "NULL", 0, "", false, "NULL"],
"pci_devices_36": ["2018-04-11 17:11:15.8753", "NULL", "NULL", 37, "936e9654-5ede-4fca-bd12-fcba9a98f17a", 2, "pci_0000_ff_0e_4", "0000:ff:0e.4", "ffffff", "8086", "6ff4", "Unassigned class [ffff]", "Intel Corporation", "Device 6ff4", "-pff", "Intel Corporation", -1, "NULL", "NULL", 0, "", false, "NULL"],
"pci_devices_37": ["2018-04-11 17:11:15.891445", "NULL", "NULL", 38, "1c7510d4-a3f2-45ea-914a-5c5dd4a398a0", 2, "pci_0000_ff_0e_5", "0000:ff:0e.5", "ffffff", "8086", "6ff5", "Unassigned class [ffff]", "Intel Corporation", "Device 6ff5", "-pff", "Intel Corporation", -1, "NULL", "NULL", 0, "", false, "NULL"]
}

View File

@ -1,18 +0,0 @@
{
"ports_0": ["2018-04-11 15:33:38.671242", "2018-05-17 23:53:34.967081", "NULL", 4, "813b87d8-689a-4b67-b5e4-243fc7c27584", 1, 1, 4, "ethernet", "ens785f1", "NULL", "0000:05:00.1", 0, 32, 0, "", "i40e", "Ethernet controller", "Intel Corporation", "Ethernet Controller X710 for 10GbE SFP+", "Intel Corporation", "Ethernet Converged Network Adapter X710", false, 0, "NULL"],
"ports_1": ["2018-04-11 15:33:38.71989", "2018-05-17 23:53:35.01302", "NULL", 5, "9ba44cb5-c180-4303-9c00-3582559a0acc", 1, 1, 5, "ethernet", "ens785f2", "NULL", "0000:05:00.2", 0, 32, 0, "", "i40e", "Ethernet controller", "Intel Corporation", "Ethernet Controller X710 for 10GbE SFP+", "Intel Corporation", "Ethernet Converged Network Adapter X710", false, 0, "NULL"],
"ports_2": ["2018-04-11 15:33:38.768266", "2018-05-17 23:53:35.057822", "NULL", 6, "04e6f325-e00e-4fa5-8baa-bdb4f3324922", 1, 1, 6, "ethernet", "ens785f3", "NULL", "0000:05:00.3", 0, 32, 0, "", "i40e", "Ethernet controller", "Intel Corporation", "Ethernet Controller X710 for 10GbE SFP+", "Intel Corporation", "Ethernet Converged Network Adapter X710", false, 0, "NULL"],
"ports_3": ["2018-04-11 15:33:38.816503", "2018-05-17 23:53:35.103271", "NULL", 7, "c7fef126-724a-4772-8aec-86edb744d5f9", 1, 2, 7, "ethernet", "ens801f0", "NULL", "0000:81:00.0", 0, 63, 0, "", "ixgbe", "Ethernet controller", "Intel Corporation", "82599ES 10-Gigabit SFI/SFP+ Network Connection", "Intel Corporation", "Ethernet Server Adapter X520-2", false, 1, "NULL"],
"ports_4": ["2018-04-11 15:33:38.864788", "2018-05-17 23:53:35.148319", "NULL", 8, "4cc16921-2b20-4f6e-bbd1-651a70ff0db2", 1, 2, 8, "ethernet", "ens801f1", "NULL", "0000:81:00.1", 0, 63, 0, "", "ixgbe", "Ethernet controller", "Intel Corporation", "82599ES 10-Gigabit SFI/SFP+ Network Connection", "Intel Corporation", "Ethernet Server Adapter X520-2", false, 1, "NULL"],
"ports_5": ["2018-04-11 17:11:14.912276", "2018-05-17 23:52:01.609196", "NULL", 9, "5119f262-9255-42be-8830-f72780e7f5fc", 2, 3, 10, "ethernet", "eno1", "NULL", "0000:03:00.0", 0, 7, 0, "", "igb", "Ethernet controller", "Intel Corporation", "I350 Gigabit Network Connection", "Intel Corporation", "Device 35c4", false, 0, "NULL"],
"ports_6": ["2018-04-11 17:11:15.092383", "2018-05-17 23:52:01.741149", "NULL", 12, "37dd5e36-2c8b-4936-8583-7485975de434", 2, 3, 13, "ethernet", "ens785f1", "NULL", "0000:05:00.1", 0, 32, 0, "", "i40e", "Ethernet controller", "Intel Corporation", "Ethernet Controller X710 for 10GbE SFP+", "Intel Corporation", "Ethernet Converged Network Adapter X710", false, 0, "NULL"],
"ports_7": ["2018-04-11 17:11:15.150003", "2018-05-17 23:52:01.786282", "NULL", 13, "e7f0ae84-96eb-4f38-8ace-7c30de5c06c8", 2, 3, 14, "ethernet", "ens785f2", "NULL", "0000:05:00.2", 0, 32, 0, "", "i40e", "Ethernet controller", "Intel Corporation", "Ethernet Controller X710 for 10GbE SFP+", "Intel Corporation", "Ethernet Converged Network Adapter X710", false, 0, "NULL"],
"ports_8": ["2018-04-11 17:11:15.209604", "2018-05-17 23:52:01.830361", "NULL", 14, "4253f5cf-3b11-4130-a69a-72c5ae4beb0e", 2, 3, 15, "ethernet", "ens785f3", "NULL", "0000:05:00.3", 0, 32, 0, "", "i40e", "Ethernet controller", "Intel Corporation", "Ethernet Controller X710 for 10GbE SFP+", "Intel Corporation", "Ethernet Converged Network Adapter X710", false, 0, "NULL"],
"ports_9": ["2018-04-11 17:11:15.317012", "2018-05-17 23:52:01.874322", "NULL", 15, "3bec919d-73cd-41a7-b6a0-124d4059e2e2", 2, 4, 16, "ethernet", "ens801f0", "NULL", "0000:81:00.0", 0, 63, 0, "", "ixgbe", "Ethernet controller", "Intel Corporation", "82599ES 10-Gigabit SFI/SFP+ Network Connection", "Intel Corporation", "Ethernet Server Adapter X520-2", false, 1, "NULL"],
"ports_10": ["2018-04-11 17:11:15.52012", "2018-05-17 23:52:01.927675", "NULL", 16, "91fd8a0a-abc7-455e-b289-86dc51932575", 2, 4, 18, "ethernet", "ens801f1", "NULL", "0000:81:00.1", 0, 63, 0, "", "ixgbe", "Ethernet controller", "Intel Corporation", "82599ES 10-Gigabit SFI/SFP+ Network Connection", "Intel Corporation", "Ethernet Server Adapter X520-2", false, 1, "NULL"],
"ports_11": ["2018-04-11 15:33:38.524353", "2018-05-17 23:53:34.834124", "NULL", 1, "3b6fbb26-cd81-4062-863a-a77d6cffceec", 1, 1, 1, "ethernet", "eno1", "NULL", "0000:03:00.0", 0, 7, 0, "", "igb", "Ethernet controller", "Intel Corporation", "I350 Gigabit Network Connection", "Intel Corporation", "Device 35c4", false, 0, "NULL"],
"ports_12": ["2018-04-11 17:11:14.973056", "2018-05-17 23:52:01.652221", "NULL", 10, "c4d9d5eb-d561-44de-90c1-71580af73792", 2, 3, 11, "ethernet", "enp3s0f3", "NULL", "0000:03:00.3", 0, 7, 0, "", "igb", "Ethernet controller", "Intel Corporation", "I350 Gigabit Network Connection", "Intel Corporation", "Device 35c4", false, 0, "NULL"],
"ports_13": ["2018-04-11 15:33:38.574333", "2018-05-17 23:53:34.879016", "NULL", 2, "9b4cbd57-da46-4e6c-ad10-e73c23a2555c", 1, 1, 2, "ethernet", "enp3s0f3", "NULL", "0000:03:00.3", 0, 7, 0, "", "igb", "Ethernet controller", "Intel Corporation", "I350 Gigabit Network Connection", "Intel Corporation", "Device 35c4", false, 0, "NULL"],
"ports_14": ["2018-04-11 15:33:38.622547", "2018-05-17 23:53:34.92476", "NULL", 3, "9e6fd28c-10f3-4a80-a212-28c643016d36", 1, 1, 3, "ethernet", "ens785f0", "NULL", "0000:05:00.0", 0, 32, 0, "", "i40e", "Ethernet controller", "Intel Corporation", "Ethernet Controller X710 for 10GbE SFP+", "Intel Corporation", "Ethernet Converged Network Adapter X710-4", false, 0, "NULL"],
"ports_15": ["2018-04-11 17:11:15.032903", "2018-05-17 23:52:01.696813", "NULL", 11, "8d941df1-f6f3-4142-9b9a-b08cf82eb216", 2, 3, 12, "ethernet", "ens785f0", "NULL", "0000:05:00.0", 0, 32, 0, "", "i40e", "Ethernet controller", "Intel Corporation", "Ethernet Controller X710 for 10GbE SFP+", "Intel Corporation", "Ethernet Converged Network Adapter X710-4", false, 0, "NULL"]
}

View File

@ -1,3 +0,0 @@
{
"remotelogging_0": ["2018-04-11 15:32:39.953129", "NULL", "NULL", 1, "3751daa1-0cee-481d-8fef-297cd9554d92", false, "udp", "NULL", 514, "NULL", 1]
}

View File

@ -1,8 +0,0 @@
{
"routes_0": ["2018-04-11 17:01:49.654734", "NULL", "NULL", 1, "3a07ca95-d6fe-48cb-9393-b949f800b552", 6, "fd01:2::", 64, "fd01:1::1", 1, 9],
"routes_1": ["2018-04-11 17:11:15.447088", "NULL", "NULL", 2, "7e5f13d4-f7f4-4739-bc96-2bbe5ec48586", 6, "fd01:2::", 64, "fd01:1::1", 1, 17],
"routes_2": ["2018-05-15 14:45:13.606829", "NULL", "NULL", 11, "504bd824-1ba7-436e-9fde-f0e80815d4bd", 6, "fd01:3::", 64, "fd01:1::1", 1, 9],
"routes_3": ["2018-05-15 14:45:16.11896", "NULL", "NULL", 12, "16d71694-9260-400f-a93f-f296bcad7459", 6, "fd01:3::", 64, "fd01:1::1", 1, 17],
"routes_4": ["2018-05-15 14:45:50.297445", "NULL", "NULL", 13, "a2d89ab2-c21a-4090-b8da-dad2276bf2e6", 6, "fd01:4::", 64, "fd01:1::1", 1, 9],
"routes_5": ["2018-05-15 14:45:52.537", "NULL", "NULL", 14, "863fb8d3-0b93-4dfa-ab08-dd0d6780be16", 6, "fd01:4::", 64, "fd01:1::1", 1, 17]
}

View File

@ -1,26 +0,0 @@
{
"service_parameter_0": ["2018-04-11 15:32:39.983847", "NULL", "NULL", 1, "276d8c7b-9f2d-46cf-a8fc-d5fab7431057", "identity", "assignment", "driver", "sql", "NULL", "NULL"],
"service_parameter_1": ["2018-04-11 15:32:39.986087", "NULL", "NULL", 2, "f5a5f810-541b-49aa-b22d-30122e8c9e60", "identity", "identity", "driver", "sql", "NULL", "NULL"],
"service_parameter_2": ["2018-04-11 15:32:39.987819", "NULL", "NULL", 3, "e2c30305-b4c8-4a2e-aa14-3d026a61bdd3", "identity", "config", "token_expiration", "3600", "NULL", "NULL"],
"service_parameter_3": ["2018-04-11 15:32:39.989492", "NULL", "NULL", 4, "e4731090-9c51-4db3-99ce-70ff869b35a3", "horizon", "auth", "lockout_seconds", "300", "NULL", "NULL"],
"service_parameter_4": ["2018-04-11 15:32:39.991139", "NULL", "NULL", 5, "f72418fe-d50a-4243-aff8-226c0f6df137", "horizon", "auth", "lockout_retries", "3", "NULL", "NULL"],
"service_parameter_5": ["2018-04-11 15:32:39.992775", "NULL", "NULL", 6, "be0378b2-e2ca-4d37-92f3-e3467b1108b1", "cinder", "emc_vnx", "enabled", "false", "NULL", "NULL"],
"service_parameter_6": ["2018-04-11 15:32:39.994497", "NULL", "NULL", 7, "7d9b9591-0c12-4e61-9ad2-49c603cc1871", "cinder", "emc_vnx.state", "status", "disabled", "NULL", "NULL"],
"service_parameter_7": ["2018-04-11 15:32:39.996145", "NULL", "NULL", 8, "58cb1d86-0b89-4e5d-8d31-1c4a86af0766", "cinder", "hpe3par", "enabled", "false", "NULL", "NULL"],
"service_parameter_8": ["2018-04-11 15:32:39.997763", "NULL", "NULL", 9, "02160be4-d436-4da5-b235-a5b9fb21fecf", "cinder", "hpelefthand", "enabled", "false", "NULL", "NULL"],
"service_parameter_9": ["2018-04-11 15:32:39.999406", "NULL", "NULL", 10, "3ae3b936-e711-4cee-811a-b345a87b5def", "cinder", "hpe3par.state", "status", "disabled", "NULL", "NULL"],
"service_parameter_10": ["2018-04-11 15:32:40.001063", "NULL", "NULL", 11, "420008e8-d1eb-4466-afdc-08efe5345bf2", "cinder", "hpelefthand.state", "status", "disabled", "NULL", "NULL"],
"service_parameter_11": ["2018-04-11 15:32:40.002726", "NULL", "NULL", 12, "8d93cbf9-07b5-4083-8ab5-6493a53f627c", "platform", "maintenance", "compute_boot_timeout", "720", "NULL", "NULL"],
"service_parameter_12": ["2018-04-11 15:32:40.004397", "NULL", "NULL", 13, "3ec0b18f-9fe1-4575-aaa2-d32cbcd4cdc0", "platform", "maintenance", "controller_boot_timeout", "1200", "NULL", "NULL"],
"service_parameter_13": ["2018-04-11 15:32:40.006174", "NULL", "NULL", 14, "820598b7-cc5b-4e69-bbaa-616de14c2ad1", "platform", "maintenance", "heartbeat_period", "100", "NULL", "NULL"],
"service_parameter_14": ["2018-04-11 15:32:40.007891", "NULL", "NULL", 15, "02194572-5f47-4def-a555-b4eb878cf9ad", "platform", "maintenance", "heartbeat_failure_threshold", "10", "NULL", "NULL"],
"service_parameter_15": ["2018-04-11 15:32:40.009534", "NULL", "NULL", 16, "b9d9060c-caef-4961-a99e-b2fd5456188a", "platform", "maintenance", "heartbeat_degrade_threshold", "6", "NULL", "NULL"],
"service_parameter_16": ["2018-04-11 15:32:40.011255", "NULL", "NULL", 17, "711c1181-98c8-4eaf-a2a9-984f8a29dbdf", "ceilometer", "database", "metering_time_to_live", "86400", "NULL", "NULL"],
"service_parameter_17": ["2018-04-11 15:32:40.012902", "NULL", "NULL", 18, "9f4bb5b5-b6e7-438d-b40b-298c95d70691", "panko", "database", "event_time_to_live", "86400", "NULL", "NULL"],
"service_parameter_18": ["2018-04-11 15:32:40.014501", "NULL", "NULL", 19, "872903cd-e3cf-4f26-ba49-edcf5e7583ef", "aodh", "database", "alarm_history_time_to_live", "86400", "NULL", "NULL"],
"service_parameter_19": ["2018-04-11 15:32:40.016153", "NULL", "NULL", 20, "12b437f6-f53d-4efe-b7c0-7e466e5af8c3", "platform", "sysinv", "firewall_rules_id", "NULL", "NULL", "NULL"],
"service_parameter_20": ["2018-04-11 15:32:40.017776", "NULL", "NULL", 21, "8fadbdff-559e-4fc4-8935-d512219ac111", "ceph", "cache_tiering", "feature_enabled", "false", "NULL", "NULL"],
"service_parameter_21": ["2018-04-11 15:32:40.019423", "NULL", "NULL", 22, "4cfe7b0a-ec8e-40e8-9c51-86f24ef31c8a", "ceph", "cache_tiering.applied", "feature_enabled", "false", "NULL", "NULL"],
"service_parameter_22": ["2018-04-11 15:32:40.02112", "NULL", "NULL", 23, "c2c73cdc-c932-46a5-9f55-9ae1f5b64115", "ceph", "cache_tiering", "cache_enabled", "false", "NULL", "NULL"],
"service_parameter_23": ["2018-04-11 15:32:40.02278", "NULL", "NULL", 24, "b26dda8b-9f22-4e1f-9a36-3e86c91a281d", "ceph", "cache_tiering.applied", "cache_enabled", "false", "NULL", "NULL"]
}

View File

@ -1,7 +0,0 @@
{
"services_0": ["2018-04-11 15:32:39.970094", "NULL", "NULL", 1, "cinder", false, "NULL", "NULL"],
"services_1": ["2018-04-11 15:32:39.973401", "NULL", "NULL", 2, "murano", false, "NULL", "NULL"],
"services_2": ["2018-04-11 15:32:39.97584", "NULL", "NULL", 3, "magnum", false, "NULL", "NULL"],
"services_3": ["2018-04-11 15:32:39.978205", "NULL", "NULL", 4, "swift", false, "NULL", "NULL"],
"services_4": ["2018-04-11 15:32:39.980688", "NULL", "NULL", 5, "ironic", false, "NULL", "NULL"]
}

View File

@ -1,4 +0,0 @@
{
"storage_backend_0": ["2018-04-11 15:32:39.960802", "2018-04-11 15:32:44.720892", "NULL", 1, "a631812f-baf1-48e4-8328-1cf4a8418572", "file", "configured", "NULL", 1, "glance", "{}", "file-store"],
"storage_backend_1": ["2018-04-11 15:55:23.672523", "2018-04-11 15:58:28.002419", "NULL", 2, "7c9b8b2d-33e8-40e5-bd55-173254120bb3", "lvm", "configured", "NULL", 1, "cinder", "{}", "lvm-store"]
}

View File

@ -1,3 +0,0 @@
{
"storage_file_0": ["NULL", "NULL", "NULL", 1]
}

View File

@ -1,3 +0,0 @@
{
"storage_lvm_0": ["NULL", "NULL", "NULL", 2]
}

View File

@ -1,3 +0,0 @@
{
"storage_tiers_0": ["2018-04-11 15:44:36.530647", "NULL", "NULL", 1, "86006933-28fc-4928-84d0-20375ec42871", "storage", "ceph", "defined", "{}", "NULL", 1]
}

View File

@ -1,4 +0,0 @@
{
"vlan_interfaces_0": ["NULL", "NULL", "NULL", 9, "133", "NULL", "90:e2:ba:b0:df:d0", 9216, "NULL", "NULL"],
"vlan_interfaces_1": ["NULL", "NULL", "NULL", 17, "133", "NULL", "90:e2:ba:b0:e9:f4", 9216, "NULL", "NULL"]
}

View File

@ -143,7 +143,7 @@ class TestRequestID(DCManagerApiTest):
class TestKeystoneAuth(DCManagerApiTest):
def setUp(self):
super(DCManagerApiTest, self).setUp()
super(TestKeystoneAuth, self).setUp()
self.addCleanup(set_config, {}, overwrite=True)

View File

@ -34,9 +34,6 @@ from dcmanager.db.sqlalchemy import api as db_api
from dcmanager.tests import base
from dcmanager.tests import utils
from ddt import ddt
from ddt import file_data
config.register_options()
get_engine = api.get_engine
@ -53,7 +50,6 @@ def set_sqlite_pragma(dbapi_connection, connection_record):
cursor.close()
@ddt
class DBAPISubcloudTest(base.DCManagerTestCase):
def setup_dummy_db(self):
options.cfg.set_defaults(options.database_opts,
@ -148,9 +144,8 @@ class DBAPISubcloudTest(base.DCManagerTestCase):
self.addCleanup(self.reset_dummy_db)
self.ctx = utils.dummy_context()
@file_data(utils.get_data_filepath('dcmanager', 'subclouds'))
def test_create_subcloud(self, value):
fake_subcloud = utils.create_subcloud_dict(value)
def test_create_subcloud(self):
fake_subcloud = utils.create_subcloud_dict(base.SUBCLOUD_SAMPLE_DATA_0)
name = fake_subcloud['name']
subcloud = self.create_subcloud(self.ctx, fake_subcloud)
self.assertIsNotNone(subcloud)
@ -159,13 +154,12 @@ class DBAPISubcloudTest(base.DCManagerTestCase):
self.assertIsNotNone(new_subcloud)
self.assertEqual(name, new_subcloud.name)
@file_data(utils.get_data_filepath('dcmanager', 'subclouds'))
def test_create_subcloud_duplicate_name(self, value):
fake_subcloud = utils.create_subcloud_dict(value)
# name = fake_subcloud['name']
def test_create_subcloud_duplicate_name(self):
fake_subcloud = utils.create_subcloud_dict(base.SUBCLOUD_SAMPLE_DATA_0)
subcloud = self.create_subcloud(self.ctx, fake_subcloud)
self.assertIsNotNone(subcloud)
fake_subcloud2 = utils.create_subcloud_dict(value)
fake_subcloud2 = utils.create_subcloud_dict(
base.SUBCLOUD_SAMPLE_DATA_0)
fake_subcloud2['management-start-ip'] = "2.3.4.6"
fake_subcloud2['management-end-ip'] = "2.3.4.7"
self.assertRaises(db_exception.DBDuplicateEntry,
@ -201,10 +195,8 @@ class DBAPISubcloudTest(base.DCManagerTestCase):
self.assertEqual(name3, new_subclouds[2].name)
self.assertEqual(3, new_subclouds[2].id)
@file_data(utils.get_data_filepath('dcmanager', 'subclouds'))
def test_update_subcloud(self, value):
fake_subcloud = utils.create_subcloud_dict(value)
# name = fake_subcloud['name']
def test_update_subcloud(self):
fake_subcloud = utils.create_subcloud_dict(base.SUBCLOUD_SAMPLE_DATA_0)
subcloud = self.create_subcloud(self.ctx, fake_subcloud)
self.assertIsNotNone(subcloud)
@ -229,10 +221,8 @@ class DBAPISubcloudTest(base.DCManagerTestCase):
self.assertEqual(software_version,
updated_subcloud.software_version)
@file_data(utils.get_data_filepath('dcmanager', 'subclouds'))
def test_delete_subcloud(self, value):
fake_subcloud = utils.create_subcloud_dict(value)
# name = fake_subcloud['name']
def test_delete_subcloud(self):
fake_subcloud = utils.create_subcloud_dict(base.SUBCLOUD_SAMPLE_DATA_0)
subcloud = self.create_subcloud(self.ctx, fake_subcloud)
self.assertIsNotNone(subcloud)
@ -242,9 +232,8 @@ class DBAPISubcloudTest(base.DCManagerTestCase):
db_api.subcloud_get,
self.ctx, subcloud.id)
@file_data(utils.get_data_filepath('dcmanager', 'subclouds'))
def test_subcloud_get_by_name(self, value):
fake_subcloud = utils.create_subcloud_dict(value)
def test_subcloud_get_by_name(self):
fake_subcloud = utils.create_subcloud_dict(base.SUBCLOUD_SAMPLE_DATA_0)
name = fake_subcloud['name']
subcloud = self.create_subcloud(self.ctx, fake_subcloud)
self.assertIsNotNone(subcloud)
@ -259,10 +248,8 @@ class DBAPISubcloudTest(base.DCManagerTestCase):
db_api.subcloud_get_by_name,
self.ctx, name)
@file_data(utils.get_data_filepath('dcmanager', 'subclouds'))
def test_create_subcloud_status(self, value):
fake_subcloud = utils.create_subcloud_dict(value)
# name = fake_subcloud['name']
def test_create_subcloud_status(self):
fake_subcloud = utils.create_subcloud_dict(base.SUBCLOUD_SAMPLE_DATA_0)
subcloud = self.create_subcloud(self.ctx, fake_subcloud)
self.assertIsNotNone(subcloud)
@ -279,10 +266,8 @@ class DBAPISubcloudTest(base.DCManagerTestCase):
self.assertEqual(consts.SYNC_STATUS_UNKNOWN,
new_subcloud_status.sync_status)
@file_data(utils.get_data_filepath('dcmanager', 'subclouds'))
def test_create_multiple_subcloud_statuses(self, value):
fake_subcloud = utils.create_subcloud_dict(value)
# name = fake_subcloud['name']
def test_create_multiple_subcloud_statuses(self):
fake_subcloud = utils.create_subcloud_dict(base.SUBCLOUD_SAMPLE_DATA_0)
subcloud = self.create_subcloud(self.ctx, fake_subcloud)
self.assertIsNotNone(subcloud)
@ -315,10 +300,8 @@ class DBAPISubcloudTest(base.DCManagerTestCase):
new_subcloud_statuses[2].endpoint_type)
self.assertEqual(3, new_subcloud_statuses[2].id)
@file_data(utils.get_data_filepath('dcmanager', 'subclouds'))
def test_update_subcloud_status(self, value):
fake_subcloud = utils.create_subcloud_dict(value)
# name = fake_subcloud['name']
def test_update_subcloud_status(self):
fake_subcloud = utils.create_subcloud_dict(base.SUBCLOUD_SAMPLE_DATA_0)
subcloud = self.create_subcloud(self.ctx, fake_subcloud)
self.assertIsNotNone(subcloud)
@ -341,10 +324,8 @@ class DBAPISubcloudTest(base.DCManagerTestCase):
self.assertEqual(endpoint_type, updated_subcloud_status.endpoint_type)
self.assertEqual(sync_status, updated_subcloud_status.sync_status)
@file_data(utils.get_data_filepath('dcmanager', 'subclouds'))
def test_delete_subcloud_status(self, value):
fake_subcloud = utils.create_subcloud_dict(value)
# name = fake_subcloud['name']
def test_delete_subcloud_status(self):
fake_subcloud = utils.create_subcloud_dict(base.SUBCLOUD_SAMPLE_DATA_0)
subcloud = self.create_subcloud(self.ctx, fake_subcloud)
self.assertIsNotNone(subcloud)
@ -358,10 +339,8 @@ class DBAPISubcloudTest(base.DCManagerTestCase):
db_api.subcloud_status_get,
self.ctx, subcloud.id, endpoint_type)
@file_data(utils.get_data_filepath('dcmanager', 'subclouds'))
def test_cascade_delete_subcloud_status(self, value):
fake_subcloud = utils.create_subcloud_dict(value)
# name = fake_subcloud['name']
def test_cascade_delete_subcloud_status(self):
fake_subcloud = utils.create_subcloud_dict(base.SUBCLOUD_SAMPLE_DATA_0)
subcloud = self.create_subcloud(self.ctx, fake_subcloud)
self.assertIsNotNone(subcloud)
@ -378,9 +357,8 @@ class DBAPISubcloudTest(base.DCManagerTestCase):
db_api.subcloud_status_get,
self.ctx, subcloud.id, endpoint_type)
@file_data(utils.get_data_filepath('dcmanager', 'subclouds'))
def test_subcloud_status_get_all_by_name(self, value):
fake_subcloud = utils.create_subcloud_dict(value)
def test_subcloud_status_get_all_by_name(self):
fake_subcloud = utils.create_subcloud_dict(base.SUBCLOUD_SAMPLE_DATA_0)
name = fake_subcloud['name']
subcloud = self.create_subcloud(self.ctx, fake_subcloud)
self.assertIsNotNone(subcloud)
@ -414,10 +392,8 @@ class DBAPISubcloudTest(base.DCManagerTestCase):
new_subcloud_statuses[2].endpoint_type)
self.assertEqual(3, new_subcloud_statuses[2].id)
@file_data(utils.get_data_filepath('dcmanager', 'subclouds'))
def test_subcloud_status_get_all_by_non_existing_name(self, value):
fake_subcloud = utils.create_subcloud_dict(value)
# name = fake_subcloud['name']
def test_subcloud_status_get_all_by_non_existing_name(self):
fake_subcloud = utils.create_subcloud_dict(base.SUBCLOUD_SAMPLE_DATA_0)
subcloud = self.create_subcloud(self.ctx, fake_subcloud)
self.assertIsNotNone(subcloud)

View File

@ -36,9 +36,6 @@ from dcmanager.tests import utils
from dcorch.common import consts as dcorch_consts
from dcorch.rpc import client as dcorch_rpc_client
from ddt import ddt
from ddt import file_data
class FakeDCOrchAPI(object):
def __init__(self):
@ -119,7 +116,6 @@ class Subcloud(object):
self.updated_at = timeutils.utcnow()
@ddt
class TestSubcloudManager(base.DCManagerTestCase):
def setUp(self):
super(TestSubcloudManager, self).setUp()
@ -162,7 +158,6 @@ class TestSubcloudManager(base.DCManagerTestCase):
self.assertEqual('localhost', sm.host)
self.assertEqual(self.ctx, sm.context)
@file_data(utils.get_data_filepath('dcmanager', 'subclouds'))
@mock.patch.object(subcloud_manager.SubcloudManager,
'_delete_subcloud_inventory')
@mock.patch.object(dcorch_rpc_client, 'EngineClient')
@ -180,15 +175,14 @@ class TestSubcloudManager(base.DCManagerTestCase):
'keyring')
@mock.patch.object(threading.Thread,
'start')
def test_add_subcloud(self, value, mock_thread_start, mock_keyring,
def test_add_subcloud(self, mock_thread_start, mock_keyring,
mock_write_subcloud_ansible_config,
mock_create_subcloud_inventory,
mock_create_addn_hosts, mock_sysinv_client,
mock_db_api, mock_keystone_client, mock_context,
mock_dcorch_rpc_client,
mock_delete_subcloud_inventory):
values = utils.create_subcloud_dict(value)
values = utils.create_subcloud_dict(base.SUBCLOUD_SAMPLE_DATA_0)
controllers = FAKE_CONTROLLERS
services = FAKE_SERVICES
mock_context.get_admin_context.return_value = self.ctx
@ -211,7 +205,6 @@ class TestSubcloudManager(base.DCManagerTestCase):
mock_keyring.get_password.assert_called()
mock_thread_start.assert_called_once()
@file_data(utils.get_data_filepath('dcmanager', 'subclouds'))
@mock.patch.object(dcorch_rpc_client, 'EngineClient')
@mock.patch.object(subcloud_manager, 'context')
@mock.patch.object(subcloud_manager, 'db_api')
@ -219,7 +212,7 @@ class TestSubcloudManager(base.DCManagerTestCase):
@mock.patch.object(subcloud_manager, 'KeystoneClient')
@mock.patch.object(subcloud_manager.SubcloudManager,
'_create_addn_hosts_dc')
def test_delete_subcloud(self, value, mock_create_addn_hosts,
def test_delete_subcloud(self, mock_create_addn_hosts,
mock_keystone_client,
mock_sysinv_client,
mock_db_api,
@ -227,7 +220,7 @@ class TestSubcloudManager(base.DCManagerTestCase):
mock_dcorch_rpc_client):
controllers = FAKE_CONTROLLERS
mock_context.get_admin_context.return_value = self.ctx
data = utils.create_subcloud_dict(value)
data = utils.create_subcloud_dict(base.SUBCLOUD_SAMPLE_DATA_0)
fake_subcloud = Subcloud(data, False)
mock_db_api.subcloud_get.return_value = fake_subcloud
mock_sysinv_client().get_controller_hosts.return_value = controllers
@ -238,16 +231,15 @@ class TestSubcloudManager(base.DCManagerTestCase):
mock_db_api.subcloud_destroy.assert_called_once()
mock_create_addn_hosts.assert_called_once()
@file_data(utils.get_data_filepath('dcmanager', 'subclouds'))
@mock.patch.object(dcorch_rpc_client, 'EngineClient')
@mock.patch.object(subcloud_manager, 'context')
@mock.patch.object(subcloud_manager, 'KeystoneClient')
@mock.patch.object(subcloud_manager, 'db_api')
def test_update_subcloud(self, value, mock_db_api,
def test_update_subcloud(self, mock_db_api,
mock_endpoint, mock_context,
mock_dcorch_rpc_client):
mock_context.get_admin_context.return_value = self.ctx
data = utils.create_subcloud_dict(value)
data = utils.create_subcloud_dict(base.SUBCLOUD_SAMPLE_DATA_0)
subcloud_result = Subcloud(data, True)
mock_db_api.subcloud_get.return_value = subcloud_result
mock_db_api.subcloud_update.return_value = subcloud_result

View File

@ -21,7 +21,6 @@
#
import eventlet
import os
import random
import sqlalchemy
import string
@ -95,19 +94,6 @@ def wait_until_true(predicate, timeout=60, sleep=1, exception=None):
eventlet.sleep(sleep)
def get_current_cfg():
f_name = os.environ['CURRENT_CFG_FILE']
cfg = ''
with open(f_name) as f:
cfg = f.readline()
return cfg
def get_data_filepath(db, table):
cfg = get_current_cfg()
return "%s/%s/%s.json" % (cfg, db, table)
def create_subcloud_dict(data_list):
return {'id': data_list[0],
'name': data_list[1],

View File

@ -1,3 +0,0 @@
{
"migrate_version_0": ["dcmanager", "/usr/lib/python2.7/site-packages/dcmanager/db/sqlalchemy/migrate_repo", 1]
}

View File

@ -1,6 +0,0 @@
{
"strategy_steps_0": [63, 7, 3, "complete", "", "2018-05-18 00:00:14.073539", "2018-05-18 00:03:05.38425", "NULL", "NULL", "2018-05-17 23:50:59.230807", "2018-05-18 00:03:05.389346", "NULL", 0],
"strategy_steps_1": [60, "NULL", 1, "complete", "", "2018-05-17 23:51:13.588264", "2018-05-17 23:54:53.791109", "NULL", "NULL", "2018-05-17 23:50:59.223942", "2018-05-17 23:54:53.796026", "NULL", 0],
"strategy_steps_2": [62, 6, 2, "complete", "", "2018-05-17 23:55:03.805419", "2018-05-17 23:59:05.153763", "NULL", "NULL", "2018-05-17 23:50:59.228584", "2018-05-17 23:59:05.159172", "NULL", 0],
"strategy_steps_3": [61, 1, 2, "complete", "", "2018-05-17 23:55:03.798957", "2018-05-18 00:00:05.185775", "NULL", "NULL", "2018-05-17 23:50:59.226117", "2018-05-18 00:00:05.191001", "NULL", 0]
}

View File

@ -1,17 +0,0 @@
{
"subcloud_status_0": [32, 7, "volume", "in-sync", "NULL", "NULL", "2018-05-15 14:45:48.96137", "2018-05-18 18:20:39.773185", "NULL", 0],
"subcloud_status_1": [34, 7, "network", "in-sync", "NULL", "NULL", "2018-05-15 14:45:48.965798", "2018-05-18 18:20:40.20996", "NULL", 0],
"subcloud_status_2": [33, 7, "compute", "in-sync", "NULL", "NULL", "2018-05-15 14:45:48.96369", "2018-05-18 18:20:40.647117", "NULL", 0],
"subcloud_status_3": [31, 7, "platform", "in-sync", "NULL", "NULL", "2018-05-15 14:45:48.959", "2018-05-18 18:20:40.647643", "NULL", 0],
"subcloud_status_4": [27, 6, "volume", "in-sync", "NULL", "NULL", "2018-05-15 14:45:12.516212", "2018-05-18 18:20:53.848545", "NULL", 0],
"subcloud_status_5": [29, 6, "network", "in-sync", "NULL", "NULL", "2018-05-15 14:45:12.520688", "2018-05-18 18:20:54.318122", "NULL", 0],
"subcloud_status_6": [26, 6, "platform", "in-sync", "NULL", "NULL", "2018-05-15 14:45:12.512624", "2018-05-18 18:20:54.800959", "NULL", 0],
"subcloud_status_7": [28, 6, "compute", "in-sync", "NULL", "NULL", "2018-05-15 14:45:12.518589", "2018-05-18 18:20:54.801511", "NULL", 0],
"subcloud_status_8": [35, 7, "patching", "in-sync", "NULL", "NULL", "2018-05-15 14:45:48.968028", "2018-05-18 18:24:52.93953", "NULL", 0],
"subcloud_status_9": [30, 6, "patching", "in-sync", "NULL", "NULL", "2018-05-15 14:45:12.522906", "2018-05-18 18:24:53.403192", "NULL", 0],
"subcloud_status_10": [2, 1, "volume", "in-sync", "NULL", "NULL", "2018-04-11 17:01:48.55157", "2018-05-24 00:17:37.344778", "NULL", 0],
"subcloud_status_11": [4, 1, "network", "in-sync", "NULL", "NULL", "2018-04-11 17:01:48.555564", "2018-05-24 00:17:37.799951", "NULL", 0],
"subcloud_status_12": [1, 1, "platform", "in-sync", "NULL", "NULL", "2018-04-11 17:01:48.548357", "2018-05-24 00:17:38.353609", "NULL", 0],
"subcloud_status_13": [3, 1, "compute", "in-sync", "NULL", "NULL", "2018-04-11 17:01:48.553623", "2018-05-24 00:17:38.354505", "NULL", 0],
"subcloud_status_14": [5, 1, "patching", "in-sync", "NULL", "NULL", "2018-04-11 17:01:48.557433", "2018-05-24 00:17:42.564325", "NULL", 0]
}

View File

@ -1,5 +0,0 @@
{
"subclouds_0": [6, "subcloud-4", "wcp85 subcloud", "Ottawa-PheonixLab-Aisle_3-Rack_C", "18.03", "managed", "online", "fd01:3::0/64", "fd01:3::1", "fd01:3::2", "fd01:3::f", "fd01:1::1", 0, "NULL", "NULL", "2018-05-15 14:45:12.508708", "2018-05-24 10:48:18.090931", "NULL", 0],
"subclouds_1": [1, "subcloud-1", "wcp80 subcloud", "Ottawa-PheonixLab-Aisle_3-Rack_B", "18.03", "managed", "online", "fd01:2::0/64", "fd01:2::1", "fd01:2::2", "fd01:2::f", "fd01:1::1", 0, "NULL", "NULL", "2018-04-11 17:01:48.54467", "2018-05-24 00:17:34.74161", "NULL", 0],
"subclouds_2": [7, "subcloud-5", "wcp87 subcloud", "Ottawa-PheonixLab-Aisle_4-Rack_B", "18.03", "managed", "online", "fd01:4::0/64", "fd01:4::1", "fd01:4::2", "fd01:4::f", "fd01:1::1", 0, "NULL", "NULL", "2018-05-15 14:45:48.95625", "2018-05-24 10:48:17.907767", "NULL", 0]
}

View File

@ -1,3 +0,0 @@
{
"sw_update_opts_default_0": [1, "NULL", "parallel", "parallel", 2, "stop-start", "relaxed", "NULL", "NULL", "NULL", "2018-05-16 13:41:44.330145", "NULL", 0]
}

View File

@ -1,3 +0,0 @@
{
"sw_update_strategy_0": [21, "patch", "parallel", 2, true, "complete", "NULL", "NULL", "2018-05-17 23:50:59.221342", "2018-05-18 00:03:14.24641", "NULL", 0]
}

View File

@ -1,30 +0,0 @@
{
"assignment_0": ["UserProject", "500b2ba0791e44a780d4dad3c5a1ff31", "8803689162424f60a71e4642e9dc2b9e", "59fa225368524bf6974f76a25050143b", false],
"assignment_1": ["UserProject", "81eed996f2a346a3b5282fe2a881db9b", "f3b78df9bbd74d6b8bbf8c5f08427ca7", "59fa225368524bf6974f76a25050143b", false],
"assignment_2": ["UserProject", "4abaa160c36846328a482217de0112af", "f3b78df9bbd74d6b8bbf8c5f08427ca7", "59fa225368524bf6974f76a25050143b", false],
"assignment_3": ["UserProject", "c5d07e41f78747949fbc1de84168a44f", "f3b78df9bbd74d6b8bbf8c5f08427ca7", "59fa225368524bf6974f76a25050143b", false],
"assignment_4": ["UserProject", "63dd0fb409264a43b7dbfe9582b8023d", "f3b78df9bbd74d6b8bbf8c5f08427ca7", "59fa225368524bf6974f76a25050143b", false],
"assignment_5": ["UserProject", "6cf3cfc5d26f458daf66802d8e8a2e2a", "f3b78df9bbd74d6b8bbf8c5f08427ca7", "59fa225368524bf6974f76a25050143b", false],
"assignment_6": ["UserProject", "a757fb8d624b46b4b10eea1b4d2ca0d2", "f3b78df9bbd74d6b8bbf8c5f08427ca7", "59fa225368524bf6974f76a25050143b", false],
"assignment_7": ["UserProject", "8ff17967605a4240b8a6c15ed4bf10f1", "f3b78df9bbd74d6b8bbf8c5f08427ca7", "59fa225368524bf6974f76a25050143b", false],
"assignment_8": ["UserProject", "500b2ba0791e44a780d4dad3c5a1ff31", "8803689162424f60a71e4642e9dc2b9e", "9fe2ff9ee4384b1894a90878d3e92bab", false],
"assignment_9": ["UserProject", "500b2ba0791e44a780d4dad3c5a1ff31", "8803689162424f60a71e4642e9dc2b9e", "ef2e357b0d4d4bcaaa6ae303c7d58d7e", false],
"assignment_10": ["UserProject", "04facea7432848c9bfdf3780bb51612e", "f3b78df9bbd74d6b8bbf8c5f08427ca7", "59fa225368524bf6974f76a25050143b", false],
"assignment_11": ["UserProject", "04facea7432848c9bfdf3780bb51612e", "8803689162424f60a71e4642e9dc2b9e", "59fa225368524bf6974f76a25050143b", false],
"assignment_12": ["UserProject", "c455073c30044db8908630595699d874", "f3b78df9bbd74d6b8bbf8c5f08427ca7", "59fa225368524bf6974f76a25050143b", false],
"assignment_13": ["UserProject", "c455073c30044db8908630595699d874", "f3b78df9bbd74d6b8bbf8c5f08427ca7", "1f62f45b748b4c5db66f97c715ecf1ae", false],
"assignment_14": ["UserDomain", "f94aa82e49dd4aaa8bf1c80fee109234", "2423d6c7853145a798e6491ca9de6e2b", "59fa225368524bf6974f76a25050143b", false],
"assignment_15": ["UserProject", "146482c0aba84e35a5c1a507cff9db3d", "f3b78df9bbd74d6b8bbf8c5f08427ca7", "59fa225368524bf6974f76a25050143b", false],
"assignment_16": ["UserProject", "118a09e72d6a4194af383285cb7e579a", "f3b78df9bbd74d6b8bbf8c5f08427ca7", "59fa225368524bf6974f76a25050143b", false],
"assignment_17": ["UserProject", "692bd0a53c414d6dbbd0ba4d6fdb3c49", "f3b78df9bbd74d6b8bbf8c5f08427ca7", "59fa225368524bf6974f76a25050143b", false],
"assignment_18": ["UserProject", "5f4d401253a74cc8ab507957b9cafb29", "f3b78df9bbd74d6b8bbf8c5f08427ca7", "59fa225368524bf6974f76a25050143b", false],
"assignment_19": ["UserProject", "f1cc67bbf0d84c89a1df3067b538e1b8", "f3b78df9bbd74d6b8bbf8c5f08427ca7", "59fa225368524bf6974f76a25050143b", false],
"assignment_20": ["UserProject", "4a2c1f4c8ae942b19e388576e93d1ced", "f3b78df9bbd74d6b8bbf8c5f08427ca7", "59fa225368524bf6974f76a25050143b", false],
"assignment_21": ["UserProject", "d1399977957645e4a1e26c1b7b1e6d35", "9008c3fc102040cd8149b5c0d8aa06a3", "9fe2ff9ee4384b1894a90878d3e92bab", false],
"assignment_22": ["UserProject", "500b2ba0791e44a780d4dad3c5a1ff31", "9008c3fc102040cd8149b5c0d8aa06a3", "9fe2ff9ee4384b1894a90878d3e92bab", false],
"assignment_23": ["UserProject", "5ad8271fc6bc432ab80685945bc5b346", "6ecc44a6b24e4c398dc749f1386b2ced", "9fe2ff9ee4384b1894a90878d3e92bab", false],
"assignment_24": ["UserProject", "500b2ba0791e44a780d4dad3c5a1ff31", "6ecc44a6b24e4c398dc749f1386b2ced", "9fe2ff9ee4384b1894a90878d3e92bab", false],
"assignment_25": ["UserProject", "73403639b14c40e6b288c0e2cd3707bc", "f3b78df9bbd74d6b8bbf8c5f08427ca7", "59fa225368524bf6974f76a25050143b", false],
"assignment_26": ["UserProject", "872e8c1b48c640c59189cf1587bd4e41", "f3b78df9bbd74d6b8bbf8c5f08427ca7", "59fa225368524bf6974f76a25050143b", false],
"assignment_27": ["UserProject", "f85b8eca57a441838cfe5a39d33230b5", "f3b78df9bbd74d6b8bbf8c5f08427ca7", "59fa225368524bf6974f76a25050143b", false]
}

View File

@ -1,185 +0,0 @@
{
"endpoint_0": ["9785cc7f99b6469ba6fe89bd8d5b9072", "NULL", "admin", "7d48ddb964034eb588e557b976d11cdf", "http://[fd01:1::2]:9292", "{}", true, "SystemController"],
"endpoint_1": ["2b627b437d3c4412aa0581cf1b0fc8cb", "NULL", "internal", "7d48ddb964034eb588e557b976d11cdf", "http://[fd01:1::2]:9292", "{}", true, "SystemController"],
"endpoint_2": ["171c04c06ec4436daec6604a2ded6e9a", "NULL", "public", "7d48ddb964034eb588e557b976d11cdf", "http://128.224.151.162:9292", "{}", true, "SystemController"],
"endpoint_3": ["1645bfec421c4d88898bea1284dc8d89", "NULL", "admin", "c4ae85afaf7b465190d927e11da3eb38", "http://[fd01:1::2]:28774/v2.1/%(tenant_id)s", "{}", true, "SystemController"],
"endpoint_4": ["f93ed1fdabb04b7f913da53218a242e1", "NULL", "internal", "c4ae85afaf7b465190d927e11da3eb38", "http://[fd01:1::2]:28774/v2.1/%(tenant_id)s", "{}", true, "SystemController"],
"endpoint_5": ["fa55665905be43d3b47472b580726690", "NULL", "public", "c4ae85afaf7b465190d927e11da3eb38", "http://128.224.151.162:28774/v2.1/%(tenant_id)s", "{}", true, "SystemController"],
"endpoint_6": ["15b0341250be443287cf4c333bec7ca8", "NULL", "admin", "9754bb0a6cba4ae4b62c1a4e825964a5", "http://[fd01:1::2]:8119/v1.0", "{}", true, "SystemController"],
"endpoint_7": ["70ede9a42a8a48f68be78622b9ca8aa7", "NULL", "internal", "9754bb0a6cba4ae4b62c1a4e825964a5", "http://[fd01:1::2]:8119/v1.0", "{}", true, "SystemController"],
"endpoint_8": ["42f9c95f20f84bfd9c05f5417eeea7ba", "NULL", "public", "9754bb0a6cba4ae4b62c1a4e825964a5", "http://128.224.151.162:8119/v1.0", "{}", true, "SystemController"],
"endpoint_9": ["45be189e3e1448ab92930534a950d5a2", "NULL", "admin", "6cfd11045b1e4c0badcb56f18428ab5b", "http://[fd01:1::2]:29696/", "{}", true, "SystemController"],
"endpoint_10": ["4d29f266e3524fd28070ae89d9bcc218", "NULL", "internal", "6cfd11045b1e4c0badcb56f18428ab5b", "http://[fd01:1::2]:29696/", "{}", true, "SystemController"],
"endpoint_11": ["a78b26ecbba74db1802293fcfacd584a", "NULL", "public", "6cfd11045b1e4c0badcb56f18428ab5b", "http://128.224.151.162:29696/", "{}", true, "SystemController"],
"endpoint_12": ["7a42e40aac4040708fd23b571c650026", "NULL", "admin", "c3677835d8024fa894929ea67b1e9fa0", "http://[fd01:1::2]:25491/", "{}", true, "SystemController"],
"endpoint_13": ["62844e21e90a42278026bca686192401", "NULL", "internal", "c3677835d8024fa894929ea67b1e9fa0", "http://[fd01:1::2]:25491/", "{}", true, "SystemController"],
"endpoint_14": ["7b6dd7d0bb504919952c162bd74bb1ae", "NULL", "public", "c3677835d8024fa894929ea67b1e9fa0", "http://128.224.151.162:25491/", "{}", true, "SystemController"],
"endpoint_15": ["c89c795cff5c45c7adc3b321943351ef", "NULL", "admin", "c3677835d8024fa894929ea67b1e9fa0", "http://[fd01:1::2]:5491", "{}", true, "RegionOne"],
"endpoint_16": ["4971b138f1e04b94aed46af88489fa53", "NULL", "internal", "c3677835d8024fa894929ea67b1e9fa0", "http://[fd01:1::2]:5491", "{}", true, "RegionOne"],
"endpoint_17": ["21aa3f2577f0402190f9a8758fdb2620", "NULL", "public", "c3677835d8024fa894929ea67b1e9fa0", "http://128.224.151.162:15491", "{}", true, "RegionOne"],
"endpoint_18": ["bd7d26e0755d498ebf4c846448936983", "NULL", "admin", "aa803a6f0ab84b68ad13a759b1b29525", "http://[fd01:1::2]:4545", "{}", true, "RegionOne"],
"endpoint_19": ["993f49cf95754c93884fc8eac180eda8", "NULL", "internal", "aa803a6f0ab84b68ad13a759b1b29525", "http://[fd01:1::2]:4545", "{}", true, "RegionOne"],
"endpoint_20": ["2821d84aec434123b039f3d7ab3fbaca", "NULL", "public", "aa803a6f0ab84b68ad13a759b1b29525", "http://128.224.151.162:4545", "{}", true, "RegionOne"],
"endpoint_21": ["8d8e469fd83f4608b025338c8e67e7e1", "NULL", "admin", "86328b93a3c84d63a1be7f7368138bdf", "http://[fd01:1::2]:8777", "{}", true, "RegionOne"],
"endpoint_22": ["2bf8cd48dfee4d339bfba53abccd20b4", "NULL", "internal", "86328b93a3c84d63a1be7f7368138bdf", "http://[fd01:1::2]:8777", "{}", true, "RegionOne"],
"endpoint_23": ["8cdf5229f64c46deb9ebe86d0aa88776", "NULL", "public", "86328b93a3c84d63a1be7f7368138bdf", "http://128.224.151.162:8777", "{}", true, "RegionOne"],
"endpoint_24": ["704878ca10f24d63a33b44139549f6e9", "NULL", "admin", "5fa3efb666204693a0d0ab05fb03140c", "http://[fd01:1::2]:5000/v3", "{}", true, "SystemController"],
"endpoint_25": ["736c4e7c5aa84384944c3907f1c1a6ae", "NULL", "internal", "5fa3efb666204693a0d0ab05fb03140c", "http://[fd01:1::2]:5000/v3", "{}", true, "SystemController"],
"endpoint_26": ["a4537dcfeefe4adeaf37cd100833ec12", "NULL", "public", "5fa3efb666204693a0d0ab05fb03140c", "http://128.224.151.162:5000/v3", "{}", true, "SystemController"],
"endpoint_27": ["8627ce33d93c4b769e295b83a7dc100b", "NULL", "admin", "b3dd49c87dfd40d08d19d2895d2bc9c6", "http://[fd01:1::2]:6385/v1", "{}", true, "RegionOne"],
"endpoint_28": ["8c11b80a30464d7791f4825d9ad14fca", "NULL", "internal", "b3dd49c87dfd40d08d19d2895d2bc9c6", "http://[fd01:1::2]:6385/v1", "{}", true, "RegionOne"],
"endpoint_29": ["3330af049c0547c1a400b8ce7a6f73f3", "NULL", "public", "b3dd49c87dfd40d08d19d2895d2bc9c6", "http://128.224.151.162:6385/v1", "{}", true, "RegionOne"],
"endpoint_30": ["89cb5c408a2a43979a22728abe3b7256", "NULL", "admin", "b3dd49c87dfd40d08d19d2895d2bc9c6", "http://[fd01:1::2]:26385/v1", "{}", true, "SystemController"],
"endpoint_31": ["0fdceccb9c6c476594a22b37fa717007", "NULL", "internal", "b3dd49c87dfd40d08d19d2895d2bc9c6", "http://[fd01:1::2]:26385/v1", "{}", true, "SystemController"],
"endpoint_32": ["5705066ec86c49f0b30f46677824f4a8", "NULL", "public", "b3dd49c87dfd40d08d19d2895d2bc9c6", "http://128.224.151.162:26385/v1", "{}", true, "SystemController"],
"endpoint_33": ["f0f5128e02654c33a6f438533b77ff86", "NULL", "admin", "c5834d3740504a69bf427385319b51a0", "http://[fd01:1::2]:28776/v3/%(tenant_id)s", "{}", true, "SystemController"],
"endpoint_34": ["66c462a7643046aab31d4afe6058200c", "NULL", "internal", "c5834d3740504a69bf427385319b51a0", "http://[fd01:1::2]:28776/v3/%(tenant_id)s", "{}", true, "SystemController"],
"endpoint_35": ["853aab978d8b41a78c381292f55c71f2", "NULL", "public", "c5834d3740504a69bf427385319b51a0", "http://128.224.151.162:28776/v3/%(tenant_id)s", "{}", true, "SystemController"],
"endpoint_36": ["d194fdcc00ea444887ca0666955a929f", "NULL", "admin", "8a5873d1ee914ccbae3c070d578d0d0d", "http://[fd01:1::2]:28776/v2/%(tenant_id)s", "{}", true, "SystemController"],
"endpoint_37": ["7492375879c34231949d75eef5fa7c5b", "NULL", "internal", "8a5873d1ee914ccbae3c070d578d0d0d", "http://[fd01:1::2]:28776/v2/%(tenant_id)s", "{}", true, "SystemController"],
"endpoint_38": ["3be8d1d22d44456c9a48c71bacc77ac9", "NULL", "public", "8a5873d1ee914ccbae3c070d578d0d0d", "http://128.224.151.162:28776/v2/%(tenant_id)s", "{}", true, "SystemController"],
"endpoint_39": ["baabaa1754d14732bcaca91acc6ac7bc", "NULL", "admin", "a15edc66a6394e18bda9f9256e7b470c", "http://[fd01:2::2]:8042", "{}", true, "subcloud-1"],
"endpoint_40": ["bb0598302d7644a8b9af8a39006e9dea", "NULL", "internal", "a15edc66a6394e18bda9f9256e7b470c", "http://[fd01:2::2]:8042", "{}", true, "subcloud-1"],
"endpoint_41": ["388ec02223e5470bbc5b12c0078f1d0e", "NULL", "public", "a15edc66a6394e18bda9f9256e7b470c", "http://128.224.150.18:8042", "{}", true, "subcloud-1"],
"endpoint_42": ["02c9dcf0a5074324b2f0c310bedac5fe", "NULL", "admin", "995cc229e9af44ec81c1c76073f4c733", "http://[fd01:2::2]:8778", "{}", true, "subcloud-1"],
"endpoint_43": ["ee61c87ae43d499a8937bcdf4b02da69", "NULL", "internal", "995cc229e9af44ec81c1c76073f4c733", "http://[fd01:2::2]:8778", "{}", true, "subcloud-1"],
"endpoint_44": ["9f8d2d7164624b0ebf7e6d95118d8657", "NULL", "public", "995cc229e9af44ec81c1c76073f4c733", "http://128.224.150.18:8778", "{}", true, "subcloud-1"],
"endpoint_45": ["bd0005e60acf47a6890f0867f683b209", "NULL", "admin", "ea41162395844d30af3e59efa3e6323e", "http://[fd01:2::2]:8000/v1/%(tenant_id)s", "{}", true, "subcloud-1"],
"endpoint_46": ["d4ef0e1fdb2f4fa885c8c8a6b878340e", "NULL", "internal", "ea41162395844d30af3e59efa3e6323e", "http://[fd01:2::2]:8000/v1/%(tenant_id)s", "{}", true, "subcloud-1"],
"endpoint_47": ["b9e4375f8b64466ca7b8c11f3bfcd335", "NULL", "public", "ea41162395844d30af3e59efa3e6323e", "http://128.224.150.18:8000/v1/%(tenant_id)s", "{}", true, "subcloud-1"],
"endpoint_48": ["fb7b4a9155c64e75801ba11955798fb5", "NULL", "admin", "6cfd11045b1e4c0badcb56f18428ab5b", "http://[fd01:2::2]:9696", "{}", true, "subcloud-1"],
"endpoint_49": ["773a9d739bbd4a03ba401c46225e412d", "NULL", "internal", "6cfd11045b1e4c0badcb56f18428ab5b", "http://[fd01:2::2]:9696", "{}", true, "subcloud-1"],
"endpoint_50": ["680c06a7db8e4457bb5d8b62810f98f5", "NULL", "public", "6cfd11045b1e4c0badcb56f18428ab5b", "http://128.224.150.18:9696", "{}", true, "subcloud-1"],
"endpoint_51": ["e07a8bbabd5343fa877de9c2425f662e", "NULL", "admin", "86328b93a3c84d63a1be7f7368138bdf", "http://[fd01:2::2]:8777", "{}", true, "subcloud-1"],
"endpoint_52": ["c7182c60c44c40c2945bbe3e288c2ff6", "NULL", "internal", "86328b93a3c84d63a1be7f7368138bdf", "http://[fd01:2::2]:8777", "{}", true, "subcloud-1"],
"endpoint_53": ["9bc906a5fcb84b96ba7f196b01119077", "NULL", "public", "86328b93a3c84d63a1be7f7368138bdf", "http://128.224.150.18:8777", "{}", true, "subcloud-1"],
"endpoint_54": ["40efcf0cf1934896ac204fff9599181f", "NULL", "admin", "d6f2ef7609f44c9aa0b40b15f9f93139", "http://[fd01:2::2]:8977", "{}", true, "subcloud-1"],
"endpoint_55": ["3c56e9f939aa4f48b48e0bd63a7e0e2d", "NULL", "admin", "aa803a6f0ab84b68ad13a759b1b29525", "http://[fd01:2::2]:4545", "{}", true, "subcloud-1"],
"endpoint_56": ["e0dc056cf41d48ada2a5128ff6d13c80", "NULL", "admin", "a15edc66a6394e18bda9f9256e7b470c", "http://[fd01:3::2]:8042", "{}", true, "subcloud-4"],
"endpoint_57": ["9c3669ebb2864fe49b00555a4cb720bf", "NULL", "admin", "995cc229e9af44ec81c1c76073f4c733", "http://[fd01:3::2]:8778", "{}", true, "subcloud-4"],
"endpoint_58": ["43d53656ac8e46e7875237e202e99896", "NULL", "public", "995cc229e9af44ec81c1c76073f4c733", "http://128.224.150.224:8778", "{}", true, "subcloud-4"],
"endpoint_59": ["1b6649177bbf4793ae70e09badeaf1fa", "NULL", "internal", "ea41162395844d30af3e59efa3e6323e", "http://[fd01:3::2]:8000/v1/%(tenant_id)s", "{}", true, "subcloud-4"],
"endpoint_60": ["19a92fce510743f9939a9a22299fc6ff", "NULL", "public", "6cfd11045b1e4c0badcb56f18428ab5b", "http://128.224.150.224:9696", "{}", true, "subcloud-4"],
"endpoint_61": ["f802be7e04a64c768150f0416e113fe1", "NULL", "admin", "aa803a6f0ab84b68ad13a759b1b29525", "http://[fd01:3::2]:4545", "{}", true, "subcloud-4"],
"endpoint_62": ["513e4e6a0e4840dd8de65742a1b0634d", "NULL", "internal", "aa803a6f0ab84b68ad13a759b1b29525", "http://[fd01:3::2]:4545", "{}", true, "subcloud-4"],
"endpoint_63": ["c17d425b28aa4589a42abf0c3ae89865", "NULL", "internal", "86328b93a3c84d63a1be7f7368138bdf", "http://[fd01:3::2]:8777", "{}", true, "subcloud-4"],
"endpoint_64": ["71b408d04b984a958090054093c6330a", "NULL", "public", "5fa3efb666204693a0d0ab05fb03140c", "http://128.224.151.162:5000/v3", "{}", true, "subcloud-4"],
"endpoint_65": ["549e1bd55f2e4218b5f2a03bc9859bf6", "NULL", "public", "d6f2ef7609f44c9aa0b40b15f9f93139", "http://128.224.150.224:8977", "{}", true, "subcloud-4"],
"endpoint_66": ["89606a1804a54f17ae67659d481fde20", "NULL", "internal", "7d48ddb964034eb588e557b976d11cdf", "http://[fd01:3::2]:9292", "{}", true, "subcloud-4"],
"endpoint_67": ["ecae4ccc0af242a98d978ff527e7e81b", "NULL", "admin", "b3dd49c87dfd40d08d19d2895d2bc9c6", "http://[fd01:3::2]:6385/v1", "{}", true, "subcloud-4"],
"endpoint_68": ["9b503e8a198f4221a716568dfe0a497f", "NULL", "public", "b3dd49c87dfd40d08d19d2895d2bc9c6", "http://128.224.150.224:6385/v1", "{}", true, "subcloud-4"],
"endpoint_69": ["f2209d54eb064311aeacb96a853e5867", "NULL", "public", "7d48ddb964034eb588e557b976d11cdf", "http://128.224.151.66:9292", "{}", true, "subcloud-5"],
"endpoint_70": ["8c761aabddf7450c95fcee0dd5f38bee", "NULL", "public", "995cc229e9af44ec81c1c76073f4c733", "http://128.224.151.66:8778", "{}", true, "subcloud-5"],
"endpoint_71": ["8c0e3189cf5e49f09dc3566321603e85", "NULL", "public", "ea41162395844d30af3e59efa3e6323e", "http://128.224.151.66:8000/v1/%(tenant_id)s", "{}", true, "subcloud-5"],
"endpoint_72": ["71575d7116ae4510b9115476a21bbb1b", "NULL", "admin", "c3677835d8024fa894929ea67b1e9fa0", "http://[fd01:4::2]:5491", "{}", true, "subcloud-5"],
"endpoint_73": ["73972411365647f2be7b7f6b4d302759", "NULL", "admin", "c4ae85afaf7b465190d927e11da3eb38", "http://[fd01:4::2]:8774/v2.1/%(tenant_id)s", "{}", true, "subcloud-5"],
"endpoint_74": ["52643da5712d4555a953d9f03b2bf332", "NULL", "admin", "aa803a6f0ab84b68ad13a759b1b29525", "http://[fd01:4::2]:4545", "{}", true, "subcloud-5"],
"endpoint_75": ["a51e43d1eb9b47c980c45efd8bac4c87", "NULL", "admin", "6cfd11045b1e4c0badcb56f18428ab5b", "http://[fd01:4::2]:9696", "{}", true, "subcloud-5"],
"endpoint_76": ["56ef199db23c43ecae7d94cc7222c854", "NULL", "internal", "6cfd11045b1e4c0badcb56f18428ab5b", "http://[fd01:4::2]:9696", "{}", true, "subcloud-5"],
"endpoint_77": ["ed96c299010b48eaa8eddee5cbf9df5e", "NULL", "public", "6cfd11045b1e4c0badcb56f18428ab5b", "http://128.224.151.66:9696", "{}", true, "subcloud-5"],
"endpoint_78": ["9fdb807e84124790b8c3ece35d15a0ef", "NULL", "public", "5fa3efb666204693a0d0ab05fb03140c", "http://128.224.151.162:5000/v3", "{}", true, "subcloud-5"],
"endpoint_79": ["ffa6c1cd10a94194a02e36a4937c343c", "NULL", "public", "d6f2ef7609f44c9aa0b40b15f9f93139", "http://128.224.151.66:8977", "{}", true, "subcloud-5"],
"endpoint_80": ["699aa011ead14997ac6f56d83ed95a8c", "NULL", "admin", "b3dd49c87dfd40d08d19d2895d2bc9c6", "http://[fd01:4::2]:6385/v1", "{}", true, "subcloud-5"],
"endpoint_81": ["24418e1fb27c4bd19138bd60ff84339b", "NULL", "internal", "c5834d3740504a69bf427385319b51a0", "http://[fd01:4::2]:8776/v3/%(tenant_id)s", "{}", true, "subcloud-5"],
"endpoint_82": ["f839413f6073428999df122e5e39c5a9", "NULL", "internal", "8a5873d1ee914ccbae3c070d578d0d0d", "http://[fd01:4::2]:8776/v2/%(tenant_id)s", "{}", true, "subcloud-5"],
"endpoint_83": ["6730c5f0390a4e66b24d87db41d0a0f6", "NULL", "public", "567f8aafa7844256b03e86655fa2bd3e", "http://128.224.151.66:8776/v1/%(tenant_id)s", "{}", true, "subcloud-5"],
"endpoint_84": ["22c6413d42234c0a98e91ed342bf7db7", "NULL", "internal", "c5834d3740504a69bf427385319b51a0", "http://[fd01:3::2]:8776/v3/%(tenant_id)s", "{}", true, "subcloud-4"],
"endpoint_85": ["98a5b15ccb424826922f5c919c5690a8", "NULL", "admin", "8a5873d1ee914ccbae3c070d578d0d0d", "http://[fd01:3::2]:8776/v2/%(tenant_id)s", "{}", true, "subcloud-4"],
"endpoint_86": ["da110ac1f03c4b9e817463225a4b2b83", "NULL", "public", "8a5873d1ee914ccbae3c070d578d0d0d", "http://128.224.150.224:8776/v2/%(tenant_id)s", "{}", true, "subcloud-4"],
"endpoint_87": ["f5167f307d1f4adc84e29d59b3fcbf7b", "NULL", "public", "567f8aafa7844256b03e86655fa2bd3e", "http://128.224.150.224:8776/v1/%(tenant_id)s", "{}", true, "subcloud-4"],
"endpoint_88": ["b9aebe07a0e64367931946c584657186", "NULL", "admin", "c3677835d8024fa894929ea67b1e9fa0", "http://[fd01:2::2]:5491", "{}", true, "subcloud-1"],
"endpoint_89": ["1b58cd57070740809875fb0ea84d1ed4", "NULL", "internal", "c3677835d8024fa894929ea67b1e9fa0", "http://[fd01:2::2]:5491", "{}", true, "subcloud-1"],
"endpoint_90": ["127083b5a58641778f84bd63378f14a3", "NULL", "public", "c3677835d8024fa894929ea67b1e9fa0", "http://128.224.150.18:15491", "{}", true, "subcloud-1"],
"endpoint_91": ["9849dbabbdd9472598b3c8001f42dd3f", "NULL", "admin", "5fa3efb666204693a0d0ab05fb03140c", "http://[fd01:1::2]:5000/v3", "{}", true, "subcloud-1"],
"endpoint_92": ["9b8814b1121a44948ca007a27982ee55", "NULL", "internal", "5fa3efb666204693a0d0ab05fb03140c", "http://[fd01:1::2]:5000/v3", "{}", true, "subcloud-1"],
"endpoint_93": ["f456d7f703e242139355140c0617c619", "NULL", "public", "5fa3efb666204693a0d0ab05fb03140c", "http://128.224.151.162:5000/v3", "{}", true, "subcloud-1"],
"endpoint_94": ["b2041b71fc2244dba94dea647dd35b7e", "NULL", "internal", "d6f2ef7609f44c9aa0b40b15f9f93139", "http://[fd01:2::2]:8977", "{}", true, "subcloud-1"],
"endpoint_95": ["29efd6682e1d435d807e991075bcf125", "NULL", "public", "d6f2ef7609f44c9aa0b40b15f9f93139", "http://128.224.150.18:8977", "{}", true, "subcloud-1"],
"endpoint_96": ["05731150463b47699ab8fef01b81d464", "NULL", "internal", "aa803a6f0ab84b68ad13a759b1b29525", "http://[fd01:2::2]:4545", "{}", true, "subcloud-1"],
"endpoint_97": ["5d347c0e475d40d385024705bb78c0d5", "NULL", "public", "aa803a6f0ab84b68ad13a759b1b29525", "http://128.224.150.18:4545", "{}", true, "subcloud-1"],
"endpoint_98": ["39dd7a4d128549e3ab1d65d04b2bd862", "NULL", "admin", "0efe25ad76f244e1bca9f6975cfe8b83", "http://[fd01:2::2]:8004/v1/%(tenant_id)s", "{}", true, "subcloud-1"],
"endpoint_99": ["497de517819045df9ca739bc3e121c89", "NULL", "internal", "0efe25ad76f244e1bca9f6975cfe8b83", "http://[fd01:2::2]:8004/v1/%(tenant_id)s", "{}", true, "subcloud-1"],
"endpoint_100": ["b772d9d3df6c446e8c0de2611c5627aa", "NULL", "public", "0efe25ad76f244e1bca9f6975cfe8b83", "http://128.224.150.18:8004/v1/%(tenant_id)s", "{}", true, "subcloud-1"],
"endpoint_101": ["7c27d2a668244dd8b35573df61cde0a0", "NULL", "admin", "7d48ddb964034eb588e557b976d11cdf", "http://[fd01:2::2]:9292", "{}", true, "subcloud-1"],
"endpoint_102": ["c006181bd2c34abca079453ddc862b78", "NULL", "internal", "7d48ddb964034eb588e557b976d11cdf", "http://[fd01:2::2]:9292", "{}", true, "subcloud-1"],
"endpoint_103": ["e884ae6f48fc4d2498e8735e1de545aa", "NULL", "public", "7d48ddb964034eb588e557b976d11cdf", "http://128.224.150.18:9292", "{}", true, "subcloud-1"],
"endpoint_104": ["2e5e16ddea9b43c4a6be55c7c57e762c", "NULL", "admin", "b3dd49c87dfd40d08d19d2895d2bc9c6", "http://[fd01:2::2]:6385/v1", "{}", true, "subcloud-1"],
"endpoint_105": ["e9820b3b3abe48f98548d4bc113bc905", "NULL", "internal", "b3dd49c87dfd40d08d19d2895d2bc9c6", "http://[fd01:2::2]:6385/v1", "{}", true, "subcloud-1"],
"endpoint_106": ["1506e9230fc948b2b267eec824bd97ae", "NULL", "public", "b3dd49c87dfd40d08d19d2895d2bc9c6", "http://128.224.150.18:6385/v1", "{}", true, "subcloud-1"],
"endpoint_107": ["6a5596c56479437a9c2fd2a78fe54d22", "NULL", "admin", "c4ae85afaf7b465190d927e11da3eb38", "http://[fd01:2::2]:8774/v2.1/%(tenant_id)s", "{}", true, "subcloud-1"],
"endpoint_108": ["af690a3d102b484fb5cf760ad143689a", "NULL", "internal", "c4ae85afaf7b465190d927e11da3eb38", "http://[fd01:2::2]:8774/v2.1/%(tenant_id)s", "{}", true, "subcloud-1"],
"endpoint_109": ["97ed35a6b02c46cfbeaddf20e6a1bd48", "NULL", "public", "c4ae85afaf7b465190d927e11da3eb38", "http://128.224.150.18:8774/v2.1/%(tenant_id)s", "{}", true, "subcloud-1"],
"endpoint_110": ["3e74d939f3684f6892640c5d6e6406d1", "NULL", "internal", "a15edc66a6394e18bda9f9256e7b470c", "http://[fd01:3::2]:8042", "{}", true, "subcloud-4"],
"endpoint_111": ["41b54ad4c80d45449f507db76083fb80", "NULL", "internal", "995cc229e9af44ec81c1c76073f4c733", "http://[fd01:3::2]:8778", "{}", true, "subcloud-4"],
"endpoint_112": ["0390cb283a53403e9545651a60bf348e", "NULL", "public", "ea41162395844d30af3e59efa3e6323e", "http://128.224.150.224:8000/v1/%(tenant_id)s", "{}", true, "subcloud-4"],
"endpoint_113": ["7c3fabf70c174ea4a4fe6a0c4712e6bf", "NULL", "admin", "6cfd11045b1e4c0badcb56f18428ab5b", "http://[fd01:3::2]:9696", "{}", true, "subcloud-4"],
"endpoint_114": ["0a338aef7a8b404aa0867e5a0205dc58", "NULL", "admin", "c3677835d8024fa894929ea67b1e9fa0", "http://[fd01:3::2]:5491", "{}", true, "subcloud-4"],
"endpoint_115": ["09dde1c9499e4ba198a44c18e74f0a09", "NULL", "public", "aa803a6f0ab84b68ad13a759b1b29525", "http://128.224.150.224:4545", "{}", true, "subcloud-4"],
"endpoint_116": ["56a76e94e60c4fd899a773001b272e47", "NULL", "public", "86328b93a3c84d63a1be7f7368138bdf", "http://128.224.150.224:8777", "{}", true, "subcloud-4"],
"endpoint_117": ["2a7cd8d550d94b90b93a15739fb5f79a", "NULL", "admin", "5fa3efb666204693a0d0ab05fb03140c", "http://[fd01:1::2]:5000/v3", "{}", true, "subcloud-4"],
"endpoint_118": ["4dc1caf31cff44ccb8585fe4f200a32c", "NULL", "admin", "d6f2ef7609f44c9aa0b40b15f9f93139", "http://[fd01:3::2]:8977", "{}", true, "subcloud-4"],
"endpoint_119": ["3fdab757ab134146bbd68c4521af397b", "NULL", "admin", "0efe25ad76f244e1bca9f6975cfe8b83", "http://[fd01:3::2]:8004/v1/%(tenant_id)s", "{}", true, "subcloud-4"],
"endpoint_120": ["17846cae6aaa41e6be9f26f30adcb6d7", "NULL", "internal", "0efe25ad76f244e1bca9f6975cfe8b83", "http://[fd01:3::2]:8004/v1/%(tenant_id)s", "{}", true, "subcloud-4"],
"endpoint_121": ["e67b03ac766f49059729a99a2754defa", "NULL", "public", "7d48ddb964034eb588e557b976d11cdf", "http://128.224.150.224:9292", "{}", true, "subcloud-4"],
"endpoint_122": ["81b25e9b817a46fd9654b1f478a9b5ce", "NULL", "internal", "b3dd49c87dfd40d08d19d2895d2bc9c6", "http://[fd01:3::2]:6385/v1", "{}", true, "subcloud-4"],
"endpoint_123": ["3cde2d8d8b5748f1966f06548cf65ec9", "NULL", "admin", "7d48ddb964034eb588e557b976d11cdf", "http://[fd01:4::2]:9292", "{}", true, "subcloud-5"],
"endpoint_124": ["3e817212004241988cb0731f2f79ef76", "NULL", "admin", "995cc229e9af44ec81c1c76073f4c733", "http://[fd01:4::2]:8778", "{}", true, "subcloud-5"],
"endpoint_125": ["1ed1542248fc483fbc7ce26ca60ac00b", "NULL", "admin", "ea41162395844d30af3e59efa3e6323e", "http://[fd01:4::2]:8000/v1/%(tenant_id)s", "{}", true, "subcloud-5"],
"endpoint_126": ["4136388469804921a749485b44ebc90b", "NULL", "admin", "a15edc66a6394e18bda9f9256e7b470c", "http://[fd01:4::2]:8042", "{}", true, "subcloud-5"],
"endpoint_127": ["745d8b18ddae4353992dc123bf79ca66", "NULL", "internal", "a15edc66a6394e18bda9f9256e7b470c", "http://[fd01:4::2]:8042", "{}", true, "subcloud-5"],
"endpoint_128": ["38d157631f04457d8a9e1e1a55e8879b", "NULL", "internal", "c3677835d8024fa894929ea67b1e9fa0", "http://[fd01:4::2]:5491", "{}", true, "subcloud-5"],
"endpoint_129": ["b58d3551b31042dc8f1eeab3db053b36", "NULL", "internal", "c4ae85afaf7b465190d927e11da3eb38", "http://[fd01:4::2]:8774/v2.1/%(tenant_id)s", "{}", true, "subcloud-5"],
"endpoint_130": ["b27ddfa5a6c940c180730d70c02b448e", "NULL", "internal", "aa803a6f0ab84b68ad13a759b1b29525", "http://[fd01:4::2]:4545", "{}", true, "subcloud-5"],
"endpoint_131": ["4d69300126184d108511e4d9a1ae829c", "NULL", "admin", "5fa3efb666204693a0d0ab05fb03140c", "http://[fd01:1::2]:5000/v3", "{}", true, "subcloud-5"],
"endpoint_132": ["03e1eb2e1f6a4041a3bd721c25bca9cd", "NULL", "admin", "d6f2ef7609f44c9aa0b40b15f9f93139", "http://[fd01:4::2]:8977", "{}", true, "subcloud-5"],
"endpoint_133": ["ba748586c1e74328a95d240566abd5da", "NULL", "admin", "86328b93a3c84d63a1be7f7368138bdf", "http://[fd01:4::2]:8777", "{}", true, "subcloud-5"],
"endpoint_134": ["f1c694830a79479fb6efa8bc20af509d", "NULL", "internal", "86328b93a3c84d63a1be7f7368138bdf", "http://[fd01:4::2]:8777", "{}", true, "subcloud-5"],
"endpoint_135": ["83fda4af04c9475ba8906e4d1e25fc20", "NULL", "public", "86328b93a3c84d63a1be7f7368138bdf", "http://128.224.151.66:8777", "{}", true, "subcloud-5"],
"endpoint_136": ["b649a5f6c14b4f9db37d416b9044ac73", "NULL", "internal", "0efe25ad76f244e1bca9f6975cfe8b83", "http://[fd01:4::2]:8004/v1/%(tenant_id)s", "{}", true, "subcloud-5"],
"endpoint_137": ["46c653ca16294222be50ee0c6a530943", "NULL", "public", "0efe25ad76f244e1bca9f6975cfe8b83", "http://128.224.151.66:8004/v1/%(tenant_id)s", "{}", true, "subcloud-5"],
"endpoint_138": ["22c5a12627d54fb49d6ea7ae28efc60d", "NULL", "public", "b3dd49c87dfd40d08d19d2895d2bc9c6", "http://128.224.151.66:6385/v1", "{}", true, "subcloud-5"],
"endpoint_139": ["8170c8c7bd1f42f285b6eceb9a024134", "NULL", "public", "c5834d3740504a69bf427385319b51a0", "http://128.224.151.66:8776/v3/%(tenant_id)s", "{}", true, "subcloud-5"],
"endpoint_140": ["41f38595b5f249b7ad9cc6fdf24d1f7c", "NULL", "admin", "567f8aafa7844256b03e86655fa2bd3e", "http://[fd01:4::2]:8776/v1/%(tenant_id)s", "{}", true, "subcloud-5"],
"endpoint_141": ["adaa3140e68f4ea4a7e377a5a5b640bc", "NULL", "admin", "c5834d3740504a69bf427385319b51a0", "http://[fd01:3::2]:8776/v3/%(tenant_id)s", "{}", true, "subcloud-4"],
"endpoint_142": ["33b40962242e4afdb3ef6787af04e5a3", "NULL", "public", "c5834d3740504a69bf427385319b51a0", "http://128.224.150.224:8776/v3/%(tenant_id)s", "{}", true, "subcloud-4"],
"endpoint_143": ["744d6951d82e47dc9fc48763d1b18d60", "NULL", "internal", "8a5873d1ee914ccbae3c070d578d0d0d", "http://[fd01:3::2]:8776/v2/%(tenant_id)s", "{}", true, "subcloud-4"],
"endpoint_144": ["1dd34422beca4c2bb027d6e11a40b2c4", "NULL", "admin", "567f8aafa7844256b03e86655fa2bd3e", "http://[fd01:3::2]:8776/v1/%(tenant_id)s", "{}", true, "subcloud-4"],
"endpoint_145": ["fcf6a770edc2486aa11e4b119e5de873", "NULL", "internal", "567f8aafa7844256b03e86655fa2bd3e", "http://[fd01:3::2]:8776/v1/%(tenant_id)s", "{}", true, "subcloud-4"],
"endpoint_146": ["ef47b072365f475a8a56eeff153264ce", "NULL", "admin", "c5834d3740504a69bf427385319b51a0", "http://[fd01:2::2]:8776/v3/%(tenant_id)s", "{}", true, "subcloud-1"],
"endpoint_147": ["b461104aa21049aca0a71f8d4ee862e3", "NULL", "internal", "c5834d3740504a69bf427385319b51a0", "http://[fd01:2::2]:8776/v3/%(tenant_id)s", "{}", true, "subcloud-1"],
"endpoint_148": ["67f79a87a6954f489dd9789e844e5998", "NULL", "public", "c5834d3740504a69bf427385319b51a0", "http://128.224.150.18:8776/v3/%(tenant_id)s", "{}", true, "subcloud-1"],
"endpoint_149": ["72264b75ad9e46578d882d9d96301188", "NULL", "admin", "567f8aafa7844256b03e86655fa2bd3e", "http://[fd01:2::2]:8776/v1/%(tenant_id)s", "{}", true, "subcloud-1"],
"endpoint_150": ["be6af8a2b8a5469b9dc8f2db2e2fc787", "NULL", "internal", "567f8aafa7844256b03e86655fa2bd3e", "http://[fd01:2::2]:8776/v1/%(tenant_id)s", "{}", true, "subcloud-1"],
"endpoint_151": ["fa360cf6f5684c34be7c3ab5998b3a2c", "NULL", "public", "567f8aafa7844256b03e86655fa2bd3e", "http://128.224.150.18:8776/v1/%(tenant_id)s", "{}", true, "subcloud-1"],
"endpoint_152": ["37b87d149089406f81dba376f5309357", "NULL", "admin", "8a5873d1ee914ccbae3c070d578d0d0d", "http://[fd01:2::2]:8776/v2/%(tenant_id)s", "{}", true, "subcloud-1"],
"endpoint_153": ["19e9a38d9db34ce1ba8953300bc32e65", "NULL", "internal", "8a5873d1ee914ccbae3c070d578d0d0d", "http://[fd01:2::2]:8776/v2/%(tenant_id)s", "{}", true, "subcloud-1"],
"endpoint_154": ["b9fa7c1bc44f495e9ff6dda810b841a1", "NULL", "public", "8a5873d1ee914ccbae3c070d578d0d0d", "http://128.224.150.18:8776/v2/%(tenant_id)s", "{}", true, "subcloud-1"],
"endpoint_155": ["0a32ffd450814d7599d95b9d006cd42c", "NULL", "public", "a15edc66a6394e18bda9f9256e7b470c", "http://128.224.150.224:8042", "{}", true, "subcloud-4"],
"endpoint_156": ["d652da20f7834c53b8bdcd0e9e6e2fb4", "NULL", "admin", "ea41162395844d30af3e59efa3e6323e", "http://[fd01:3::2]:8000/v1/%(tenant_id)s", "{}", true, "subcloud-4"],
"endpoint_157": ["c6667081743646efbfe6e0ab888b3eb2", "NULL", "internal", "6cfd11045b1e4c0badcb56f18428ab5b", "http://[fd01:3::2]:9696", "{}", true, "subcloud-4"],
"endpoint_158": ["edaeb34e5038485786df22d7f6360036", "NULL", "internal", "c3677835d8024fa894929ea67b1e9fa0", "http://[fd01:3::2]:5491", "{}", true, "subcloud-4"],
"endpoint_159": ["31e0293920404baf94390a6652c9ebff", "NULL", "public", "c3677835d8024fa894929ea67b1e9fa0", "http://128.224.150.224:15491", "{}", true, "subcloud-4"],
"endpoint_160": ["1cbf691bc9c84e3f9f6cc79246660bf7", "NULL", "admin", "86328b93a3c84d63a1be7f7368138bdf", "http://[fd01:3::2]:8777", "{}", true, "subcloud-4"],
"endpoint_161": ["ba7c54b0b7ac4cfdb558665fdd731c28", "NULL", "internal", "5fa3efb666204693a0d0ab05fb03140c", "http://[fd01:1::2]:5000/v3", "{}", true, "subcloud-4"],
"endpoint_162": ["e6f1e6f998674d13b6b8fa6a843e49f9", "NULL", "internal", "d6f2ef7609f44c9aa0b40b15f9f93139", "http://[fd01:3::2]:8977", "{}", true, "subcloud-4"],
"endpoint_163": ["1f3a25620c2b4e74b0348733a190fff1", "NULL", "public", "0efe25ad76f244e1bca9f6975cfe8b83", "http://128.224.150.224:8004/v1/%(tenant_id)s", "{}", true, "subcloud-4"],
"endpoint_164": ["1daa3c5f75184962868ddd72d1b62529", "NULL", "admin", "7d48ddb964034eb588e557b976d11cdf", "http://[fd01:3::2]:9292", "{}", true, "subcloud-4"],
"endpoint_165": ["be6a2850cec44595b38eb6940baab1a6", "NULL", "admin", "c4ae85afaf7b465190d927e11da3eb38", "http://[fd01:3::2]:8774/v2.1/%(tenant_id)s", "{}", true, "subcloud-4"],
"endpoint_166": ["39c119210e864123b8b6c845be341074", "NULL", "internal", "c4ae85afaf7b465190d927e11da3eb38", "http://[fd01:3::2]:8774/v2.1/%(tenant_id)s", "{}", true, "subcloud-4"],
"endpoint_167": ["8f5980c8301146368c7be4f2a2e41cac", "NULL", "public", "c4ae85afaf7b465190d927e11da3eb38", "http://128.224.150.224:8774/v2.1/%(tenant_id)s", "{}", true, "subcloud-4"],
"endpoint_168": ["9953dc666ff24502b03cfb69c408f442", "NULL", "internal", "7d48ddb964034eb588e557b976d11cdf", "http://[fd01:4::2]:9292", "{}", true, "subcloud-5"],
"endpoint_169": ["368c49d56241450188857d2e7cd757d3", "NULL", "internal", "995cc229e9af44ec81c1c76073f4c733", "http://[fd01:4::2]:8778", "{}", true, "subcloud-5"],
"endpoint_170": ["33f33be90a1442839aef4f50afca45f9", "NULL", "internal", "ea41162395844d30af3e59efa3e6323e", "http://[fd01:4::2]:8000/v1/%(tenant_id)s", "{}", true, "subcloud-5"],
"endpoint_171": ["523fe3578d634f17a81e04cb0e3c48c0", "NULL", "public", "a15edc66a6394e18bda9f9256e7b470c", "http://128.224.151.66:8042", "{}", true, "subcloud-5"],
"endpoint_172": ["e2d534e4e8804d0ebdb175e1f38f1cf2", "NULL", "public", "c3677835d8024fa894929ea67b1e9fa0", "http://128.224.151.66:15491", "{}", true, "subcloud-5"],
"endpoint_173": ["dc4cc20db20e4a08be988012f3b53efa", "NULL", "public", "c4ae85afaf7b465190d927e11da3eb38", "http://128.224.151.66:8774/v2.1/%(tenant_id)s", "{}", true, "subcloud-5"],
"endpoint_174": ["135d036dc1804366873f238f193d0ee4", "NULL", "public", "aa803a6f0ab84b68ad13a759b1b29525", "http://128.224.151.66:4545", "{}", true, "subcloud-5"],
"endpoint_175": ["dbcf6bf6bcdf409ba2333370415fbd38", "NULL", "internal", "5fa3efb666204693a0d0ab05fb03140c", "http://[fd01:1::2]:5000/v3", "{}", true, "subcloud-5"],
"endpoint_176": ["a6a2033b69a34a04bb5a1d944c764401", "NULL", "internal", "d6f2ef7609f44c9aa0b40b15f9f93139", "http://[fd01:4::2]:8977", "{}", true, "subcloud-5"],
"endpoint_177": ["efb480b1d3374e0c97e688c1d5946d4d", "NULL", "admin", "0efe25ad76f244e1bca9f6975cfe8b83", "http://[fd01:4::2]:8004/v1/%(tenant_id)s", "{}", true, "subcloud-5"],
"endpoint_178": ["d526cf9c4c1c48be8d9770e8e261de07", "NULL", "internal", "b3dd49c87dfd40d08d19d2895d2bc9c6", "http://[fd01:4::2]:6385/v1", "{}", true, "subcloud-5"],
"endpoint_179": ["4881245fbcb5474ba807b60b1cab4c7f", "NULL", "admin", "c5834d3740504a69bf427385319b51a0", "http://[fd01:4::2]:8776/v3/%(tenant_id)s", "{}", true, "subcloud-5"],
"endpoint_180": ["e27f671897e54872876470d1880a1ca3", "NULL", "admin", "8a5873d1ee914ccbae3c070d578d0d0d", "http://[fd01:4::2]:8776/v2/%(tenant_id)s", "{}", true, "subcloud-5"],
"endpoint_181": ["3530851c3c7444d981ac145e3f6545d7", "NULL", "public", "8a5873d1ee914ccbae3c070d578d0d0d", "http://128.224.151.66:8776/v2/%(tenant_id)s", "{}", true, "subcloud-5"],
"endpoint_182": ["9157998f1a8a4d54ba679b31ac3eac0c", "NULL", "internal", "567f8aafa7844256b03e86655fa2bd3e", "http://[fd01:4::2]:8776/v1/%(tenant_id)s", "{}", true, "subcloud-5"]
}

View File

@ -1,24 +0,0 @@
{
"local_user_0": [3, "8ff17967605a4240b8a6c15ed4bf10f1", "default", "panko", 0, "NULL"],
"local_user_1": [4, "c5d07e41f78747949fbc1de84168a44f", "default", "dcorch", 0, "NULL"],
"local_user_2": [5, "5f4d401253a74cc8ab507957b9cafb29", "default", "neutron", 0, "NULL"],
"local_user_3": [6, "4abaa160c36846328a482217de0112af", "default", "heat", 0, "NULL"],
"local_user_4": [7, "692bd0a53c414d6dbbd0ba4d6fdb3c49", "default", "vim", 0, "NULL"],
"local_user_5": [8, "6cf3cfc5d26f458daf66802d8e8a2e2a", "default", "aodh", 0, "NULL"],
"local_user_6": [11, "a757fb8d624b46b4b10eea1b4d2ca0d2", "default", "glance", 0, "NULL"],
"local_user_7": [12, "118a09e72d6a4194af383285cb7e579a", "default", "placement", 0, "NULL"],
"local_user_8": [13, "f1cc67bbf0d84c89a1df3067b538e1b8", "default", "patching", 0, "NULL"],
"local_user_9": [14, "f94aa82e49dd4aaa8bf1c80fee109234", "2423d6c7853145a798e6491ca9de6e2b", "heat_admin", 0, "NULL"],
"local_user_10": [15, "04facea7432848c9bfdf3780bb51612e", "default", "dcmanager", 0, "NULL"],
"local_user_11": [16, "c455073c30044db8908630595699d874", "default", "ceilometer", 0, "NULL"],
"local_user_12": [17, "4a2c1f4c8ae942b19e388576e93d1ced", "default", "cinder", 0, "NULL"],
"local_user_13": [18, "d1399977957645e4a1e26c1b7b1e6d35", "default", "tenant1", 0, "NULL"],
"local_user_14": [19, "5ad8271fc6bc432ab80685945bc5b346", "default", "tenant2", 0, "NULL"],
"local_user_15": [20, "73403639b14c40e6b288c0e2cd3707bc", "default", "cindersubcloud-1", 0, "NULL"],
"local_user_16": [9, "146482c0aba84e35a5c1a507cff9db3d", "default", "nova", 0, "NULL"],
"local_user_17": [10, "63dd0fb409264a43b7dbfe9582b8023d", "default", "mtce", 0, "NULL"],
"local_user_18": [2, "81eed996f2a346a3b5282fe2a881db9b", "default", "sysinv", 0, "NULL"],
"local_user_19": [23, "872e8c1b48c640c59189cf1587bd4e41", "default", "cindersubcloud-5", 0, "NULL"],
"local_user_20": [24, "f85b8eca57a441838cfe5a39d33230b5", "default", "cindersubcloud-4", 0, "NULL"],
"local_user_21": [1, "500b2ba0791e44a780d4dad3c5a1ff31", "default", "admin", 0, "NULL"]
}

View File

@ -1,6 +0,0 @@
{
"migrate_version_0": ["keystone_expand", "/usr/lib/python2.7/site-packages/keystone/common/sql/expand_repo", 24],
"migrate_version_1": ["keystone_data_migrate", "/usr/lib/python2.7/site-packages/keystone/common/sql/data_migration_repo", 24],
"migrate_version_2": ["keystone", "/usr/lib/python2.7/site-packages/keystone/common/sql/migrate_repo", 109],
"migrate_version_3": ["keystone_contract", "/usr/lib/python2.7/site-packages/keystone/common/sql/contract_repo", 24]
}

View File

@ -1,24 +0,0 @@
{
"password_0": [1, 1, "NULL", "NULL", false, "$2b$12$fVKV1.pFz76EgkTePPtzEuMYbTS8CbsVghxDhX7f7liZx8RlW0Y6O", 1523460727481605, "NULL", "2018-04-11 15:32:07.481605"],
"password_1": [2, 2, "NULL", "NULL", false, "$2b$12$SlX.b0AgnYn4nZtJ3jmvWeCpSQiY21QjdlpjvkMwyUjH8zYJzLBHe", 1523460750612369, "NULL", "2018-04-11 15:32:30.612369"],
"password_2": [3, 3, "NULL", "NULL", false, "$2b$12$xOE0UlHJSzLiqeupbP/BvOTKxptmAAXylD0IlcbecOpeQ9w3L8o9K", 1523461139214437, "NULL", "2018-04-11 15:38:59.214437"],
"password_3": [4, 4, "NULL", "NULL", false, "$2b$12$XraXnRCsEobDqxvZI10YwOCN2qFdVx4YyVsnAggUk6JOpZIA1ILRC", 1523461146035371, "NULL", "2018-04-11 15:39:06.035371"],
"password_4": [5, 5, "NULL", "NULL", false, "$2b$12$hm9rPyEF4MGzGhVN6MZEZOV20HNAEYdd/X5tE/eTMBUdf2ojGozym", 1523461151305674, "NULL", "2018-04-11 15:39:11.305674"],
"password_5": [6, 6, "NULL", "NULL", false, "$2b$12$uRXa5txGlCkP3K8k2evESOKE0OCvN0E1lmtDEffUo4GN4M3/moDhG", 1523461154969656, "NULL", "2018-04-11 15:39:14.969656"],
"password_6": [7, 7, "NULL", "NULL", false, "$2b$12$UDWh3bOprZkcicTvX74ekO7Z2sA9i578bvJWR3u3JKxx./R4zfAZm", 1523461159304616, "NULL", "2018-04-11 15:39:19.304616"],
"password_7": [8, 8, "NULL", "NULL", false, "$2b$12$aaxz0tFwmstJa28TC6CBAubmJImu7CpnOf6IL5Ay69xrmhjntK7U6", 1523461167384976, "NULL", "2018-04-11 15:39:27.384976"],
"password_8": [9, 9, "NULL", "NULL", false, "$2b$12$P8NNMYOhoASdrH9otXOSpuSdRmumCxmaUw86sQBr4uMBU0QZgrVB6", 1523461170949886, "NULL", "2018-04-11 15:39:30.949886"],
"password_9": [10, 10, "NULL", "NULL", false, "$2b$12$G5oIKiC7dArW21ALaT.vyuHoUl2frQdBrNH9oX1JGiC/IVK4/x5d2", 1523461176191435, "NULL", "2018-04-11 15:39:36.191435"],
"password_10": [11, 11, "NULL", "NULL", false, "$2b$12$c7khbuXewToyssTnkBI.sOSP1evojjJVadd8aVPjRdSaKBXhOu5XO", 1523461179586188, "NULL", "2018-04-11 15:39:39.586188"],
"password_11": [12, 12, "NULL", "NULL", false, "$2b$12$YiAwkChCYKqog31cjk9hReGyoSf.LBk2pp4ca/ujTMUZnS5Bi06oS", 1523461183306664, "NULL", "2018-04-11 15:39:43.306664"],
"password_12": [13, 13, "NULL", "NULL", false, "$2b$12$6R5Wc3uuF270K.Kz0Qhdze20dzWHUx/YNYCT4CBIZtq70T4eTKo2.", 1523461186923901, "NULL", "2018-04-11 15:39:46.923901"],
"password_13": [14, 14, "NULL", "NULL", false, "$2b$12$c069e0ysfrkXryUc7Y7FV.V0mIV1AuAebtTPt6HG51etBI8JYiLK2", 1523461239110598, "NULL", "2018-04-11 15:40:39.110598"],
"password_14": [15, 15, "NULL", "NULL", false, "$2b$12$PhXg966X3UpaW6nUHKjAseGgIq2WFEiwxqsg0AQl1fZB0XRyF3q1G", 1523461266343289, "NULL", "2018-04-11 15:41:06.343289"],
"password_15": [16, 16, "NULL", "NULL", false, "$2b$12$HEbgdNZ.XAueAUE.yQVRV.RePFvWXi3kzuE5nzuQ/cR4ecNdq5GuK", 1523461278526719, "NULL", "2018-04-11 15:41:18.526719"],
"password_16": [17, 17, "NULL", "NULL", false, "$2b$12$ta3TKTGmLRRSb0LvENvFpOdkyvf24h.XDYuE4zJCavb/z5ERh6GcK", 1523462230091266, "NULL", "2018-04-11 15:57:10.091266"],
"password_17": [18, 18, "NULL", "NULL", false, "$2b$12$IlICOy5XIrgXKB/LrpYH8OxhhumP6TIX7CoNET3jXEloQdcvLgig2", 1523462315972021, "NULL", "2018-04-11 15:58:35.972021"],
"password_18": [19, 19, "NULL", "NULL", false, "$2b$12$Tzx42wm1w1hauLkUqypJuu84yTsfWtm9XrsZFLNlpoizX/b6MLQHO", 1523462331773330, "NULL", "2018-04-11 15:58:51.77333"],
"password_19": [20, 20, "NULL", "NULL", false, "$2b$12$lFM1kQaZ3wQyuOcsUYnbqeEgRmQsYFsabjMJLPWm3EgZCnHAO0fXC", 1523469345119409, "NULL", "2018-04-11 17:55:45.119409"],
"password_20": [23, 23, "NULL", "NULL", false, "$2b$12$IpkrfjrFTVclpDV9qC4Twuct8aFZUFEPEEr/6tznmFr/U8lc42k1m", 1526397706723260, "NULL", "2018-05-15 15:21:46.72326"],
"password_21": [24, 24, "NULL", "NULL", false, "$2b$12$809wlBp0xowtrgpFiwGNp.gVrJ8uvdQNN43zQGbexRm82Mb5AJriq", 1526399747870689, "NULL", "2018-05-15 15:55:47.870689"]
}

View File

@ -1,9 +0,0 @@
{
"project_0": ["<<keystone.domain.root>>", "<<keystone.domain.root>>", "{}", "", false, "<<keystone.domain.root>>", "NULL", true],
"project_1": ["default", "Default", "{}", "The default domain", true, "<<keystone.domain.root>>", "NULL", true],
"project_2": ["8803689162424f60a71e4642e9dc2b9e", "admin", "{}", "admin tenant", true, "default", "default", false],
"project_3": ["f3b78df9bbd74d6b8bbf8c5f08427ca7", "services", "{}", "Tenant for the openstack services", true, "default", "default", false],
"project_4": ["2423d6c7853145a798e6491ca9de6e2b", "heat", "{}", "", true, "<<keystone.domain.root>>", "NULL", true],
"project_5": ["9008c3fc102040cd8149b5c0d8aa06a3", "tenant1", "{}", "tenant1", true, "default", "default", false],
"project_6": ["6ecc44a6b24e4c398dc749f1386b2ced", "tenant2", "{}", "tenant2", true, "default", "default", false]
}

View File

@ -1,7 +0,0 @@
{
"region_0": ["SystemController", "", "NULL", "{}"],
"region_1": ["RegionOne", "", "NULL", "{}"],
"region_2": ["subcloud-1", "", "NULL", "{}"],
"region_3": ["subcloud-4", "", "NULL", "{}"],
"region_4": ["subcloud-5", "", "NULL", "{}"]
}

View File

@ -1,3 +0,0 @@
{
"revocation_event_0": [7, "NULL", "NULL", "8c5414c673634a8ebb837a897cb73a54", "NULL", "NULL", "NULL", "NULL", "2018-05-21 13:48:50", "NULL", "2018-05-21 13:48:50", "NULL", "NULL"]
}

View File

@ -1,7 +0,0 @@
{
"role_0": ["59fa225368524bf6974f76a25050143b", "admin", "{}", "<<null>>"],
"role_1": ["9fe2ff9ee4384b1894a90878d3e92bab", "_member_", "{}", "<<null>>"],
"role_2": ["1f62f45b748b4c5db66f97c715ecf1ae", "ResellerAdmin", "{}", "<<null>>"],
"role_3": ["d6bd09cf50334c5b9b1fe4cdeedfbdc4", "heat_stack_user", "{}", "<<null>>"],
"role_4": ["ef2e357b0d4d4bcaaa6ae303c7d58d7e", "heat_stack_owner", "{}", "<<null>>"]
}

View File

@ -1,20 +0,0 @@
{
"service_0": ["5fa3efb666204693a0d0ab05fb03140c", "identity", true, "{"description": "OpenStack Identity Service", "name": "keystone"}"],
"service_1": ["b3dd49c87dfd40d08d19d2895d2bc9c6", "platform", true, "{"description": "SysInvService", "name": "sysinv"}"],
"service_2": ["9754bb0a6cba4ae4b62c1a4e825964a5", "dcmanager", true, "{"description": "DCManagerService", "name": "dcmanager"}"],
"service_3": ["c931b77a92bc4208909d9205d85391a0", "dcorch", true, "{"description": "DcOrchService", "name": "dcorch"}"],
"service_4": ["7d48ddb964034eb588e557b976d11cdf", "image", true, "{"description": "OpenStack Image Service", "name": "glance"}"],
"service_5": ["a15edc66a6394e18bda9f9256e7b470c", "alarming", true, "{"description": "OpenStack Alarming Service", "name": "aodh"}"],
"service_6": ["995cc229e9af44ec81c1c76073f4c733", "placement", true, "{"description": "Openstack Placement Service", "name": "placement"}"],
"service_7": ["c4ae85afaf7b465190d927e11da3eb38", "compute", true, "{"description": "Openstack Compute Service", "name": "nova"}"],
"service_8": ["ea41162395844d30af3e59efa3e6323e", "cloudformation", true, "{"description": "Openstack Cloudformation Service", "name": "heat-cfn"}"],
"service_9": ["6cfd11045b1e4c0badcb56f18428ab5b", "network", true, "{"description": "Neutron Networking Service", "name": "neutron"}"],
"service_10": ["c3677835d8024fa894929ea67b1e9fa0", "patching", true, "{"description": "Patching Service", "name": "patching"}"],
"service_11": ["86328b93a3c84d63a1be7f7368138bdf", "metering", true, "{"description": "Openstack Metering Service", "name": "ceilometer"}"],
"service_12": ["aa803a6f0ab84b68ad13a759b1b29525", "nfv", true, "{"description": "Virtual Infrastructure Manager", "name": "vim"}"],
"service_13": ["d6f2ef7609f44c9aa0b40b15f9f93139", "event", true, "{"description": "OpenStack Event Service", "name": "panko"}"],
"service_14": ["0efe25ad76f244e1bca9f6975cfe8b83", "orchestration", true, "{"description": "Openstack Orchestration Service", "name": "heat"}"],
"service_15": ["c5834d3740504a69bf427385319b51a0", "volumev3", true, "{"description": "Cinder Service v3", "name": "cinderv3"}"],
"service_16": ["8a5873d1ee914ccbae3c070d578d0d0d", "volumev2", true, "{"description": "Cinder Service v2", "name": "cinderv2"}"],
"service_17": ["567f8aafa7844256b03e86655fa2bd3e", "volume", true, "{"description": "Cinder Service", "name": "cinder"}"]
}

View File

@ -1,6 +0,0 @@
{
"strategy_steps_0": [id, subcloud_id, stage, state, details, started_at, finished_at, reserved_1, reserved_2, created_at, updated_at, deleted_at, deleted],
"strategy_steps_1": [id, subcloud_id, stage, state, details, started_at, finished_at, reserved_1, reserved_2, created_at, updated_at, deleted_at, deleted],
"strategy_steps_2": [id, subcloud_id, stage, state, details, started_at, finished_at, reserved_1, reserved_2, created_at, updated_at, deleted_at, deleted],
"strategy_steps_3": [id, subcloud_id, stage, state, details, started_at, finished_at, reserved_1, reserved_2, created_at, updated_at, deleted_at, deleted]
}

View File

@ -1,17 +0,0 @@
{
"subcloud_status_0": [id, subcloud_id, endpoint_type, sync_status, reserved_1, reserved_2, created_at, updated_at, deleted_at, deleted],
"subcloud_status_1": [id, subcloud_id, endpoint_type, sync_status, reserved_1, reserved_2, created_at, updated_at, deleted_at, deleted],
"subcloud_status_2": [id, subcloud_id, endpoint_type, sync_status, reserved_1, reserved_2, created_at, updated_at, deleted_at, deleted],
"subcloud_status_3": [id, subcloud_id, endpoint_type, sync_status, reserved_1, reserved_2, created_at, updated_at, deleted_at, deleted],
"subcloud_status_4": [id, subcloud_id, endpoint_type, sync_status, reserved_1, reserved_2, created_at, updated_at, deleted_at, deleted],
"subcloud_status_5": [id, subcloud_id, endpoint_type, sync_status, reserved_1, reserved_2, created_at, updated_at, deleted_at, deleted],
"subcloud_status_6": [id, subcloud_id, endpoint_type, sync_status, reserved_1, reserved_2, created_at, updated_at, deleted_at, deleted],
"subcloud_status_7": [id, subcloud_id, endpoint_type, sync_status, reserved_1, reserved_2, created_at, updated_at, deleted_at, deleted],
"subcloud_status_8": [id, subcloud_id, endpoint_type, sync_status, reserved_1, reserved_2, created_at, updated_at, deleted_at, deleted],
"subcloud_status_9": [id, subcloud_id, endpoint_type, sync_status, reserved_1, reserved_2, created_at, updated_at, deleted_at, deleted],
"subcloud_status_10": [id, subcloud_id, endpoint_type, sync_status, reserved_1, reserved_2, created_at, updated_at, deleted_at, deleted],
"subcloud_status_11": [id, subcloud_id, endpoint_type, sync_status, reserved_1, reserved_2, created_at, updated_at, deleted_at, deleted],
"subcloud_status_12": [id, subcloud_id, endpoint_type, sync_status, reserved_1, reserved_2, created_at, updated_at, deleted_at, deleted],
"subcloud_status_13": [id, subcloud_id, endpoint_type, sync_status, reserved_1, reserved_2, created_at, updated_at, deleted_at, deleted],
"subcloud_status_14": [id, subcloud_id, endpoint_type, sync_status, reserved_1, reserved_2, created_at, updated_at, deleted_at, deleted]
}

View File

@ -1,5 +0,0 @@
{
"subclouds_0": [id, name, description, location, software_version, management_state, availability_status, management_subnet, management_gateway_ip, management_start_ip, management_end_ip, systemcontroller_gateway_ip, audit_fail_count, reserved_1, reserved_2, created_at, updated_at, deleted_at, deleted],
"subclouds_1": [id, name, description, location, software_version, management_state, availability_status, management_subnet, management_gateway_ip, management_start_ip, management_end_ip, systemcontroller_gateway_ip, audit_fail_count, reserved_1, reserved_2, created_at, updated_at, deleted_at, deleted],
"subclouds_2": [id, name, description, location, software_version, management_state, availability_status, management_subnet, management_gateway_ip, management_start_ip, management_end_ip, systemcontroller_gateway_ip, audit_fail_count, reserved_1, reserved_2, created_at, updated_at, deleted_at, deleted]
}

Some files were not shown because too many files have changed in this diff Show More