1. Horizontal vs Top-Down Discovery — when to use each
“Your CMDB has servers populated but no business-service dependencies. Which Discovery flavor do you reach for?”
How to answer
- Horizontal Discovery scans IP ranges, probes ports, and populates infrastructure CIs (servers, network gear, apps).
- Service Mapping (top-down) starts from an entry point (URL or load balancer) and traces traffic to map a business service.
- Horizontal answers 'what exists', top-down answers 'what depends on what'.
- Run horizontal first to seed CIs; layer Service Mapping on top for impact analysis and outage scoping.
Reference config
// Discovery schedule (horizontal)
schedule.name = 'Prod DC1 sweep';
schedule.ip_range = '10.42.0.0/16';
schedule.mid_group = 'mid_dc1';
// Service Mapping (top-down)
serviceMap.entry_point = 'https://shop.example.com';
serviceMap.discover_from = 'Load Balancer VIP';Pitfall
Service Mapping needs accurate horizontal CIs first — running it against a sparse CMDB produces orphan 'unknown' nodes that look like outages on the dashboard.