ncimCache.networkPipe table

The ncimCache.networkPipe table represents managed connections.

The following table shows the schema for the ncimCache.networkPipe database table.

Table 1. ncimCache.networkPipe database table schema  

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.
  • AENDENTITYNAME corresponds to entityId in the networkPipe table in the NCIM database.
  • AGGREGATIONTYPE corresponds to aggregationType in the networkPipe table in the NCIM database.
  • UNIDIRECTIONAL corresponds to unidirectional in the connects table in the NCIM database.
  • ZENDENTITYNAME corresponds to zEndEntityId in the connects table in the NCIM database.

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 ] ]';
	}
	];
}