Skip to content

Commit

Permalink
[minigraph.py] Enable telemetry service by default (#3611)
Browse files Browse the repository at this point in the history
  • Loading branch information
pra-moh authored and jleveque committed Oct 25, 2019
1 parent 4026a8b commit 040672c
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion src/sonic-config-engine/minigraph.py
Original file line number Diff line number Diff line change
Expand Up @@ -800,8 +800,12 @@ def parse_xml(filename, platform=None, port_config_file=None):
results['DHCP_SERVER'] = dict((item, {}) for item in dhcp_servers)
results['NTP_SERVER'] = dict((item, {}) for item in ntp_servers)
results['TACPLUS_SERVER'] = dict((item, {'priority': '1', 'tcp_port': '49'}) for item in tacacs_servers)

results['ACL_TABLE'] = filter_acl_mirror_table_bindings(acls, neighbors, pcs)
results['FEATURE'] = {
'telemetry': {
'status': 'enabled'
}
}

# Do not configure the minigraph's mirror session, which is currently unused
# mirror_sessions = {}
Expand Down

0 comments on commit 040672c

Please sign in to comment.