# 3.1.2 Testing the Prometheus Scrape ## What Assume for a moment you made a typo in the yml file, or some other problem occurs and your new scrape isn't showing in Grafana...how can you see what is going on? ## When/Why Thankfully there is a service running that allows you to see the status of all Prometheus scrapes, and will usually give you an idea about what is going on. We can check a web page to get this detailed information. ## How The webpage/port in question though is NOT open by default to external systems and we must access it in a special way. If the port were open, we would normally just go to [https://my.server.address:21090/targets](https://my.server.address:21090/targets,). But, to work around the port not being opened, we can do the following (from terminal, macOS):
ssh -L 8000:localhost:21090 user@my.server.address |