ncimCache.networkPipe table
The ncimCache.networkPipe table represents managed connections.
The following table shows the schema for the ncimCache.networkPipe database table.
Column name |
Constraints |
Data type |
Description |
---|---|---|---|
ENTITYID | NOT NULL | Integer | The identifier of an entity. Corresponds to collectingEntityID
in the networkPipe table
in the NCIM database. |
ENTITYNAME | NOT NULL | String | The name of the collecting network pipe. |
MSGTYPE | String | The name of the table within the ncimCache database. | |
networkPipe | NOT NULL | List of name/value pairs | A list of name/value pairs for the entity.
|
Format of the data in the ncimCache.networkPipe database table
The following example shows the format of the data in the ncimCache.networkPipe database table, as shown either using an OQL query, or as seen in the NCHOME/var/precision/Store.Cache.ncimCache.networkPipe.DOMAIN file.
{
ENTITYID=50401;
ENTITYNAME='my-device.mylab[ 0 [ 33 ] ]->my-device2.lab[ 0 [ 25 ] ]';
MSGTYPE='networkPipe';
networkPipe=[
{
AENDENTITYNAME='my-device2.lab[ 0 [ 25 ] ]';
AGGREGATIONTYPE=4;
UNIDIRECTIONAL=0;
ZENDENTITYNAME='my-device.mylab[ 0 [ 33 ] ]';
}
];
}