Browsed by
Tag: grafana

Grafana Public Access Setup

Grafana Public Access Setup

To setup login for anonymous users you need to make these small configuration changes in the default.ini/grafana.ini file (Grafana\conf). If you want to hide the login page do this configuration:[auth] # Set to true to disable (hide) the login form, useful if you use OAuth #disable_login_form = false disable_login_form = true Change disable_login_form to true. Enable anonymous access:[auth.anonymous] # enable anonymous access enabled = true Specify the organization:# specify organization name that should be used for unauthenticated users org_name = YOUR_ORG_NAME_HERE Restart Grafana…

Read More Read More

Get system metrics for 5 min with Docker, Telegraf, Influxdb and Grafana

Get system metrics for 5 min with Docker, Telegraf, Influxdb and Grafana

Original Source: https://towardsdatascience.com/get-system-metrics-for-5-min-with-docker-telegraf-influxdb-and-grafana-97cfd957f0ac Hi all, there is a very quick guide how to configure a system monitoring for one or more servers using a modern stack of technologies, like Grafana, Docker and Telegraf with Influxdb. The main goal for this article is to show how to start getting system metrics from your servers quick and easy, without spending lot of time for configuring big and complicated monitoring systems. Especially if you only need to take care for few Web servers…

Read More Read More