Skip to content

Latest commit

 

History

History
74 lines (41 loc) · 2.04 KB

README.md

File metadata and controls

74 lines (41 loc) · 2.04 KB

Monitoring

Setup Monitoring on Local mac

  • To standup the three containers in the mac run:

$ docker-compose up -d

  • To access the ElasticSearch GUI, it needs a plugin to be installed on the elastic search container, to install it run
$ docker-compose ps
$ docker exec -it <ElasticSearch container name> bash
$ /usr/share/elasticsearch/bin/plugin install mobz/elasticsearch-head

The GUI of ElasticSearch can be accessed at http://localhost:9200/_plugin/head/

Alternate text

Alternate text

Alternate text

Sample data in Influxdb

$ docker-compose ps
$ docker exec -it <Influxdb container name> bash
$ curl https://s3-us-west-1.amazonaws.com/noaa.water.database.0.9/NOAA_data.txt > NOAA_data.txt
$ influx -import -path=NOAA_data.txt -precision=s

Alternate text

Alternate text

  • Fill the details similar to image below and save it.

Alternate text

  • Create a new Dashboard

Alternate text

  • Create rows in dashboards

Alternate text

  • Create Graph

Alternate text

  • Select Panel data source as Influx and select the queries, one could see all the MEASUREMENTS which got populated in the influxdb in the grafana MEASUREMENTS.

Alternate text

  • Once appropriate MEASUREMENTS are selected click the "x" on the right corner and save it.

More on Grafana dashboards and UI, Look at http://docs.grafana.org/guides/gettingstarted/

Setup Monitoring In Openstack