Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/pozgo/grafana-xxl
:bar_chart: Dockerized Grafana with all preinstalled (community) plugins from grafana.net
https://github.com/pozgo/grafana-xxl
grafana monitoring
Last synced: 3 months ago
JSON representation
:bar_chart: Dockerized Grafana with all preinstalled (community) plugins from grafana.net
- Host: GitHub
- URL: https://github.com/pozgo/grafana-xxl
- Owner: pozgo
- License: gpl-2.0
- Created: 2016-01-09T10:25:13.000Z (almost 9 years ago)
- Default Branch: master
- Last Pushed: 2023-05-01T06:25:16.000Z (over 1 year ago)
- Last Synced: 2024-07-18T06:19:35.769Z (4 months ago)
- Topics: grafana, monitoring
- Language: Dockerfile
- Homepage: https://hub.docker.com/r/monitoringartist/grafana-xxl/
- Size: 518 KB
- Stars: 207
- Watchers: 19
- Forks: 50
- Open Issues: 4
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Grafana XXL
[![DockerHub pulls](https://img.shields.io/docker/pulls/monitoringartist/grafana-xxl.svg?style=plastic&label=DockerHub%20Pulls)](https://img.shields.io/docker/pulls/monitoringartist/grafana-xxl.svg) [![GitHub stars](https://img.shields.io/github/stars/monitoringartist/grafana-xxl.svg?style=plastic&label=GitHub%20Stars)](https://github.com/monitoringartist/grafana-xxl) [![DockerHub stars](https://img.shields.io/docker/stars/monitoringartist/grafana-xxl.svg?style=plastic&label=DockerHub%20Stars)](https://img.shields.io/docker/pulls/monitoringartist/grafana-xxl.svg) [![Commercial support ready](https://img.shields.io/badge/Commercial%20support-ready-brightgreen.svg)](http://www.monitoringartist.com 'DevOps / Docker / Kubernetes / AWS ECS / Google GCP / Zabbix / Zenoss / Terraform / Monitoring')
Dockerized Grafana with all preinstalled plugins from https://grafana.net/plugins.
![Grafana XXL datasources and plugins](https://raw.githubusercontent.com/monitoringartist/grafana-xxl/master/doc/grafana-xxl-datasources-plugins.png)
Please donate to author, so he can continue to publish another awesome projects
for free:[![Paypal donate button](http://jangaraj.com/img/github-donate-button02.png)](https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=8LB6J222WRUZ4)
# Running your Grafana XXL Docker image
Start your image binding the external port 3000:
docker run -d --name=grafana-xxl -p 3000:3000 monitoringartist/grafana-xxl:latest
Try it out, default admin user is admin/admin.
## Grafana XXL with persistent storage (recommended)
# create /var/lib/grafana as persistent volume storage
docker run -d -v /var/lib/grafana --name grafana-xxl-storage busybox:latest# start grafana-xxl
docker run \
-d \
-p 3000:3000 \
--name grafana-xxl \
--volumes-from grafana-xxl-storage \
monitoringartist/grafana-xxl:latest## Running specific version of Grafana XXL
# specify right tag, e.g. 2.6,3.1,dev (latest nigthly build) - see Docker Hub for available tags
docker run \
-d \
-p 3000:3000 \
--name grafana-xxl \
monitoringartist/grafana-xxl:dev
## Building Grafana XXL for ARMYou need ARM-version Grafana's deb (for example from [here](https://github.com/fg2it/grafana-on-raspberry/releases)).
Also you need ARM-version of gosu (from [here](https://github.com/tianon/gosu/releases))# armhf
docker build \
--tag grafana-xxl \
--build-arg GRAFANA_DEB_URL=https://github.com/fg2it/grafana-on-raspberry/releases/download/v5.0.4/grafana_5.0.4_armhf.deb \
--build-arg GOSU_BIN_URL=https://github.com/tianon/gosu/releases/download/1.10/gosu-armhf .# arm64
docker build \
--tag grafana-xxl \
--build-arg GRAFANA_DEB_URL=https://github.com/fg2it/grafana-on-raspberry/releases/download/v5.0.4/grafana_5.0.4_arm64.deb \
--build-arg GOSU_BIN_URL=https://github.com/tianon/gosu/releases/download/1.10/gosu-arm64 .## Configuring your Grafana container
All options defined in conf/grafana.ini can be overriden using environment
variables by using the syntax GF__. For example:docker run \
-d \
-p 3000:3000 \
--name=grafana-xxl \
-e "GF_SERVER_ROOT_URL=http://grafana.server.name" \
-e "GF_SECURITY_ADMIN_PASSWORD=secret" \
monitoringartist/grafana-xxl:latestMore information in the grafana configuration documentation: http://docs.grafana.org/installation/configuration/
## Configuring AWS credentials for CloudWatch support (only Grafana 3.+)
docker run \
-d \
-p 3000:3000 \
--name=grafana-xxl \
-e "GF_AWS_PROFILES=default" \
-e "GF_AWS_default_ACCESS_KEY_ID=YOUR_ACCESS_KEY" \
-e "GF_AWS_default_SECRET_ACCESS_KEY=YOUR_SECRET_KEY" \
-e "GF_AWS_default_REGION=eu-west-1" \
monitoringartist/grafana-xxl:latestYou may also specify multiple profiles to `GF_AWS_PROFILES` (e.g.
`GF_AWS_PROFILES=default another`).Supported variables:
- `GF_AWS_PROFILES`: list of AWS profiles for Cloudwatch datasource
- `GF_AWS_${profile}_ACCESS_KEY_ID`: AWS access key ID (required).
- `GF_AWS_${profile}_SECRET_ACCESS_KEY`: AWS secret access key (required).
- `GF_AWS_${profile}_REGION`: AWS region (optional).## Auto upgrade plugins
Container tries to upgrade all installed plugins in the container automatically before Grafana start. If you want to disable this behaviour, please use environment variable `-e UPGRADEALL=false`.
## Supported monitoring services
- [Hawkular](http://www.hawkular.org/docs/components/metrics/grafana_integration.html)
- [Raintank](http://raintank.io/docs/litmus/raintank-datasource/)# Integrations
* [Puppet for dockerized grafana-xxl](https://github.com/monitoringartist/grafana-xxl/blob/master/puppet.md)
* [Ansible for dockerized grafana-xxl](https://github.com/monitoringartist/grafana-xxl/blob/master/ansible.md)
* [docker-compose for dockerized grafana-xxl](https://github.com/monitoringartist/grafana-xxl/blob/master/docker-compose.yml)# Author
[Devops Monitoring Expert](http://www.jangaraj.com 'DevOps / Docker / Kubernetes / AWS ECS / Google GCP / Zabbix / Zenoss / Terraform / Monitoring'),
who loves monitoring systems and cutting/bleeding edge technologies: Docker,
Kubernetes, ECS, AWS, Google GCP, Terraform, Lambda, Zabbix, Grafana, Elasticsearch,
Kibana, Prometheus, Sysdig, ...Summary:
* 1000+ [GitHub](https://github.com/monitoringartist/) stars
* 6000+ [Grafana dashboard](https://grafana.net/monitoringartist) downloads
* 800 000+ [Docker image](https://hub.docker.com/u/monitoringartist/) pullsProfessional devops / monitoring / consulting services:
[![Monitoring Artist](http://monitoringartist.com/img/github-monitoring-artist-logo.jpg)](http://www.monitoringartist.com 'DevOps / Docker / Kubernetes / AWS ECS / Google GCP / Zabbix / Zenoss / Terraform / Monitoring')