Skip to content

Commit

Permalink
viz.sandesh schema additions for VN ACL rule stats and VMI ACL rule
Browse files Browse the repository at this point in the history
Change-Id: I9b810196e2aa6a7fe5a8ac1075a56e1f0e3e9a13
Partial-Bug: 1548623
  • Loading branch information
anishmehta committed Feb 23, 2016
1 parent db85f8a commit cfbfff7
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions src/analytics/viz.sandesh
Original file line number Diff line number Diff line change
Expand Up @@ -1029,6 +1029,16 @@ const list<stat_table> _STAT_TABLES = [
{ 'name' : 'vn_stats.out_bytes', 'datatype' : 'int', 'index' : false},
]
},
{
'display_name' : 'VN ACL Rule Statistics',
'stat_type' : 'UveVirtualNetworkAgent',
'stat_attr' : 'policy_rule_stats',
'obj_table' : VN_TABLE,
'attributes': [
{ 'name' : 'policy_rule_stats.rule', 'datatype' : 'string', 'index' : true},
{ 'name' : 'policy_rule_stats.count', 'datatype' : 'int', 'index' : false},
]
},
{
'display_name' : 'Database Purge Statistics',
'stat_type' : 'DatabasePurgeInfo'
Expand Down Expand Up @@ -1386,6 +1396,16 @@ const list<stat_table> _STAT_TABLES = [
{ 'name' : 'fip_diff_stats.out_bytes', 'datatype' : 'int', 'index' : false }
]
},
{
'display_name' : 'VMI ACL Rule Statistics',
'stat_type' : 'UveVMInterfaceAgent',
'stat_attr' : 'sg_rule_stats',
'obj_table' : VMI_TABLE,
'attributes': [
{ 'name' : 'sg_rule_stats.rule', 'datatype' : 'string', 'index' : true},
{ 'name' : 'sg_rule_stats.count', 'datatype' : 'int', 'index' : false},
]
},
{
'display_name' : 'Virtual Machine Interface Statistics',
'stat_type' : 'UveVMInterfaceAgent'
Expand Down

0 comments on commit cfbfff7

Please sign in to comment.