update container statistics model

This commit is contained in:
Vyacheslav Anzhiganov 2015-12-15 11:22:41 +03:00
parent 7be5a8fa95
commit 5db072447c

View file

@ -136,6 +136,7 @@ class ContainersStatistics(PgSQLModel):
created = DateTimeField(default=datetime.datetime.now)
cpu = BigIntegerField(default=0, null=False)
memory = BigIntegerField(default=0, null=False)
size = BigIntegerField(default=0, null=False)
net_tx = BigIntegerField(default=0, null=False)
net_rx = BigIntegerField(default=0, null=False)
net_total = BigIntegerField(default=0, null=False)