psa.ApiRpcCallsStat

Overview
Column Descriptions

id –
Version –
Operator –
Command –
Session –
FilterName –
GroupOperation –
LastExecutionDate –
Count –

Table Structure
1
2
3
4
5
6
7
8
9
10
11
12
13
CREATE TABLE `ApiRpcCallsStat` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `Version` varchar(7) CHARACTER SET utf8 NOT NULL DEFAULT '',
  `Operator` varchar(50) CHARACTER SET utf8 NOT NULL DEFAULT '',
  `Command` varchar(50) CHARACTER SET utf8 NOT NULL DEFAULT '',
  `Session` varchar(8) CHARACTER SET utf8 NOT NULL DEFAULT '0',
  `FilterName` varchar(50) CHARACTER SET utf8 NOT NULL DEFAULT '0',
  `GroupOperation` int(10) NOT NULL DEFAULT '0',
  `LastExecutionDate` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `Count` int(10) unsigned NOT NULL DEFAULT '0',
  PRIMARY KEY (`id`),
  UNIQUE KEY `LogItem` (`Version`,`Operator`,`Command`,`Session`,`FilterName`,`GroupOperation`)
) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=latin1

Related documentation