psa.DomainsTraffic

Overview
Column Descriptions

dom_id
date
http_in
http_out
ftp_in
ftp_out
smtp_in
smtp_out
pop3_imap_in
pop3_imap_out

Table Structure
CREATE TABLE `DomainsTraffic` (
  `dom_id` int(10) unsigned NOT NULL,
  `date` date NOT NULL,
  `http_in` bigint(20) unsigned NOT NULL DEFAULT '0',
  `http_out` bigint(20) unsigned NOT NULL DEFAULT '0',
  `ftp_in` bigint(20) unsigned NOT NULL DEFAULT '0',
  `ftp_out` bigint(20) unsigned NOT NULL DEFAULT '0',
  `smtp_in` bigint(20) unsigned NOT NULL DEFAULT '0',
  `smtp_out` bigint(20) unsigned NOT NULL DEFAULT '0',
  `pop3_imap_in` bigint(20) unsigned NOT NULL DEFAULT '0',
  `pop3_imap_out` bigint(20) unsigned NOT NULL DEFAULT '0',
  PRIMARY KEY (`dom_id`,`date`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1

Related documentation