Introducing our new CEO Don Johnson - Read More

arm32v7/chronograf

By arm32v7

Updated 10 days ago

Chronograf is a visualization tool for time series data in InfluxDB.

Image
Monitoring & Observability
8

100K+

Note: this is the "per-architecture" repository for the arm32v7 builds of the chronograf official image -- for more information, see "Architectures other than amd64?" in the official images documentation and "An image's source changed in Git, now what?" in the official images FAQ.

Quick reference

Supported tags and respective Dockerfile links

arm32v7/chronograf build status badge

Quick reference (cont.)

Chronograf

Chronograf is InfluxData's open source web application. Use Chronograf with the other components of the TICK stack for infrastructure monitoring, alert management, data visualization, and database management.

logo

Using this image

Running the container

Chronograf runs on port 8888. It can be run and accessed by exposing that port:

$ docker run -p 8888:8888 arm32v7/chronograf
Mounting a volume

The Chronograf image exposes a shared volume under /var/lib/chronograf, so you can mount a host directory to that point to access persisted container data. A typical invocation of the container might be:

$ docker run -p 8888:8888 \
      -v $PWD:/var/lib/chronograf \
      arm32v7/chronograf

Modify $PWD to the directory where you want to store data associated with the InfluxDB container.

You can also have Docker control the volume mountpoint by using a named volume.

$ docker run -p 8888:8888 \
      -v chronograf:/var/lib/chronograf \
      arm32v7/chronograf
Using the container with InfluxDB

The instructions here are very similar to the instructions when using telegraf with influxdb. These examples assume you are using Docker's built-in service discovery capability. In order to do so, we'll first create a new network:

$ docker network create influxdb

Next, we'll start our InfluxDB container named influxdb:

$ docker run -d --name=influxdb \
      --net=influxdb \
      influxdb

We can now start a Chronograf container that references this database.

$ docker run -p 8888:8888 \
      --net=influxdb \
      arm32v7/chronograf --influxdb-url=http://influxdb:8086

Try combining this with Telegraf to get dashboards for your infrastructure within minutes!

Running as root

Starting in v1.10.5, Chronograf no longer run as the root user by default. If a user wants to revert this change they can set CHRONOGRAF_AS_ROOT=true as an environment variable.

Official Documentation

See the official docs for information on creating visualizations.

License

View license information for the software contained in this image.

As with all Docker images, these likely also contain other software which may be under other licenses (such as Bash, etc from the base distribution, along with any direct or indirect dependencies of the primary software being contained).

Some additional license information which was able to be auto-detected might be found in the repo-info repository's chronograf/ directory.

As for any pre-built image usage, it is the image user's responsibility to ensure that any use of this image complies with any relevant licenses for all software contained within.

Docker Pull Command

docker pull arm32v7/chronograf