| 1 | // SPDX-License-Identifier: GPL-3.0-or-later |
| 2 | |
| 3 | package l2topology |
| 4 | |
| 5 | func newL2ResultStats() map[string]any { |
| 6 | return map[string]any{ |
| 7 | "devices_total": 0, |
| 8 | "links_total": 0, |
| 9 | "links_lldp": 0, |
| 10 | "links_cdp": 0, |
| 11 | "links_stp": 0, |
| 12 | "attachments_total": 0, |
| 13 | "attachments_fdb": 0, |
| 14 | "enrichments_total": 0, |
| 15 | "enrichments_arp_nd": 0, |
| 16 | "bridge_domains_total": 0, |
| 17 | "endpoints_total": 0, |
| 18 | "identity_alias_endpoints_mapped": 0, |
| 19 | "identity_alias_endpoints_ambiguous_mac": 0, |
| 20 | "identity_alias_ips_merged": 0, |
| 21 | "identity_alias_ips_conflict_skipped": 0, |
| 22 | } |
| 23 | } |