update container statistics model
This commit is contained in:
parent
7be5a8fa95
commit
5db072447c
1 changed files with 1 additions and 0 deletions
|
@ -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)
|
||||
|
|
Loading…
Add table
Reference in a new issue