...
You will see a list of connections. You can view a connection by clicking on the blue view icon. You can also edit or delete the connection.
.
Database Schema
The database schema
...
can
...
be found in the application is the user has database::read permission by going to menu
...
: Admin -> Database -> List Tables, then clicking on the
...
Code Block | ||||
---|---|---|---|---|
| ||||
Create Table: CREATE TABLE `connections` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`org_id` int(10) unsigned NOT NULL DEFAULT '1',
`name` varchar(200) NOT NULL,
`description` text NOT NULL,
`provider` varchar(100) NOT NULL,
`service_type` varchar(100) NOT NULL,
`product_name` varchar(100) NOT NULL,
`service_identifier` varchar(100) NOT NULL,
`speed` float(7,3) NOT NULL DEFAULT '0.000',
`location_id_a` int(10) unsigned NOT NULL DEFAULT '1',
`location_id_b` int(10) unsigned NOT NULL DEFAULT '1',
`system_id_a` int(10) unsigned DEFAULT NULL,
`system_id_b` int(10) unsigned DEFAULT NULL,
`line_number_a` varchar(100) NOT NULL,
`line_number_b` varchar(100) NOT NULL,
`ip_address_external_a` varchar(30) NOT NULL,
`ip_address_external_b` varchar(30) NOT NULL,
`ip_address_internal_a` varchar(30) NOT NULL,
`ip_address_internal_b` varchar(30) NOT NULL,
`edited_by` varchar(200) NOT NULL DEFAULT '',
`edited_date` datetime NOT NULL DEFAULT '2000-01-01 00:00:00',
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8; |
Example Database Entry
Connections are stored in the database in the "connections" table. A typical entry will look as below.
...
language | text |
---|---|
theme | Eclipse |
...
details button for the table.
API / Web Access
You can access the
...
collection using the normal Open-AudIT JSON based API. Just like any other collection. Please
...
API Routes
...
Request Method
...
ID
...
Action
...
Resulting Function
...
URL Example
...
Notes
...
Web Application Routes
...
Request Method
...
ID
...
Action
...
Resulting Function
...
URL Example
...
Notes
...
see The Open-AudIT API documentation for further details.