From the course: Advanced Spring: Spring Boot Actuator
Unlock the full course today
Join today to access over 24,900 courses taught by industry experts.
Installing and running a Grafana Docker image - Spring Boot Tutorial
From the course: Advanced Spring: Spring Boot Actuator
Installing and running a Grafana Docker image
- [Instructor] Grafana is an open-source platform used to monitor, analyze and visualize data. You can bring data into Grafana from the plethora of data sources, such as Prometheus, InfluxDB, Graphite, AWS CloudWatch and many more. Let's head back to the CLI and use Docker to install and run Grafana. And as you can see here, I already have Prometheus up and running, now we want to go ahead and install and run Grafana as well. So I'm going to type docker, run -d --name we're going to name it grafana -p, give it a port 3000, which is the default port 3000:3000. And we're going to type grafana/grafana, okay? So this command will start Grafana inside a Docker container and make it available to us on port 3000. I'm going to hit Enter, and if all goes well, we'll least start containers to see if we have a new container, once this is up and running. So let's take a look at that. So I'm going to list my containers with a…