diff --git a/docs/agents/sematext-agent/index.md b/docs/agents/sematext-agent/index.md
index dee577265..e30740dc2 100644
--- a/docs/agents/sematext-agent/index.md
+++ b/docs/agents/sematext-agent/index.md
@@ -18,4 +18,5 @@ other metric sources.
- [Inventory tracking](/docs/monitoring/inventory) of your whole infrastructure including packages, server details, container metadata and more.
- [Process monitoring](/docs/monitoring/processes) that helps out identifying top CPU or memory consumers.
- [Service discovery](/docs/monitoring/autodiscovery/) and automated monitoring for vanilla Docker and Kubernetes workloads.
+- [Network Map](/docs/network-map/) for visualizing infrastructure topology and service connections using eBPF-powered network insights.
- [Logs discovery](/docs/logs/discovery/intro/) and parsing.
diff --git a/docs/fleet/index.md b/docs/fleet/index.md
index 87a48bb8d..4cf317fac 100644
--- a/docs/fleet/index.md
+++ b/docs/fleet/index.md
@@ -1,7 +1,7 @@
title: Fleet and Discovery Overview
description: Overview of Fleet and Discovery - Fleet & Discovery management panel
-[Fleet](/docs/fleet/fleet) & [Discovery](/docs/fleet/discovery) are two major components of your infrastructure [monitoring](/docs/monitoring/) and [log management](/docs/logs/). Think of them as the 'eyes and ears' of your entire infrastructure. They enable you to monitor the health, performance, and configuration changes of your infrastructure. See the video below for a quick overview.
+[Fleet](/docs/fleet/fleet) & [Discovery](/docs/fleet/discovery) are two major components of your infrastructure [monitoring](/docs/monitoring/) and [log management](/docs/logs/). Think of them as the 'eyes and ears' of your entire infrastructure. They enable you to monitor the health, performance, and configuration changes of your infrastructure. For a visual representation of your infrastructure topology and service connections, see [Network Map](/docs/network-map/). See the video below for a quick overview.
VIDEO
+```
+
+**Check that the agent is on that host.** Each host needs its own agent instance. Use [Fleet](/docs/fleet/) to see which hosts have agents installed. If you've added new hosts to your infrastructure, ensure they have agents installed.
+
+**Look for network connectivity issues.** If the agent can't reach Sematext Cloud, data won't be transmitted. Check firewall rules and proxy settings.
+
+**Consider unrecognized services.** Network Map detects [over 100 service types](/docs/network-map/supported-services/), but custom or unusual services might appear with generic names rather than specific icons. They should still show up as processes or connections.
+
+## Missing Connections
+
+If services appear but connections between them don't:
+
+**Ensure there's active traffic.** Connections only appear when there's actual network communication. If a service hasn't sent or received data recently, its connections won't show.
+
+**Check if it's loopback traffic.** Connections to localhost (127.0.0.1) are filtered out by default since they're typically internal to a host.
+
+**Verify both endpoints have agents.** For a connection to appear, the agent needs to observe it. Connections to external services outside your monitored infrastructure show differently than internal connections.
+
+**Consider kernel limitations.** Some connection types may not be captured on older kernels. Kernel 5.8+ provides the best coverage.
+
+## Performance Issues
+
+If Network Map is slow or your browser struggles:
+
+**Zoom out.** At lower zoom levels, Network Map renders less detail per element, improving performance. Use the zoom controls to find a balance between detail and responsiveness.
+
+**Apply filters.** Instead of displaying your entire infrastructure, use [filters](/docs/network-map/filtering-search/) to focus on specific services, namespaces, or service types. Fewer elements means better performance.
+
+**Use Quick Filters.** If you're troubleshooting, Quick Filters like "High CPU" immediately narrow the view to relevant services.
+
+**Try a different browser.** Network Map uses modern browser features for rendering. Chrome and Firefox typically provide the best performance.
+
+## Incorrect Service Detection
+
+If services are detected with wrong names or types:
+
+Network Map identifies services using multiple signals: container image names, process names, environment variables, Kubernetes metadata, and port-based inference. Usually this works well, but sometimes:
+
+Custom services might not match any known patterns and appear as generic processes. Services with non-standard configurations might be misidentified. Heavily customized container images might confuse image-based detection.
+
+Currently, service detection is automatic and cannot be manually overridden. The detected service type affects the icon displayed and tier placement, but doesn't affect the underlying data collection.
+
+## Getting More Help
+
+If you're still experiencing issues:
+
+Check the [Sematext Agent troubleshooting guide](/docs/agents/sematext-agent/agent-troubleshooting/) for agent-specific issues.
+
+Check the [Sematext status page](https://status.sematext.com) for any ongoing platform issues.
+
+Review agent logs for specific error messages that might indicate the problem:
+
+```bash
+journalctl -u sematext-agent --since "1 hour ago" | grep -i error
+```
+
+Contact Sematext support with details about your environment, the issue you're experiencing, and any relevant log excerpts.
+
+## Next Steps
+
+- [Getting Started](/docs/network-map/getting-started/) to review prerequisites and setup
+- [Services View](/docs/network-map/services-view/) to understand how services are displayed
+- [Infrastructure View](/docs/network-map/infrastructure-view/) to navigate your infrastructure hierarchy
diff --git a/docs/stylesheets/extra.css b/docs/stylesheets/extra.css
index ce91b4d11..4a199e145 100644
--- a/docs/stylesheets/extra.css
+++ b/docs/stylesheets/extra.css
@@ -639,19 +639,21 @@ pre {
.node-icon { color: white; }
.browser-icon { color: white; }
.mobile-icon { color: white; }
+.network-map-icon { color: white; }
/* Main categories - first grid */
.grid.cards > ul > li:nth-child(1) { background-color: #1a237e; } /* Logs - Deep Indigo */
.grid.cards > ul > li:nth-child(2) { background-color: #0277bd; } /* Monitoring - Ocean Blue */
-.grid.cards > ul > li:nth-child(3) { background-color: #00695c; } /* Experience - Deep Teal */
-.grid.cards > ul > li:nth-child(4) { background-color: #ef6c00; } /* Synthetics - Warm Orange */
-.grid.cards > ul > li:nth-child(5) { background-color: #d32f2f; } /* Alerts - Urgent Red */
-.grid.cards > ul > li:nth-child(6) { background-color: #2e7d32; } /* Events - Forest Green */
-.grid.cards > ul > li:nth-child(7) { background-color: #1565c0; } /* Dashboards - Royal Blue */
-.grid.cards > ul > li:nth-child(8) { background-color: #6a1b9a; } /* Tags - Deep Purple */
-.grid.cards > ul > li:nth-child(9) { background-color: #00838f; } /* Team - Cyan */
-.grid.cards > ul > li:nth-child(10) { background-color: #00695c; } /* Fleet - Teal */
-
+.grid.cards > ul > li:nth-child(3) { background-color: #00695c; } /* Tracing - Deep Teal */
+.grid.cards > ul > li:nth-child(4) { background-color: #7986cb; } /* Network Map - Light Indigo */
+.grid.cards > ul > li:nth-child(5) { background-color: #ef6c00; } /* Experience - Warm Orange */
+.grid.cards > ul > li:nth-child(6) { background-color: #d32f2f; } /* Synthetics - Urgent Red */
+.grid.cards > ul > li:nth-child(7) { background-color: #2e7d32; } /* Alerts - Forest Green */
+.grid.cards > ul > li:nth-child(8) { background-color: #1565c0; } /* Events - Royal Blue */
+.grid.cards > ul > li:nth-child(9) { background-color: #6a1b9a; } /* Dashboards - Deep Purple */
+.grid.cards > ul > li:nth-child(10) { background-color: #00838f; } /* Tags - Cyan */
+.grid.cards > ul > li:nth-child(11) { background-color: #00695c; } /* Team - Teal */
+.grid.cards > ul > li:nth-child(12) { background-color: #5e35b1; } /* Fleet - Purple */
/* Improve contrast for card text and icons */
.grid.cards > ul > li a,
diff --git a/mkdocs.yml b/mkdocs.yml
index 1da1d3a02..1f9130f8a 100644
--- a/mkdocs.yml
+++ b/mkdocs.yml
@@ -104,6 +104,15 @@ nav:
- Custom Metrics: monitoring/custom-metrics.md
- Changelog: changelog.md
- FAQ: monitoring/spm-faq.md
+ - Network Map:
+ - Overview: network-map/index.md
+ - Getting Started: network-map/getting-started.md
+ - Services View: network-map/services-view.md
+ - Infrastructure View: network-map/infrastructure-view.md
+ - Filtering & Search: network-map/filtering-search.md
+ - Thresholds: network-map/thresholds.md
+ - Supported Services: network-map/supported-services.md
+ - Troubleshooting: network-map/troubleshooting.md
- Tracing:
- Overview: tracing/index.md
- Getting Started: tracing/getting-started.md