Welcome to OCS Inventory NG community support, where you can ask questions and receive answers from other members of the community.

Please ask questions only in English or French.

Release 2.11.1 available

The official documentation can be found on http://wiki.ocsinventory-ng.org. Read it before asking your question.

Table prolog_conntrack

Good Morning,
I would need to know what the "prolog_conntrack" table is used for, 
since I have seen that it has been filled with data.
Version OCS Reports 2.9.2
Thanks greetings,
in OCS Inventory NG server for Unix by (120 points)

1 Answer

0 votes

This table is designed for internal usage during processing inventory. The table is not stored on file but in memory. When there is no computer currently in exchange with server for inventory, there is no row in table.

CREATE TABLE `prolog_conntrack` (
  `ID` int(11) NOT NULL AUTO_INCREMENT,
  `DEVICEID` varchar(255) DEFAULT NULL,
  `TIMESTAMP` int(11) DEFAULT NULL,
  `PID` int(11) DEFAULT NULL,
  PRIMARY KEY (`ID`),
  KEY `DEVICEID` (`DEVICEID`)
) ENGINE=MEMORY DEFAULT CHARSET=utf8;

by (19.2k points)
 
Powered by Question2Answer
...