This visual execution shows how to use Grafana for visualization in Kubernetes. First, Prometheus is deployed to collect metrics. Then Grafana is deployed as a pod with a service. Using kubectl port-forward, we forward local port 3000 to Grafana's service port. Opening http://localhost:3000 shows the Grafana UI. We add Prometheus as a datasource in Grafana to connect it to the metrics. Next, dashboards are created in Grafana to visualize live metrics from Prometheus. Metrics update in real-time on the dashboard. Finally, stopping the port-forward or deleting pods stops the visualization. Key points include ensuring datasource configuration and understanding port-forward's role in accessing Grafana UI.