We can use Grafana, an open-source technology, to create a business intelligence dashboard. This will allow different users to set up their own queries and visualizations, or easily slice through data in a visual way for non-technical users.
Start by setting up Grafana on your system:
brew update brew install grafana brew services start grafana
# Note These are instructions for Grafana Enterprise Edition (via APT repository), # which they recommend. It includes all the Open Source features and can also use # Enterprise features if you have a License. # Setup Grafana Keys sudo apt-get install -y apt-transport-https sudo apt-get install -y software-properties-common wget wget -q -O - https://packages.grafana.com/gpg.key | sudo apt-key add - # Add repository for stable releases echo "deb https://packages.grafana.com/enterprise/deb stable main" && | sudo tee -a /etc/apt/sources.list.d/grafana.list # Install Grafana sudo apt-get update sudo apt-get install grafana-enterprise
Use the Windows installer available at the Grafana website.