puppetboard


Namepuppetboard JSON
Version 5.4.0 PyPI version JSON
download
home_pagehttps://github.com/voxpupuli/puppetboard
SummaryWeb frontend for PuppetDB
upload_time2024-03-01 11:36:01
maintainer
docs_urlNone
authorVox Pupuli
requires_python>=3.8.0
licenseApache License 2.0
keywords puppet puppetdb puppetboard
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage
            # Puppetboard

[![PyPI Version](https://img.shields.io/pypi/v/puppetboard)](https://pypi.org/project/puppetboard/)
[![PyPI Downloads](https://img.shields.io/pypi/dm/puppetboard)](https://pypi.org/project/puppetboard/)
![Tests Status](https://github.com/voxpupuli/puppetboard/workflows/tests%20(unit)/badge.svg)
[![codecov](https://codecov.io/gh/voxpupuli/puppetboard/branch/master/graph/badge.svg?token=uez5RoiU6I)](https://codecov.io/gh/voxpupuli/puppetboard)
[![By Voxpupuli](https://img.shields.io/badge/by-Vox%20Pupuli%20%F0%9F%A6%8A-ef902f.svg)](http://voxpupuli.org)


Puppetboard is a web interface to [PuppetDB](https://puppet.com/docs/puppetdb/latest/index.html) aiming to replace
the reporting functionality of [Puppet Enterprise console (previously: Puppet Dashboard)](https://puppet.com/docs/pe/latest/console_accessing.html)
for the open source Puppet.

![Overview](https://raw.githubusercontent.com/voxpupuli/puppetboard/master/screenshots/overview.png)

See [more screenshots here](#more-screenshots).

## Table of Contents

* [Requirements](#requirements)
* [Installation](#installation)
* [Configuration](#configuration)
* [Getting Help](#getting-help)
* [Contributing](#contributing)
* [Legal](#legal)

## Requirements<a id="requirements"></a>

* PuppetDB v. 5.2-8.*
  * (**Note**: PuppetDB 8.1.0 is not supported because of [this bug](https://github.com/puppetlabs/puppetdb/issues/3866). Please update to 8.1.1+.)
* Python 3.8-3.11 or Docker

## Installation<a id="installation"></a>

Puppetboard is packaged and available on PyPI.

### With Puppet module

There is a [Puppet module](https://forge.puppetlabs.com/puppet/puppetboard) originally written by
 [Spencer Krum](https://github.com/nibalizer) and currently maintained by [Voxpupuli](https://voxpupuli.org/)
that takes care of installing the Puppetboard for you.

To see how to get it working with RedHat/Centos 7 check out these [docs](https://github.com/voxpupuli/puppetboard/blob/master/docs/EL7.md).

### Using Docker

We provide [an official Docker image in the GitHub Container Registry](https://github.com/orgs/voxpupuli/packages/container/package/puppetboard).

You must provide a secret key! Generate one for example by running `ruby -e "require 'securerandom'; puts SecureRandom.hex(32)"`.

You can run the app on your PuppetDB host with this command:

```bash
docker run -it \
  -e PUPPETDB_HOST=localhost \
  -e PUPPETDB_PORT=8080 \
  -e SECRET_KEY=XXXXXXXX \
  --net=host \
  ghcr.io/voxpupuli/puppetboard
```

Optionally you can set `PUPPETBOARD_URL_PREFIX` env variable to a value like `/puppetboard` to run the app under a URL prefix.

You can use the following Puppet Code to have Puppetboard managed by Puppet:

```puppet
include docker

docker::image { 'ghcr.io/voxpupuli/puppetboard': }

docker::run { 'puppetboard':
  image => 'ghcr.io/voxpupuli/puppetboard',
  env   => [
    'PUPPETDB_HOST=127.0.0.1',
    'PUPPETDB_PORT=8080',
    'PUPPETBOARD_PORT=8088',
    'SECRET_KEY=XXXXXXXX',
  ],
  net   => 'host',
}
```

If you want to have all features enabled, you must use SSL talking to PuppetDB:

```puppet
file { '/etc/puppetboard':
  ensure => directory,
}
file { '/etc/puppetboard/key.pem':
  ensure => file,
  mode   => '0644',
  source => "/etc/puppetlabs/puppet/ssl/private_keys/${facts['networking']['fqdn']}.pem",
}
file { '/etc/puppetboard/cert.pem':
  ensure => file,
  mode   => '0644',
  source => "/etc/puppetlabs/puppet/ssl/certs/${facts['networking']['fqdn']}.pem",
}

include docker

docker::image { 'ghcr.io/voxpupuli/puppetboard': }

docker::run { 'puppetboard':
  image   => 'ghcr.io/voxpupuli/puppetboard',
  volumes => ['/etc/puppetboard:/etc/puppetboard:ro'],
  env     => [
    'PUPPETDB_HOST=puppet', # this must be the certname or DNS_ALT_NAME of the PuppetDB host
    'PUPPETDB_PORT=8081',
    'PUPPETBOARD_PORT=8080',
    'ENABLE_CATALOG=true',
    'PUPPETDB_SSL_VERIFY=false',
    'PUPPETDB_KEY=/etc/puppetboard/key.pem',
    'PUPPETDB_CERT=/etc/puppetboard/cert.pem',
    'SECRET_KEY=XXXXXXXX',
    'DEFAULT_ENVIRONMENT=*',
  ],
  net     => 'host',
}
```

Within an air gapped environment you want to load all content from your local puppetboard web service.
Add: `'OFFLINE_MODE=true',` to the `env` parameter list of the `docker::run` Puppet type.

We also provide the Dockerfile, so you can build the image yourself:
```bash
docker build -t puppetboard .
```

### From a package

Actively maintained packages:

* [FreeBSD](https://www.freshports.org/www/py-puppetboard/)
  maintained by [Romain Tartière](https://github.com/smortex)
* [OpenBSD](https://cvsweb.openbsd.org/cgi-bin/cvsweb/ports/www/puppetboard/)
  maintained by [Sebastian Reitenbach](https://github.com/buzzdeee)

### Manually

You can also install the package from PyPI and configure a WSGI-capable application server to serve it.

We recommend using virtualenv to provide a separate environment for the app.

```bash
virtualenv -p python3 venv
. venv/bin/activate
pip install puppetboard
```

Please see [an article about more deployment setups here](https://github.com/voxpupuli/puppetboard/blob/master/docs/Deployment-setups.md).

## Configuration<a id="configuration"></a>

### Puppet agents

The default value of `usecacheonfailure = true` configuration setting for Puppet agents causes Puppet runs to always succeed,
event if there are catalog compilation failures f.e. because of a syntax error in your code. This is because in such
cases with this setting Puppet will just use a cached working catalog and report the run to PuppetDB as successful.
(Although with an error visible in the Puppet run log.)

Therefore, to show the nodes with a catalog compilation as failed in Puppetboard you need to set
`usecacheonfailure = false` in your nodes' `puppet.conf`.

### PuppetDB

Of course you need to configure your Puppet Server to store the Puppet run reports in PuppetDB.
If you haven't done that already please follow the [PuppetDB documentation](https://puppet.com/docs/puppetdb/latest/connect_puppet_server.html)
about this.

If you run Puppetboard on a different host than PuppetDB then you may want to configure the certificate
allow-list for which certificates are allowed to access data from PuppetDB.
Please read more about this feature in the [PuppetDB documentation here](https://puppet.com/docs/puppetdb/latest/configure.html#certificate-allowlist).

### App settings

Puppetboard will look for a file pointed at by the `PUPPETBOARD_SETTINGS` environment variable.
The file has to be identical to
[default_settings.py](https://github.com/voxpupuli/puppetboard/blob/master/puppetboard/default_settings.py)
but should only override the settings you need changed.

If you run PuppetDB and Puppetboard on the same machine the default settings provided will be enough to get you started
and you won't need a custom settings file.

Assuming your webserver and PuppetDB machine are not identical you will at least have to change the following settings:

-   `PUPPETDB_HOST`
-   `PUPPETDB_PORT`

By default PuppetDB requires SSL to be used when a non-local client wants to connect. Therefore you'll also have to
supply the following settings:

-   `PUPPETDB_SSL_VERIFY = True`
-   `PUPPETDB_KEY = /path/to/private/keyfile.pem`
-   `PUPPETDB_CERT = /path/to/public/keyfile.crt`

When using the Puppetboard Docker image, you may also pass Puppetboard it's certificate contents via these environment
variables, either as a multiline string or pre-base64 encoded. This can be useful where the certificate is stored in a
secrets store i.e. AWS SSM Parameter Store.

```
PUPPETDB_CERT="-----BEGIN CERTIFICATE-----
...
-----END CERTIFICATE-----"
```

```
PUPPETDB_CERT=LS0tLS1CRUdJTiBSU0EgUFJJVkFURSBLRVktLS0tLQouLi4KLS0tLS1FTkQgQ0VSVElGSUNBVEUtLS0tLQ==
```

For information about how to generate the correct keys please refer to the
[pypuppetdb documentation](https://pypuppetdb.readthedocs.io/en/latest/connecting.html#ssl). Alternatively it is possible
to explicitly specify the protocol to be used setting the `PUPPETDB_PROTO` variable.

Other settings that might be interesting, in no particular order:

- `SECRET_KEY`: set this to a long string, **the same for each application replica**, and keep it secret. Refer to
    [Flask documentation](https://flask.palletsprojects.com/en/2.1.x/quickstart/#sessions), section
    "How to generate good secret keys" for more info. Cannot be an empty string, which is the default.
- `FAVORITE_ENVS`: an ordered list of Puppet environment names that will be shown immediately after "All Environments"
    and before other environments (which are sorted by name) in the dropdown for choosing the environment shown
    in the top-right of the UI. Environments listed here that do not really exist in your deployment are silently ignored.
- `SHOW_ERROR_AS`: `friendly` or `raw`. The former makes Puppet run errors in Report and Failures views shown
    in a modified, (arguably) more user-friendly form. The latter shows them as they are.
    Defaults to `friendly`.
- `CODE_PREFIX_TO_REMOVE`: what code path that should be shortened in "Friendly errors" to "…" for readability.
    A regexp. Defaults to `/etc/puppetlabs/code/environments(/.*?/modules)?`.
- `PUPPETDB_TIMEOUT`: Defaults to 20 seconds, but you might need to increase this value. It depends on how big the
    results are when querying PuppetDB. This behaviour will change in a future release when pagination will be introduced.
- `UNRESPONSIVE_HOURS`: The amount of hours since the last check-in after which a node is considered unresponsive.
- `LOGLEVEL`: A string representing the loglevel. It defaults to `'info'` but can be changed to `'warning'` or
    `'critical'` for less verbose logging or `'debug'` for more information.
- `ENABLE_QUERY`: Defaults to `True` causing a Query tab to show up in the web interface allowing users to write
    and execute arbitrary queries against a set of endpoints in PuppetDB. Change this to `False` to disable this.
    See `ENABLED_QUERY_ENDPOINTS` to fine-tune which endpoints are allowed.
- `ENABLED_QUERY_ENDPOINTS`: If `ENABLE_QUERY` is `True`, allow to fine tune the endpoints of PuppetDB APIs that
    can be queried. It must be a list of strings of PuppetDB endpoints for which the query is enabled.
    See the `QUERY_ENDPOINTS` constant in the `puppetboard.app` module for a list of the available endpoints.
- `GRAPH_TYPE`: Specify the type of graph to display.   Default is
    pie, other good option is donut.   Other choices can be found here:
    [C3.js documentation](https://c3js.org/examples.html#chart)
- `GRAPH_FACTS`: A list of fact names to tell PuppetBoard to generate a pie-chart on the fact page. With some fact
    values being unique per node, like ipaddress, uuid, and serial number, as well as structured facts it was no longer
    feasible to generate a graph for everything.
- `INVENTORY_FACTS`: A list of tuples that serve as the column header and the fact name to search for to create
    the inventory page. If a fact is not found for a node then `undef` is printed.
- `INVENTORY_FACT_TEMPLATES`: A mapping between fact name and jinja template to customize display
- `ENABLE_CATALOG`: If set to `True` allows the user to view a node's latest catalog. This includes all managed
    resources, their file-system locations and their relationships, if available. Defaults to `False`.
- `REFRESH_RATE`: Defaults to `30` the number of seconds to wait until the index page is automatically refreshed.
- `DEFAULT_ENVIRONMENT`: Defaults to `'production'`, as the name suggests, load all information filtered by this
    environment value.
- `REPORTS_COUNT`: Defaults to `10` the limit of the number of reports to load on the node or any reports page.
- `OFFLINE_MODE`: If set to `True` load static assets (jquery, semantic-ui, etc) from the local web server instead
    of a CDN. Defaults to `False`.
- `DAILY_REPORTS_CHART_ENABLED`: Enable the use of daily chart graphs when looking at dashboard and node view.
- `DAILY_REPORTS_CHART_DAYS`: Number of days to show history for on the daily report graphs.
- `DISPLAYED_METRICS`: Metrics to show when displaying node summary. Example: `'resources.total'`, `'events.noop'`.
- `TABLE_COUNT_SELECTOR`: Configure the dropdown to limit number of hosts to show per page.
- `LITTLE_TABLE_COUNT`: Default number of reports to show when when looking at a node.
- `NORMAL_TABLE_COUNT`: Default number of nodes to show when displaying reports and catalog nodes.
- `LOCALISE_TIMESTAMP`: If set to `True` then timestamps are shown using your browser's timezone. Otherwise UTC is used. Defaults to `True`.
- `WITH_EVENT_NUMBERS`: If set to `True` then Overview and Nodes list shows exact number of changed resources
    in the last report. Otherwise shows only 'some' string if there are resources with given status. Setting this
    to `False` gives performance benefits, especially in big Puppet environments (more than few hundreds of nodes).
    Defaults to `True`.
- `ENABLE_CLASS`: If set to `True` allows the user to view the number of resource events (number of changed resources in the last report) grouped by class.
    The resource events are grouped by their status ('failure', 'success', 'noop').
- `CLASS_EVENTS_STATUS_COLUMNS`: A mapping between the status of the resource events and the name of the columns of the table to display.
- `CACHE_TYPE`: Specifies which type of caching object to use when `SCHEDULER_ENABLED` is set to `True`.
    The cache is used for the classes view (`ENABLE_CLASS` is set to `True`) which requires parsing the events of all the latest reports to group them by Puppet class.
    If the last report is present in the cache, we do not parse the events, which avoids unnecessary processing.
    If you configure more than one worker, you must use a shared backend (e.g. `MemcachedCache`) to allow the sharing of the cache between the processes.
    Indeed, the `SimpleCache` type does not allow sharing the cache between processes, it uses the process memory to store the cache.
    Defaults to `SimpleCache`.
- `CACHE_DEFAULT_TIMEOUT`: Cache lifetime in second. Defaults to `3600`.
- `SCHEDULER_ENABLED`: If set to `True` then a scheduler instance is created in order to execute scheduled jobs. Defaults to `False`.
- `SCHEDULER_JOBS`: List of the scheduled jobs to trigger within a worker.
    A job can for example be used to compute a result to be cached. This is the case for the classes view which uses a job to pre-compute at regular intervals the results to be displayed.
    Each scheduled job must contain the following fields: `id`, `func`, `trigger`, `seconds`.
- `SCHEDULER_LOCK_BIND_PORT`: Specifies an available port that allows a single worker to listen on it.
    This allows to configure scheduled jobs in a single worker. Defaults to `49100`.

## Getting Help<a id="getting-help"></a>

For questions or bug reports you can file an [issue](https://github.com/voxpupuli/puppetboard/issues).

## Contributing<a id="contributing"></a>

### Development

Puppetboard relies on the [pypuppetdb](https://pypi.org/project/pypuppetdb/) library to fetch data from PuppetDB
and is built with the help of the [Flask](https://flask.palletsprojects.com) microframework.

If you wish to hack on Puppetboard you should fork/clone the Github repository and then install the requirements through:

```bash
pip install --upgrade wheel setuptools
python setup.py develop
pip install --upgrade -r requirements-test.txt
mypy --install-types --non-interactive puppetboard/ test/
```

You're advised to do this inside a virtualenv specifically created to work on Puppetboard as to not pollute your global Python installation.

You can run the tests with:
```bash
pytest --cov=. --cov-report=xml --strict-markers --mypy puppetboard test
pylint --errors-only puppetboard test
```

You can run the app it in development mode by simply executing:

```bash
flask run
```

You can specify listening host and port with environment variables or command line otions:

```bash
export FLASK_RUN_HOST=0.0.0.0
export FLASK_RUN_PORT=8000

flask run
```

or

```bash
flask run --host '0.0.0.0' --port '8000'
```


Use `PUPPETBOARD_SETTINGS` to change the different settings or patch `default_settings.py` directly.
Take care not to include your local changes on that file when submitting patches for Puppetboard.
Place a `settings.py` file inside the base directory of the git repository that will be used, if the environment
variable is not set.

We welcome contributions to this project. However, there are a few ground rules contributors should be aware of.

### License

This project is licensed under the Apache v2.0 License. As such, your contributions, once accepted, are automatically
covered by this license.

### Commit messages

Write decent commit messages. Don't use swear words and refrain from uninformative commit messages as 'fixed typo'.

The preferred format of a commit message:

    docs/quickstart: Fixed a typo in the Nodes section.

    If needed, elaborate further on this commit. Feel free to write a
    complete blog post here if that helps us understand what this is
    all about.

    Fixes #4 and resolves #2.

If you'd like a more elaborate guide on how to write and format your commit messages have a look at [this post
by Tim Pope](https://tbaggery.com/2008/04/19/a-note-about-git-commit-messages.html).

### Build a release

please see: [RELEASE.md](RELEASE.md)

## More Screenshots<a id="more-screenshots"></a>

* Overview / Index / Homepage

![Overview / Index / Homepage](https://raw.githubusercontent.com/voxpupuli/puppetboard/master/screenshots/overview.png)

* Nodes view, all active nodes

![Nodes view, all active nodes](https://raw.githubusercontent.com/voxpupuli/puppetboard/master/screenshots/nodes.png)

* Single node page / overview

![Single node page / overview](https://raw.githubusercontent.com/voxpupuli/puppetboard/master/screenshots/node.png)

* Report view

![Report view](https://raw.githubusercontent.com/voxpupuli/puppetboard/master/screenshots/report.png)

* Facts view

![Facts view](https://raw.githubusercontent.com/voxpupuli/puppetboard/master/screenshots/facts.png)

* Single fact, with graphs

![Single fact, with graphs](https://raw.githubusercontent.com/voxpupuli/puppetboard/master/screenshots/fact.png)

* All nodes that have this fact with that value

![All nodes that have this fact with that value](https://raw.githubusercontent.com/voxpupuli/puppetboard/master/screenshots/fact_value.png)

* Query view - results as table

![Query view](https://raw.githubusercontent.com/voxpupuli/puppetboard/master/screenshots/query_result_table.png)

* Query view - results as JSON

![Query view](https://raw.githubusercontent.com/voxpupuli/puppetboard/master/screenshots/query_result_json.png)

* Metrics view

![Metrics view](https://raw.githubusercontent.com/voxpupuli/puppetboard/master/screenshots/metrics.png)

* Single metric

![Single metric](https://raw.githubusercontent.com/voxpupuli/puppetboard/master/screenshots/metric.png)

* Inventory view

![Inventory view](https://raw.githubusercontent.com/voxpupuli/puppetboard/master/screenshots/inventory.png)

* Classes view, group the resource events of the last reports by Puppet class

![Classes view](https://raw.githubusercontent.com/voxpupuli/puppetboard/master/screenshots/classes.png)

* Class view, list the nodes with almost one resource event for a given class

![Class view](https://raw.githubusercontent.com/voxpupuli/puppetboard/master/screenshots/class.png)

# Legal<a id="legal"></a>

The app code is licensed under the [Apache License, Version 2.0](./LICENSE).

The favicon has been created based on the icon created by [Jonathan Coutiño](https://thenounproject.com/ralts01/)
under the [Attribution 3.0 Unported (CC BY 3.0) license](https://creativecommons.org/licenses/by/3.0/),
downloaded from the [Noun Project](https://thenounproject.com).

# Changelog

All notable changes to this project will be documented in this file.

## [v5.4.0](https://github.com/voxpupuli/puppetboard/tree/v5.4.0) (2024-03-01)

[Full Changelog](https://github.com/voxpupuli/puppetboard/compare/v5.3.0...v5.4.0)

**Merged pull requests:**

- Bump types-setuptools from 69.0.0.20240125 to 69.1.0.20240301 [\#1048](https://github.com/voxpupuli/puppetboard/pull/1048) ([dependabot[bot]](https://github.com/apps/dependabot))
- Bump pylint from 3.0.3 to 3.1.0 [\#1043](https://github.com/voxpupuli/puppetboard/pull/1043) ([dependabot[bot]](https://github.com/apps/dependabot))
- Bump coverage from 7.4.1 to 7.4.3 [\#1042](https://github.com/voxpupuli/puppetboard/pull/1042) ([dependabot[bot]](https://github.com/apps/dependabot))
- Bump pytest from 8.0.0 to 8.0.2 [\#1041](https://github.com/voxpupuli/puppetboard/pull/1041) ([dependabot[bot]](https://github.com/apps/dependabot))
- Bump typing-extensions from 4.9.0 to 4.10.0 [\#1040](https://github.com/voxpupuli/puppetboard/pull/1040) ([dependabot[bot]](https://github.com/apps/dependabot))
- Bump types-requests from 2.31.0.20240125 to 2.31.0.20240218 [\#1036](https://github.com/voxpupuli/puppetboard/pull/1036) ([dependabot[bot]](https://github.com/apps/dependabot))
- Bump urllib3 from 2.2.0 to 2.2.1 [\#1033](https://github.com/voxpupuli/puppetboard/pull/1033) ([dependabot[bot]](https://github.com/apps/dependabot))

## [v5.3.0](https://github.com/voxpupuli/puppetboard/tree/v5.3.0) (2024-02-07)

[Full Changelog](https://github.com/voxpupuli/puppetboard/compare/v5.2.0...v5.3.0)

**Implemented enhancements:**

- Add favicon to radiator [\#1023](https://github.com/voxpupuli/puppetboard/pull/1023) ([surdaft](https://github.com/surdaft))

**Merged pull requests:**

- Bump markupsafe from 2.1.3 to 2.1.5 [\#1022](https://github.com/voxpupuli/puppetboard/pull/1022) ([dependabot[bot]](https://github.com/apps/dependabot))
- Bump flask from 2.3.3 to 3.0.2 [\#1021](https://github.com/voxpupuli/puppetboard/pull/1021) ([dependabot[bot]](https://github.com/apps/dependabot))
- Bump certifi from 2023.11.17 to 2024.2.2 [\#1019](https://github.com/voxpupuli/puppetboard/pull/1019) ([dependabot[bot]](https://github.com/apps/dependabot))
- Bump urllib3 from 2.1.0 to 2.2.0 [\#1016](https://github.com/voxpupuli/puppetboard/pull/1016) ([dependabot[bot]](https://github.com/apps/dependabot))
- Bump pytest from 7.4.4 to 8.0.0 [\#1015](https://github.com/voxpupuli/puppetboard/pull/1015) ([dependabot[bot]](https://github.com/apps/dependabot))
- Bump coverage from 7.4.0 to 7.4.1 [\#1014](https://github.com/voxpupuli/puppetboard/pull/1014) ([dependabot[bot]](https://github.com/apps/dependabot))
- Bump types-setuptools from 69.0.0.20240115 to 69.0.0.20240125 [\#1012](https://github.com/voxpupuli/puppetboard/pull/1012) ([dependabot[bot]](https://github.com/apps/dependabot))
- Bump types-requests from 2.31.0.20240106 to 2.31.0.20240125 [\#1011](https://github.com/voxpupuli/puppetboard/pull/1011) ([dependabot[bot]](https://github.com/apps/dependabot))
- Bump bandit from 1.7.6 to 1.7.7 [\#1009](https://github.com/voxpupuli/puppetboard/pull/1009) ([dependabot[bot]](https://github.com/apps/dependabot))
- Bump beautifulsoup4 from 4.12.2 to 4.12.3 [\#1006](https://github.com/voxpupuli/puppetboard/pull/1006) ([dependabot[bot]](https://github.com/apps/dependabot))
- Bump types-setuptools from 69.0.0.0 to 69.0.0.20240115 [\#1003](https://github.com/voxpupuli/puppetboard/pull/1003) ([dependabot[bot]](https://github.com/apps/dependabot))
- Bump jinja2 from 3.1.2 to 3.1.3 [\#1002](https://github.com/voxpupuli/puppetboard/pull/1002) ([dependabot[bot]](https://github.com/apps/dependabot))
- Bump wtforms from 3.1.1 to 3.1.2 [\#1000](https://github.com/voxpupuli/puppetboard/pull/1000) ([dependabot[bot]](https://github.com/apps/dependabot))
- Bump types-requests from 2.31.0.8 to 2.31.0.20240106 [\#999](https://github.com/voxpupuli/puppetboard/pull/999) ([dependabot[bot]](https://github.com/apps/dependabot))
- Bump pytest from 7.4.3 to 7.4.4 [\#997](https://github.com/voxpupuli/puppetboard/pull/997) ([dependabot[bot]](https://github.com/apps/dependabot))
- Bump coverage from 7.3.3 to 7.4.0 [\#996](https://github.com/voxpupuli/puppetboard/pull/996) ([dependabot[bot]](https://github.com/apps/dependabot))
- Bump mypy from 1.7.1 to 1.8.0 [\#995](https://github.com/voxpupuli/puppetboard/pull/995) ([dependabot[bot]](https://github.com/apps/dependabot))

## [v5.2.0](https://github.com/voxpupuli/puppetboard/tree/v5.2.0) (2024-01-17)

[Full Changelog](https://github.com/voxpupuli/puppetboard/compare/v5.1.0...v5.2.0)

**Implemented enhancements:**

- Update README for SECRET\_KEY and SSL Setup [\#985](https://github.com/voxpupuli/puppetboard/pull/985) ([tuxmea](https://github.com/tuxmea))

**Fixed bugs:**

- Facts only showing RedHat [\#961](https://github.com/voxpupuli/puppetboard/issues/961)

**Closed issues:**

- Make it More Apparent that SECRET\_KEY cannot be blank [\#978](https://github.com/voxpupuli/puppetboard/issues/978)

**Merged pull requests:**

- also push to hub.docker.com [\#1004](https://github.com/voxpupuli/puppetboard/pull/1004) ([rwaffen](https://github.com/rwaffen))
- Bump coverage from 7.3.2 to 7.3.3 [\#993](https://github.com/voxpupuli/puppetboard/pull/993) ([dependabot[bot]](https://github.com/apps/dependabot))
- Bump pylint from 3.0.2 to 3.0.3 [\#992](https://github.com/voxpupuli/puppetboard/pull/992) ([dependabot[bot]](https://github.com/apps/dependabot))
- Bump bandit from 1.7.5 to 1.7.6 [\#991](https://github.com/voxpupuli/puppetboard/pull/991) ([dependabot[bot]](https://github.com/apps/dependabot))
- Bump typing-extensions from 4.8.0 to 4.9.0 [\#990](https://github.com/voxpupuli/puppetboard/pull/990) ([dependabot[bot]](https://github.com/apps/dependabot))
- Bump idna from 3.4 to 3.6 [\#987](https://github.com/voxpupuli/puppetboard/pull/987) ([dependabot[bot]](https://github.com/apps/dependabot))
- Bump certifi from 2023.7.22 to 2023.11.17 [\#986](https://github.com/voxpupuli/puppetboard/pull/986) ([dependabot[bot]](https://github.com/apps/dependabot))
- Bump types-setuptools from 68.2.0.0 to 69.0.0.0 [\#984](https://github.com/voxpupuli/puppetboard/pull/984) ([dependabot[bot]](https://github.com/apps/dependabot))
- Bump mypy from 1.6.1 to 1.7.1 [\#981](https://github.com/voxpupuli/puppetboard/pull/981) ([dependabot[bot]](https://github.com/apps/dependabot))
- README: note that `SECRET_KEY` can't be empty [\#979](https://github.com/voxpupuli/puppetboard/pull/979) ([kenyon](https://github.com/kenyon))
- Bump urllib3 from 2.0.7 to 2.1.0 [\#977](https://github.com/voxpupuli/puppetboard/pull/977) ([dependabot[bot]](https://github.com/apps/dependabot))
- Bump flask-apscheduler from 1.13.0 to 1.13.1 [\#974](https://github.com/voxpupuli/puppetboard/pull/974) ([dependabot[bot]](https://github.com/apps/dependabot))
- Bump wtforms from 3.1.0 to 3.1.1 [\#973](https://github.com/voxpupuli/puppetboard/pull/973) ([dependabot[bot]](https://github.com/apps/dependabot))
- Bump charset-normalizer from 3.3.1 to 3.3.2 [\#972](https://github.com/voxpupuli/puppetboard/pull/972) ([dependabot[bot]](https://github.com/apps/dependabot))
- Bump pytest from 7.4.2 to 7.4.3 [\#971](https://github.com/voxpupuli/puppetboard/pull/971) ([dependabot[bot]](https://github.com/apps/dependabot))
- Bump werkzeug from 3.0.0 to 3.0.1 [\#970](https://github.com/voxpupuli/puppetboard/pull/970) ([dependabot[bot]](https://github.com/apps/dependabot))
- Bump pylint from 3.0.1 to 3.0.2 [\#968](https://github.com/voxpupuli/puppetboard/pull/968) ([dependabot[bot]](https://github.com/apps/dependabot))
- Bump charset-normalizer from 3.3.0 to 3.3.1 [\#967](https://github.com/voxpupuli/puppetboard/pull/967) ([dependabot[bot]](https://github.com/apps/dependabot))
- Bump pytest-mock from 3.11.1 to 3.12.0 [\#966](https://github.com/voxpupuli/puppetboard/pull/966) ([dependabot[bot]](https://github.com/apps/dependabot))
- Add link to C3.js documentation [\#965](https://github.com/voxpupuli/puppetboard/pull/965) ([mpesari](https://github.com/mpesari))
- Bump mypy from 1.6.0 to 1.6.1 [\#964](https://github.com/voxpupuli/puppetboard/pull/964) ([dependabot[bot]](https://github.com/apps/dependabot))
- Bump urllib3 from 2.0.6 to 2.0.7 [\#962](https://github.com/voxpupuli/puppetboard/pull/962) ([dependabot[bot]](https://github.com/apps/dependabot))
- Bump mypy from 1.5.1 to 1.6.0 [\#958](https://github.com/voxpupuli/puppetboard/pull/958) ([dependabot[bot]](https://github.com/apps/dependabot))
- Bump wtforms from 3.0.1 to 3.1.0 [\#957](https://github.com/voxpupuli/puppetboard/pull/957) ([dependabot[bot]](https://github.com/apps/dependabot))

## [v5.1.0](https://github.com/voxpupuli/puppetboard/tree/v5.1.0) (2023-10-08)

[Full Changelog](https://github.com/voxpupuli/puppetboard/compare/v5.0.0...v5.1.0)

**Merged pull requests:**

- pypuppetdb: Update 3.1.0-\>3.2.0 [\#954](https://github.com/voxpupuli/puppetboard/pull/954) ([bastelfreak](https://github.com/bastelfreak))
- Bump python from 3.11-alpine to 3.12-alpine [\#953](https://github.com/voxpupuli/puppetboard/pull/953) ([dependabot[bot]](https://github.com/apps/dependabot))
- Bump flask-caching from 2.0.2 to 2.1.0 [\#952](https://github.com/voxpupuli/puppetboard/pull/952) ([dependabot[bot]](https://github.com/apps/dependabot))
- CI: Run on PRs and merges; Add dependabot for Dockerfile [\#951](https://github.com/voxpupuli/puppetboard/pull/951) ([bastelfreak](https://github.com/bastelfreak))
- Bump pytest-pylint from 0.19.0 to 0.21.0 [\#950](https://github.com/voxpupuli/puppetboard/pull/950) ([dependabot[bot]](https://github.com/apps/dependabot))
- Bump pylint from 2.17.7 to 3.0.1 [\#949](https://github.com/voxpupuli/puppetboard/pull/949) ([dependabot[bot]](https://github.com/apps/dependabot))
- Bump types-requests from 2.31.0.7 to 2.31.0.8 [\#948](https://github.com/voxpupuli/puppetboard/pull/948) ([dependabot[bot]](https://github.com/apps/dependabot))
- Bump coverage from 7.3.1 to 7.3.2 [\#947](https://github.com/voxpupuli/puppetboard/pull/947) ([dependabot[bot]](https://github.com/apps/dependabot))
- Bump urllib3 from 2.0.4 to 2.0.6 [\#945](https://github.com/voxpupuli/puppetboard/pull/945) ([dependabot[bot]](https://github.com/apps/dependabot))
- Bump werkzeug from 2.3.7 to 3.0.0 [\#944](https://github.com/voxpupuli/puppetboard/pull/944) ([dependabot[bot]](https://github.com/apps/dependabot))
- Bump charset-normalizer from 3.2.0 to 3.3.0 [\#943](https://github.com/voxpupuli/puppetboard/pull/943) ([dependabot[bot]](https://github.com/apps/dependabot))
- Bump packaging from 23.1 to 23.2 [\#941](https://github.com/voxpupuli/puppetboard/pull/941) ([dependabot[bot]](https://github.com/apps/dependabot))
- Bump pylint from 2.17.5 to 2.17.7 [\#940](https://github.com/voxpupuli/puppetboard/pull/940) ([dependabot[bot]](https://github.com/apps/dependabot))
- Bump flask-wtf from 1.1.1 to 1.2.1 [\#939](https://github.com/voxpupuli/puppetboard/pull/939) ([dependabot[bot]](https://github.com/apps/dependabot))
- Bump types-requests from 2.31.0.2 to 2.31.0.7 [\#938](https://github.com/voxpupuli/puppetboard/pull/938) ([dependabot[bot]](https://github.com/apps/dependabot))
- Bump zipp from 3.16.2 to 3.17.0 [\#932](https://github.com/voxpupuli/puppetboard/pull/932) ([dependabot[bot]](https://github.com/apps/dependabot))
- Bump flask-apscheduler from 1.12.4 to 1.13.0 [\#931](https://github.com/voxpupuli/puppetboard/pull/931) ([dependabot[bot]](https://github.com/apps/dependabot))
- Bump typing-extensions from 4.7.1 to 4.8.0 [\#930](https://github.com/voxpupuli/puppetboard/pull/930) ([dependabot[bot]](https://github.com/apps/dependabot))
- Bump pytest from 7.4.1 to 7.4.2 [\#928](https://github.com/voxpupuli/puppetboard/pull/928) ([dependabot[bot]](https://github.com/apps/dependabot))
- Bump types-setuptools from 68.1.0.1 to 68.2.0.0 [\#927](https://github.com/voxpupuli/puppetboard/pull/927) ([dependabot[bot]](https://github.com/apps/dependabot))
- Bump coverage from 7.3.0 to 7.3.1 [\#926](https://github.com/voxpupuli/puppetboard/pull/926) ([dependabot[bot]](https://github.com/apps/dependabot))
- Bump pytest from 7.4.0 to 7.4.1 [\#924](https://github.com/voxpupuli/puppetboard/pull/924) ([dependabot[bot]](https://github.com/apps/dependabot))
- update gha [\#923](https://github.com/voxpupuli/puppetboard/pull/923) ([rwaffen](https://github.com/rwaffen))
- Bump types-setuptools from 68.1.0.0 to 68.1.0.1 [\#922](https://github.com/voxpupuli/puppetboard/pull/922) ([dependabot[bot]](https://github.com/apps/dependabot))
- Bump flask from 2.2.5 to 2.3.3 [\#920](https://github.com/voxpupuli/puppetboard/pull/920) ([dependabot[bot]](https://github.com/apps/dependabot))
- Bump click from 8.1.6 to 8.1.7 [\#919](https://github.com/voxpupuli/puppetboard/pull/919) ([dependabot[bot]](https://github.com/apps/dependabot))
- Bump mypy from 1.5.0 to 1.5.1 [\#918](https://github.com/voxpupuli/puppetboard/pull/918) ([dependabot[bot]](https://github.com/apps/dependabot))
- Bump pytest-randomly from 3.14.0 to 3.15.0 [\#917](https://github.com/voxpupuli/puppetboard/pull/917) ([dependabot[bot]](https://github.com/apps/dependabot))
- Bump types-setuptools from 68.0.0.3 to 68.1.0.0 [\#916](https://github.com/voxpupuli/puppetboard/pull/916) ([dependabot[bot]](https://github.com/apps/dependabot))
- Bump pytest-randomly from 3.13.0 to 3.14.0 [\#915](https://github.com/voxpupuli/puppetboard/pull/915) ([dependabot[bot]](https://github.com/apps/dependabot))
- Bump werkzeug from 2.3.6 to 2.3.7 [\#914](https://github.com/voxpupuli/puppetboard/pull/914) ([dependabot[bot]](https://github.com/apps/dependabot))
- Bump coverage from 7.2.7 to 7.3.0 [\#913](https://github.com/voxpupuli/puppetboard/pull/913) ([dependabot[bot]](https://github.com/apps/dependabot))
- Bump mypy from 1.4.1 to 1.5.0 [\#911](https://github.com/voxpupuli/puppetboard/pull/911) ([dependabot[bot]](https://github.com/apps/dependabot))
- Bump pyparsing from 3.1.0 to 3.1.1 [\#910](https://github.com/voxpupuli/puppetboard/pull/910) ([dependabot[bot]](https://github.com/apps/dependabot))

## [v5.0.0](https://github.com/voxpupuli/puppetboard/tree/v5.0.0) (2023-07-27)

* Stop setting `SECRET_KEY` value to a random string by default. This has caused issues in deployments with more than one app replica or when the app was restarted. Please set this to your own long, random string, **the same for each application replica**. Implements [#721](https://github.com/voxpupuli/puppetboard/issues/721).
* Drop support for Python 3.7 (end-of-life in June 2023). PR [#899](https://github.com/voxpupuli/puppetboard/pull/899)
* Fix broken links in Classes view. PR [#868](https://github.com/voxpupuli/puppetboard/pull/868), fixes [#816](https://github.com/voxpupuli/puppetboard/issues/816).
* Fix if fact is `None` (default for full node view). PR [#908](https://github.com/voxpupuli/puppetboard/pull/908), fixes [#907](https://github.com/voxpupuli/puppetboard/issues/907).
* Dependencies update.

Thanks to the following contributors of this release:
* [Louis Charreau](https://github.com/lcharreau)
* [Yehuda Katz](https://github.com/yakatz)

4.3.0
-----

* Add new **Classes** view. This view lists the Puppet classes that have had at least one of their resources changed (event). ([#799](https://github.com/voxpupuli/puppetboard/pull/799)).

Big thanks to [Louis Charreau](https://github.com/lcharreau) who contributed the above feature!

4.2.6
-----

* Fix auto-resize in the Radiator view in offline mode  ([#718](https://github.com/voxpupuli/puppetboard/issues/718)).

Thanks to [René Hernandez 2nd](https://github.com/REHICode) who contributed to this release!

4.2.5
-----

* **Really** fix starting the app when the SECRET_KEY is set to `bytes` instead of `str`. ([#741](https://github.com/voxpupuli/puppetboard/issues/741)).

4.2.4
-----

* Fix starting the app when the SECRET_KEY is set to `bytes` instead of `str`. ([#741](https://github.com/voxpupuli/puppetboard/issues/741)).

4.2.3
-----

* Sort 'uptime' fact values correctly again - it was fixed in v3.4.0 but got broken in v4.1.0 ([#469](https://github.com/voxpupuli/puppetboard/issues/469)).

4.2.2
-----
* Showing debug messages using a different color than the error messages in the Logs of the Report view. (PR [#725](https://github.com/voxpupuli/puppetboard/pull/725))   
* Start warning that the default SECRET_KET will not be provided starting with Puppetboard 5.x - see issue [#721](https://github.com/voxpupuli/puppetboard/issues/721) for more info. (PR [#726](https://github.com/voxpupuli/puppetboard/pull/726)) 

Thanks to the contributor of this release, [Shawn Toffel](https://github.com/shawntoffel)!

4.2.1
-----
* Fix `LOCALISE_TIMESTAMP = False` and document how it works. ([#461](https://github.com/voxpupuli/puppetboard/issues/461))

4.2.0
-----
* Confirm support for Python 3.11 (final), switch the Docker image to use that version of Python.

4.1.2
-----
* Fixed incompatibility with Python 3.7 that has occurred at least in the tests (regression introduced in 4.1.1). ([#720](https://github.com/voxpupuli/puppetboard/pull/720))

4.1.1
-----
* Fixed showing facts with graph (regression introduced in 4.1.0). ([#719](https://github.com/voxpupuli/puppetboard/issues/719))

4.1.0
-----
* Show configurable favorite environments immediately after the "All Environments" in the dropdown. ([#705](https://github.com/voxpupuli/puppetboard/pull/705))
* Automatic OS values for Linux, macOS and Windows nodes in the Inventory view. Customizable Inventory fact values using Jinja templates. PR [#712](https://github.com/voxpupuli/puppetboard/pull/712), fixes [#485](https://github.com/voxpupuli/puppetboard/issues/485).
* Big upgrade of the frontend dependencies, including migration to their maintained forks in a few cases (Semantic UI → Fomantic UI, c3.js → billboard.js). ([#708](https://github.com/voxpupuli/puppetboard/pull/708))

Very big thanks to [Melchior NOGUES](https://github.com/melck) who did most of the development for this release!

4.0.5
-----
(4.0.4 was a partially incorrect release. Please use 4.0.5 instead.)

* Fix Puppetboard not starting on PE PuppetDB. ([#711](https://github.com/voxpupuli/puppetboard/issues/711))

4.0.3
-----

* Make facts with integer values which are strings internally findable. ([#706](https://github.com/voxpupuli/puppetboard/issues/706))

Thanks to [Stephen Ryan](https://github.com/ryaner) who contributed to this release!

4.0.2
-----

* Make the app work when installed from the git repo, f.e. using the [puppet-puppetboard module](https://github.com/voxpupuli/puppet-puppetboard). ([#704](https://github.com/voxpupuli/puppetboard/issues/704)).

4.0.1
-----

* Fix the Docker image - make the app start again. ([#701](https://github.com/voxpupuli/puppetboard/issues/701)).
* Remove border-radius from the top menu to make it appear more clearly anchored to the page. ([#699](https://github.com/voxpupuli/puppetboard/pull/699))

Thanks to [Marcel Deglau](https://github.com/promarcel) who contributed to this release!

4.0.0
-----

This is mostly a maintenance release.

The major version is bumped because of:
* dropped support for PuppetDBs < 5.2.0 (Puppet 4 has reached its end-of-life in October 2018),
* dropped support for Python 3.6 (end-of-life in December 2021).

There might be some performance improvements thanks to the upgrade of the core dependencies - Flask, Jinja2, Werkzeug etc.

Additional improvements:
* Set custom user-agent header that will make troubleshooting easier.

3.6.1
-----

* Stop modifying the query response for showing as JSON (fixes [#695](https://github.com/voxpupuli/puppetboard/issues/695), PR [#696](https://github.com/voxpupuli/puppetboard/pull/696)).

3.6.0
-----

* Show user-friendly error message when there's a problem with connecting to the PuppetDB and just zeros instead of HTTP 404 when the PuppetDB is just yet empty ([PR #692](https://github.com/voxpupuli/puppetboard/pull/692), 
* Add a healthcheck to the Docker image ([PR #690](https://github.com/voxpupuli/puppetboard/pull/690)),
* Fix Failures view when there are no logs ([PR #693](https://github.com/voxpupuli/puppetboard/pull/693)).

Thanks to the following contributors of this release: [@ArthurWuTW](https://github.com/ArthurWuTW), [@jcpunk](https://github.com/jcpunk), [@carlosduelo](https://github.com/carlosduelo).

3.5.1
-----

* Fixed friendly error message toggle (when there is no env in the URL) ([#688](https://github.com/voxpupuli/puppetboard/issues/688)).

3.5.0
-----

* **Report** view improvements:
  * show Logs before Events as they are more useful,
  * show different, arguably more useful columns in Logs by default,
  * allow showing messages in a "friendly" mode (like in Failures view),
  * make Logs and Events filterable,
  * don't force column sizes for a better, automatic content layout,
  * use fixed-width font where it makes more sense,
* Fix mixed up normal and OFFLINE_MODE for Query view.

3.4.2
-----

* Fix auto-resize in radiator view,
* Fix Query tab cannot be disabled on Docker
* Removed unused import in setup.py,

Thanks to the following contributors of this release: [@vilhelmprytz](https://github.com/vilhelmprytz), [@ldumont](https://github.com/ldumont), [@allan-reynolds](https://github.com/allan-reynolds).

3.4.1
-----

* Fixed broken PyPI package ([#677](https://github.com/voxpupuli/puppetboard/issues/677)).
* Made the ToC links work when the README is displayed as the description in PyPI.

Thanks to the following contributors of this release: [@Rewerson](https://github.com/Rewerson), [@vchepkov](https://github.com/vchepkov).

3.4.0
-----

* **Query** view improvements:
  * Make the result clickable if a certname is in it ([#652](https://github.com/voxpupuli/puppetboard/pull/652)).
  * UX improvements: show the number of results, show a user-friendly error in case of a PQL syntax error, show a warning on empty result, use fixed-width font for matching the query with the possible error message, remove useless 'Cancel' button. ([#653](https://github.com/voxpupuli/puppetboard/pull/653)).
  * Add 'Download as CSV' and 'Download as XLSX' to the results ([#654](https://github.com/voxpupuli/puppetboard/pull/654)).
  * Make the result shareable using URL ([#657](https://github.com/voxpupuli/puppetboard/pull/657)).
* New **Failures** view for showing the first error/failed resource for all nodes with a failed puppet run. It can show both "friendly" and raw error messages ([#662](https://github.com/voxpupuli/puppetboard/pull/662)).
* Sort 'uptime' fact values correctly ([#591](https://github.com/voxpupuli/puppetboard/pull/591)).
* Visual tweaks ([#667](https://github.com/voxpupuli/puppetboard/pull/667)).
* Improvements for running with Docker:
  * Configurable binding host in Dockerfile ([#660](https://github.com/voxpupuli/puppetboard/pull/660)).
  * Allow passing PuppetDB certificates via environment variables when using Docker, in base64 encoding or not ([#671](https://github.com/voxpupuli/puppetboard/pull/671)).
  * Add Puppet code for running Puppetboard using Docker into the README ([#672](https://github.com/voxpupuli/puppetboard/pull/672)).
* Add missing fonts and icons to the PyPI package ([#666](https://github.com/voxpupuli/puppetboard/pull/666)).
* Refactoring: split views into separate files ([#665](https://github.com/voxpupuli/puppetboard/pull/665)).
* Update many dependencies.

✨ Thanks to the following contributors of this release: [@djluo](https://github.com/djluo), [@GermanG](https://github.com/GermanG), [@jgrammen-agilitypr](https://github.com/jgrammen-agilitypr), [@SeanHood](https://github.com/SeanHood), [@tuxmea](https://github.com/tuxmea), [@qhess34](https://github.com/qhess34)! 🌟

3.3.0
-----

* **Show structured facts as pretty-formatted, syntax-highlighted JSON.** Works on Node view and Facts view. Colors meaning are as follows: orange - number, blue - boolean, green - dict's key name. Implements [#83](https://github.com/voxpupuli/puppetboard/issues/83).
* Fix getting nodes with non-string fact values ([#612](https://github.com/voxpupuli/puppetboard/issues/612)).
* Fix missing trailing 'u' character in facts with hashes ([#567](https://github.com/voxpupuli/puppetboard/issues/567)).
* Add favicon ([#650](https://github.com/voxpupuli/puppetboard/pull/650))

3.2.0
-----

* Add from/till filter for reports (issue [#625](https://github.com/voxpupuli/puppetboard/issues/625), PR [#625](https://github.com/voxpupuli/puppetboard/pull/638))
* Remove tabs for disabled features (issue [#627](https://github.com/voxpupuli/puppetboard/issues/627), PR [#636](https://github.com/voxpupuli/puppetboard/pull/636))
* Add support for FreeBSD ([#628](https://github.com/voxpupuli/puppetboard/pull/628))
* Add support for Python 3.10 ([#637](https://github.com/voxpupuli/puppetboard/pull/637))

Thanks to [@smortex](https://github.com/smortex) and [@sebastianrakel](https://github.com/sebastianrakel) for their contributions!

3.1.0
-----

* Improve facts columns balancing (#618)
* Allow to toggle checkboxes by clicking their label (#617)
* Add support for Python 3.9 (#619)
* pypuppetdb: raise version requirement `>=2.4.0.rc1` because
  we need it for Python 3.9 support

3.0.0
-----

This is a bugfix and maintenance release. The major version is bumped 
because of the Python 3.5 support drop.
 
Features:

* Change the default sort order of facts table to a-z,
  instead of z-a (#572)
* Revamp the README (#601)

Bugfixes:

* Fix noop class in _macros.html (#588)
* Fix listing nodes with boolean fact values (#583)
* Fix auto-resize in radiator view (#605)
* Fix issue with no render when facts are empty (#607)

Other:

* Drop Python 3.5 support (#593)
* Update jQuery to 3.5.1 (#592)
* Manage any other exception for get_or_abort (#606)
* Improve getting resources from CDN (#609)  
* Migrate from Travis to GitHub Actions (#604)

2.2.0
-----

* Fix default table sort (#444)
* Use a select for endpoint select in query (#575)
* Surround multiline messages with <pre> in reports (#576)
* Fix CI builds by requiring pytest >= 4.6 (#577)
* Add noop column in overview and nodes (#584)
* Add title to events labels in overview and nodes (#585)

2.1.2
----

* Puppet DB 5.2.13 requires v2 metrics

2.1.1
-----

* Added support for new metrics API `v2` on PuppetDB >= `5.3.11` and < `6.0.0` (#558)
* Added Python 3.5 back into test matrix (#559)
* Fixed bug in `dailyreport.js` that caused it not to render when served under a non-default virtual host (#557)

2.1.0
-----

* Fixed Puppetboard's usage for the new metrics v2 API both on the home page for computing the average resources/node and the `Metrics` listing page. This change now supports the changes in PuppetDB >= 6.9.1 (https://puppet.com/security/cve/CVE-2020-7943/)
* Added backwards compatability support for both the metric `v1` and `v2` endpoints
  depending on the version of the server. Any PuppetDB >= `6.9.1` will be queried with
  the `v2` endpoint automatically (because `v1` is disabled from here forward). Any
  PuppetDB <= `6.9.0` will use `v1`.
* pypuppetdb: raise version requirement `>=2.1.0` because changes were needed in this library to support the metrics v2 fixes.
* app.py: Added python2 backwards compatability fix for importing `urllib`.

2.0.0
----

* Dockerfile: Switch to python:3.7-alpine image
* pypuppetdb: raise version requirement `>=1.2.0` to `>=2.0.0`
* Drop support for python2.7 and python3.5 & Add python3.8 to buildmatrix
* Upgrade of tests requirements + resolving current deprecation warnings
* Ignore facts environment for compatibility and performance
* Adding mypy + Cleanup + CommonMark upgrade to 0.9.1
* Update docker and fix coveralls not running.
* Cast inventory data toString

1.1.0
-----

* Move to Python 3.6 for Docker
* Fix problem loading daily chart on node page
* fix gunicorn parameter and allow to define workers in docker
* Add feature for better performance in big Puppet envs
* bundle requirements.txt for tests and docker

1.0.0
-----

* CI enhancements
* Allow to configure which PuppetDB endpoints are allowed
* Update c3 to 4.22
* Add basic health check endpoint
* Allow to force the PuppetDB connection protocol
* Update jquery-tablesort to 0.0.11
* Fix bug breaking date/time sort
* Fix formatvalue for list of dicts
* Modify date sort to handle failed
* Include template files for altering Semantic css and Google fonts
* Make 320px the max width for columns
* If query is None don't perform add on it
* Query using producer\_timestamp index vs. start\_time
* Add missing components for building source packages
* Add support for URL prefixes to Docker image

0.3.0
-----

* Core UI Rework
* Update to pypuppetdb 0.3.3
* Fix sorty on data for index
* Update debian documentation
* Offline mode fix
* Fix fact attribute error on paths
* Enhanced testing
* Radiator CSS uses same coloring
* Markdown in config version
* Update Flask
* Cleanup requirements.txt
* Update package maintainer for OpenBSD

0.2.1
-----

* Daily Charts
* Fixed missing javascript files on radiator view.
* TravisCI and Coveralls integration.
* Fixed app crash in catalog view.
* Upgrade pypuppetdb to 0.3.2
* Enhanced queries for Node and Report (\#271)
* Optimize Inventory Code.
* Use certname instead of hostname to identify nodes when applicable.
* Add environment filter for facts.
* Update cs.js to 0.4.11
* Fix radiator column alignment
* Security checks with bandit
* Dockerfile now uses gunicorn and environment variables for configuration.
* Handle division by zero errors.
* Implement new Jquery Datatables.
* JSON output for radiator. \* Move javascript to head tag.
* Optimize reports and node page queries.
* Fix all environments for PuppetDB 3.2
* Fact graph chart now configurable.
* Support for Flask 0.12 and Jinja2 2.9
* Fix misreporting noops as changes.

0.2.0
-----

* Full support for PuppetDB 4.x
* Updating Semantic UI to 2.1.8
* Updating Flask-WTF requirements to 0.12
* Updating WTForms to 2.x
* Restored CSRF protection on the Query Tab form
* Updating Pypuppetdb requirement to 0.3.x
* New configuration option OVERVIEW\_FILTER allows users to add custom PuppetDB query clauses to include/exclude nodes displayed on the index page
* Adding Radiator view similar to what is available in Puppet Dashboard
* Adding a drop-down list in the Reports tab to configure the number of reports displayed
* Removing unneeded report\_latest() endpoint. This endpoint was deprecated with the addition of the latest\_report\_hash field in the Nodes PuppetDB endpoint
* Enhancing Report pagination
* Using the OOP Query Builder available in Pypuppetdb 0.3.x
* Allowing PQL queries in the Query Tab
* Fixing double url-quoting bug on Metric endpodint calls
* Adding a Boolean field to the Query form to prettyprint responses from PuppetDB
* Fixing corner-case where empty environments would trigger a ZeroDivisionError due to the Number of Nodes divided by the Number of Resources calculation
* Adding additional logging in utils.py

0.1.2
-----
* Add configuration option to set the default environment with new configuration option DEFAULT\_ENVIRONMENT, defaults to 'production'.
* Loading all available environments with every page load.
* Adding an "All Environments" item to the Environments dropdown to remove all environment filters on PuppetDB data.
* Updating README.rst to update links and describe new configuration options.
* Fixing Query form submission problem by disabling CSRF protection. Needs to be re-implemented.

\* Updating the pypuppetdb requirement to \>= 0.2.1, using information  
available in PuppetDB 3.2 and higher

*\* latest\_report\_hash and latest\_report\_status fields from the Nodes endpoint, this effectively deprecates the report\_latest() function*\* code\_id from the Catalogs endpoint (current unused) \* Adding a automatic refresh on the overview page to reload the page every X number of seconds, defaults to 30. This is configurable with the configuration option REFRESH\_RATE \* Fixing the table alignment in the catalog\_compare() page by switching to fixed tables from basic tables. \* Using colors similar to Puppet Dashboard and Foreman for the status counts sections

0.1.1
-----

* Fix bug where the reports template was not generating the report links with the right environment

0.1.0
-----

* Requires pypuppetdb \>= 0.2.0
* Drop support for PuppetDB 2 and earlier
* Full support for PuppetDB 3.x
* The first directory location is now a Puppet environment which is filtered on all supported queries. Users can browse different environments with a select field in the top NavBar
* Using limit, order\_by and offset parameters adding pagaination on the Reports page (available in the NavBar). Functionality is available to pages that accept a page attribute.
* The report page now directly queries pypuppetdb to match the report\_id value with the report hash or configuration\_version fields.
* Catching and aborting with a 404 if the report and report\_latest function queries do not return a generator object.
* Adding a Catalogs page (similar to the Nodes page) with a form to compare one node's catalog information with that of another node.
* Updating the Query Endpoints for the Query page.
* Adding to `templates/_macros.html` status\_counts that shows node/report status information, like what is avaiable on the index and nodes pages, available to the reports pages and tables also.
* Showing report logs and metrics in the report page.
* Removing `limit_reports` from `utils.py` because this helper function has been replaced by the limit PuppetDB paging function.

**Known Issues**

* fact\_value pages rendered from JSON valued facts return no results. A more sophisticated API is required to make use of JSON valued facts (through the factsets, fact-paths and/or fact-contents endpoints for example)

0.0.5
-----

* Now requires WTForms versions less than 2.0
* Adding a Flask development server in `dev.py`.
* Adding CSRF protection VIA the flask\_wtf CsrfProtect object.
* Allowing users to configure the report limit on pages where reports are listed with the LIMIT\_REPORTS configuration option.
* Adding an inventory page to users to be able to see all available nodes and a configure lists of facts to display VIA the INVENTORY\_FACTS configuration option.
* Adding a page to view a node's catalog information if enabled, disabled by default. Can be changed with the ENABLE\_CATALOG configuration attribute.
* New configuration option GRAPH\_FACTS allows the user to choose which graphs will generate pie on the fact pages.
* Replacing Chart.js with c3.js and d3.js.
* Adding Semantic UI 0.16.1 and removing unused bootstrap styles.
* Adding an OFFLINE\_MODE configuration option to load local assets or from a CDN service. This is useful in environments without internet access.

0.0.4
-----

* Fix the sorting of the different tables containing facts.
* Fix the license in our `setup.py`. The license shouldn't be longer than 200 characters. We were including the full license tripping up tools like bdist\_rpm.

0.0.3
-----

This release introduces a few big changes. The most obvious one is the revamped
Overview page which has received significant love. Most of the work was done by
Julius Härtl. The Nodes tab has been given a slight face-lift too.

Other changes:

* This release depends on the new pypuppetdb 0.1.0. Because of this the SSL configuration options have been changed:
  * `PUPPETDB_SSL` is gone and replaced by `PUPPETDB_SSL_VERIFY` which now defaults to `True`. This only affects connections to PuppetDB that happen over SSL.
  * SSL is automatically enabled if both `PUPPETDB_CERT` and `PUPPETDB_KEY` are provided.
* Display of deeply nested metrics and query results have been fixed.
* Average resources per node metric is now displayed as a natural number.
* A link back to the node has been added to the reports.
* A few issues with reports have been fixed.
* A new setting called `UNRESPONSIVE_HOURS` has been added which denotes the amount of hours after which Puppetboard will display the node as unreported if it hasn't checked in. We default to `2` hours.
* The event message can now be viewed by clicking on the event.

Puppetboard is now neatly packaged up and available on PyPI. This should
significantly help reduce the convoluted installation instructions people had
to follow.

Updated installation instructions have been added on how to install from PyPI
and how to configure your HTTPD.

0.0.2
-----

In this release we've introduced a few new things. First of all we now require pypuppetdb version 0.0.4 or later which includes support for the v3 API introduced with PuppetDB 1.5.

Because of changes in PuppetDB 1.5 and therefor in pypuppetdb users of the v2 API, regardless of the PuppetDB version, will no longer be able to view reports or events.

In light of this the following settings have been removed:

* `PUPPETDB_EXPERIMENTAL`

Two new settings have been added:

* `PUPPETDB_API`: an integer, defaulting to `3`, representing the API version we want to use.
* `ENABLE_QUERY`: a boolean, defaulting to `True`, on wether or not to be able to use the Query tab.

We've also added a few new features:

* Thanks to some work done during PuppetConf together with Nick Lewis (from Puppet Labs) we now expose all of PuppetDB's metrics in the Metrics tab. The formatting isn't exactly pretty but it's a start.
* Spencer Krum added the graphing capabilities to the Facts tab.
* Daniel Lawrence added a feature so that facts on the node view are clickable and take you to the complete overview of that fact for your infrastructure and made the nodes in the complete facts list clickable so you can jump to a node.
* Klavs Klavsen contributed some documentation on how to run Puppetboard with Passenger.

0.0.1
-----

Initial release.



\* *This Changelog was automatically generated by [github_changelog_generator](https://github.com/github-changelog-generator/github-changelog-generator)*

            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/voxpupuli/puppetboard",
    "name": "puppetboard",
    "maintainer": "",
    "docs_url": null,
    "requires_python": ">=3.8.0",
    "maintainer_email": "",
    "keywords": "puppet puppetdb puppetboard",
    "author": "Vox Pupuli",
    "author_email": "voxpupuli@groups.io",
    "download_url": "https://files.pythonhosted.org/packages/92/a3/4ec351be9d1e5f45ee5e9d4da5ba6e9141ec79346af7a4a6c9c413b8709b/puppetboard-5.4.0.tar.gz",
    "platform": null,
    "description": "# Puppetboard\n\n[![PyPI Version](https://img.shields.io/pypi/v/puppetboard)](https://pypi.org/project/puppetboard/)\n[![PyPI Downloads](https://img.shields.io/pypi/dm/puppetboard)](https://pypi.org/project/puppetboard/)\n![Tests Status](https://github.com/voxpupuli/puppetboard/workflows/tests%20(unit)/badge.svg)\n[![codecov](https://codecov.io/gh/voxpupuli/puppetboard/branch/master/graph/badge.svg?token=uez5RoiU6I)](https://codecov.io/gh/voxpupuli/puppetboard)\n[![By Voxpupuli](https://img.shields.io/badge/by-Vox%20Pupuli%20%F0%9F%A6%8A-ef902f.svg)](http://voxpupuli.org)\n\n\nPuppetboard is a web interface to [PuppetDB](https://puppet.com/docs/puppetdb/latest/index.html) aiming to replace\nthe reporting functionality of [Puppet Enterprise console (previously: Puppet Dashboard)](https://puppet.com/docs/pe/latest/console_accessing.html)\nfor the open source Puppet.\n\n![Overview](https://raw.githubusercontent.com/voxpupuli/puppetboard/master/screenshots/overview.png)\n\nSee [more screenshots here](#more-screenshots).\n\n## Table of Contents\n\n* [Requirements](#requirements)\n* [Installation](#installation)\n* [Configuration](#configuration)\n* [Getting Help](#getting-help)\n* [Contributing](#contributing)\n* [Legal](#legal)\n\n## Requirements<a id=\"requirements\"></a>\n\n* PuppetDB v. 5.2-8.*\n  * (**Note**: PuppetDB 8.1.0 is not supported because of [this bug](https://github.com/puppetlabs/puppetdb/issues/3866). Please update to 8.1.1+.)\n* Python 3.8-3.11 or Docker\n\n## Installation<a id=\"installation\"></a>\n\nPuppetboard is packaged and available on PyPI.\n\n### With Puppet module\n\nThere is a [Puppet module](https://forge.puppetlabs.com/puppet/puppetboard) originally written by\n [Spencer Krum](https://github.com/nibalizer) and currently maintained by [Voxpupuli](https://voxpupuli.org/)\nthat takes care of installing the Puppetboard for you.\n\nTo see how to get it working with RedHat/Centos 7 check out these [docs](https://github.com/voxpupuli/puppetboard/blob/master/docs/EL7.md).\n\n### Using Docker\n\nWe provide [an official Docker image in the GitHub Container Registry](https://github.com/orgs/voxpupuli/packages/container/package/puppetboard).\n\nYou must provide a secret key! Generate one for example by running `ruby -e \"require 'securerandom'; puts SecureRandom.hex(32)\"`.\n\nYou can run the app on your PuppetDB host with this command:\n\n```bash\ndocker run -it \\\n  -e PUPPETDB_HOST=localhost \\\n  -e PUPPETDB_PORT=8080 \\\n  -e SECRET_KEY=XXXXXXXX \\\n  --net=host \\\n  ghcr.io/voxpupuli/puppetboard\n```\n\nOptionally you can set `PUPPETBOARD_URL_PREFIX` env variable to a value like `/puppetboard` to run the app under a URL prefix.\n\nYou can use the following Puppet Code to have Puppetboard managed by Puppet:\n\n```puppet\ninclude docker\n\ndocker::image { 'ghcr.io/voxpupuli/puppetboard': }\n\ndocker::run { 'puppetboard':\n  image => 'ghcr.io/voxpupuli/puppetboard',\n  env   => [\n    'PUPPETDB_HOST=127.0.0.1',\n    'PUPPETDB_PORT=8080',\n    'PUPPETBOARD_PORT=8088',\n    'SECRET_KEY=XXXXXXXX',\n  ],\n  net   => 'host',\n}\n```\n\nIf you want to have all features enabled, you must use SSL talking to PuppetDB:\n\n```puppet\nfile { '/etc/puppetboard':\n  ensure => directory,\n}\nfile { '/etc/puppetboard/key.pem':\n  ensure => file,\n  mode   => '0644',\n  source => \"/etc/puppetlabs/puppet/ssl/private_keys/${facts['networking']['fqdn']}.pem\",\n}\nfile { '/etc/puppetboard/cert.pem':\n  ensure => file,\n  mode   => '0644',\n  source => \"/etc/puppetlabs/puppet/ssl/certs/${facts['networking']['fqdn']}.pem\",\n}\n\ninclude docker\n\ndocker::image { 'ghcr.io/voxpupuli/puppetboard': }\n\ndocker::run { 'puppetboard':\n  image   => 'ghcr.io/voxpupuli/puppetboard',\n  volumes => ['/etc/puppetboard:/etc/puppetboard:ro'],\n  env     => [\n    'PUPPETDB_HOST=puppet', # this must be the certname or DNS_ALT_NAME of the PuppetDB host\n    'PUPPETDB_PORT=8081',\n    'PUPPETBOARD_PORT=8080',\n    'ENABLE_CATALOG=true',\n    'PUPPETDB_SSL_VERIFY=false',\n    'PUPPETDB_KEY=/etc/puppetboard/key.pem',\n    'PUPPETDB_CERT=/etc/puppetboard/cert.pem',\n    'SECRET_KEY=XXXXXXXX',\n    'DEFAULT_ENVIRONMENT=*',\n  ],\n  net     => 'host',\n}\n```\n\nWithin an air gapped environment you want to load all content from your local puppetboard web service.\nAdd: `'OFFLINE_MODE=true',` to the `env` parameter list of the `docker::run` Puppet type.\n\nWe also provide the Dockerfile, so you can build the image yourself:\n```bash\ndocker build -t puppetboard .\n```\n\n### From a package\n\nActively maintained packages:\n\n* [FreeBSD](https://www.freshports.org/www/py-puppetboard/)\n  maintained by [Romain Tarti\u00e8re](https://github.com/smortex)\n* [OpenBSD](https://cvsweb.openbsd.org/cgi-bin/cvsweb/ports/www/puppetboard/)\n  maintained by [Sebastian Reitenbach](https://github.com/buzzdeee)\n\n### Manually\n\nYou can also install the package from PyPI and configure a WSGI-capable application server to serve it.\n\nWe recommend using virtualenv to provide a separate environment for the app.\n\n```bash\nvirtualenv -p python3 venv\n. venv/bin/activate\npip install puppetboard\n```\n\nPlease see [an article about more deployment setups here](https://github.com/voxpupuli/puppetboard/blob/master/docs/Deployment-setups.md).\n\n## Configuration<a id=\"configuration\"></a>\n\n### Puppet agents\n\nThe default value of `usecacheonfailure = true` configuration setting for Puppet agents causes Puppet runs to always succeed,\nevent if there are catalog compilation failures f.e. because of a syntax error in your code. This is because in such\ncases with this setting Puppet will just use a cached working catalog and report the run to PuppetDB as successful.\n(Although with an error visible in the Puppet run log.)\n\nTherefore, to show the nodes with a catalog compilation as failed in Puppetboard you need to set\n`usecacheonfailure = false` in your nodes' `puppet.conf`.\n\n### PuppetDB\n\nOf course you need to configure your Puppet Server to store the Puppet run reports in PuppetDB.\nIf you haven't done that already please follow the [PuppetDB documentation](https://puppet.com/docs/puppetdb/latest/connect_puppet_server.html)\nabout this.\n\nIf you run Puppetboard on a different host than PuppetDB then you may want to configure the certificate\nallow-list for which certificates are allowed to access data from PuppetDB.\nPlease read more about this feature in the [PuppetDB documentation here](https://puppet.com/docs/puppetdb/latest/configure.html#certificate-allowlist).\n\n### App settings\n\nPuppetboard will look for a file pointed at by the `PUPPETBOARD_SETTINGS` environment variable.\nThe file has to be identical to\n[default_settings.py](https://github.com/voxpupuli/puppetboard/blob/master/puppetboard/default_settings.py)\nbut should only override the settings you need changed.\n\nIf you run PuppetDB and Puppetboard on the same machine the default settings provided will be enough to get you started\nand you won't need a custom settings file.\n\nAssuming your webserver and PuppetDB machine are not identical you will at least have to change the following settings:\n\n-   `PUPPETDB_HOST`\n-   `PUPPETDB_PORT`\n\nBy default PuppetDB requires SSL to be used when a non-local client wants to connect. Therefore you'll also have to\nsupply the following settings:\n\n-   `PUPPETDB_SSL_VERIFY = True`\n-   `PUPPETDB_KEY = /path/to/private/keyfile.pem`\n-   `PUPPETDB_CERT = /path/to/public/keyfile.crt`\n\nWhen using the Puppetboard Docker image, you may also pass Puppetboard it's certificate contents via these environment\nvariables, either as a multiline string or pre-base64 encoded. This can be useful where the certificate is stored in a\nsecrets store i.e. AWS SSM Parameter Store.\n\n```\nPUPPETDB_CERT=\"-----BEGIN CERTIFICATE-----\n...\n-----END CERTIFICATE-----\"\n```\n\n```\nPUPPETDB_CERT=LS0tLS1CRUdJTiBSU0EgUFJJVkFURSBLRVktLS0tLQouLi4KLS0tLS1FTkQgQ0VSVElGSUNBVEUtLS0tLQ==\n```\n\nFor information about how to generate the correct keys please refer to the\n[pypuppetdb documentation](https://pypuppetdb.readthedocs.io/en/latest/connecting.html#ssl). Alternatively it is possible\nto explicitly specify the protocol to be used setting the `PUPPETDB_PROTO` variable.\n\nOther settings that might be interesting, in no particular order:\n\n- `SECRET_KEY`: set this to a long string, **the same for each application replica**, and keep it secret. Refer to\n    [Flask documentation](https://flask.palletsprojects.com/en/2.1.x/quickstart/#sessions), section\n    \"How to generate good secret keys\" for more info. Cannot be an empty string, which is the default.\n- `FAVORITE_ENVS`: an ordered list of Puppet environment names that will be shown immediately after \"All Environments\"\n    and before other environments (which are sorted by name) in the dropdown for choosing the environment shown\n    in the top-right of the UI. Environments listed here that do not really exist in your deployment are silently ignored.\n- `SHOW_ERROR_AS`: `friendly` or `raw`. The former makes Puppet run errors in Report and Failures views shown\n    in a modified, (arguably) more user-friendly form. The latter shows them as they are.\n    Defaults to `friendly`.\n- `CODE_PREFIX_TO_REMOVE`: what code path that should be shortened in \"Friendly errors\" to \"\u2026\" for readability.\n    A regexp. Defaults to `/etc/puppetlabs/code/environments(/.*?/modules)?`.\n- `PUPPETDB_TIMEOUT`: Defaults to 20 seconds, but you might need to increase this value. It depends on how big the\n    results are when querying PuppetDB. This behaviour will change in a future release when pagination will be introduced.\n- `UNRESPONSIVE_HOURS`: The amount of hours since the last check-in after which a node is considered unresponsive.\n- `LOGLEVEL`: A string representing the loglevel. It defaults to `'info'` but can be changed to `'warning'` or\n    `'critical'` for less verbose logging or `'debug'` for more information.\n- `ENABLE_QUERY`: Defaults to `True` causing a Query tab to show up in the web interface allowing users to write\n    and execute arbitrary queries against a set of endpoints in PuppetDB. Change this to `False` to disable this.\n    See `ENABLED_QUERY_ENDPOINTS` to fine-tune which endpoints are allowed.\n- `ENABLED_QUERY_ENDPOINTS`: If `ENABLE_QUERY` is `True`, allow to fine tune the endpoints of PuppetDB APIs that\n    can be queried. It must be a list of strings of PuppetDB endpoints for which the query is enabled.\n    See the `QUERY_ENDPOINTS` constant in the `puppetboard.app` module for a list of the available endpoints.\n- `GRAPH_TYPE`: Specify the type of graph to display.   Default is\n    pie, other good option is donut.   Other choices can be found here:\n    [C3.js documentation](https://c3js.org/examples.html#chart)\n- `GRAPH_FACTS`: A list of fact names to tell PuppetBoard to generate a pie-chart on the fact page. With some fact\n    values being unique per node, like ipaddress, uuid, and serial number, as well as structured facts it was no longer\n    feasible to generate a graph for everything.\n- `INVENTORY_FACTS`: A list of tuples that serve as the column header and the fact name to search for to create\n    the inventory page. If a fact is not found for a node then `undef` is printed.\n- `INVENTORY_FACT_TEMPLATES`: A mapping between fact name and jinja template to customize display\n- `ENABLE_CATALOG`: If set to `True` allows the user to view a node's latest catalog. This includes all managed\n    resources, their file-system locations and their relationships, if available. Defaults to `False`.\n- `REFRESH_RATE`: Defaults to `30` the number of seconds to wait until the index page is automatically refreshed.\n- `DEFAULT_ENVIRONMENT`: Defaults to `'production'`, as the name suggests, load all information filtered by this\n    environment value.\n- `REPORTS_COUNT`: Defaults to `10` the limit of the number of reports to load on the node or any reports page.\n- `OFFLINE_MODE`: If set to `True` load static assets (jquery, semantic-ui, etc) from the local web server instead\n    of a CDN. Defaults to `False`.\n- `DAILY_REPORTS_CHART_ENABLED`: Enable the use of daily chart graphs when looking at dashboard and node view.\n- `DAILY_REPORTS_CHART_DAYS`: Number of days to show history for on the daily report graphs.\n- `DISPLAYED_METRICS`: Metrics to show when displaying node summary. Example: `'resources.total'`, `'events.noop'`.\n- `TABLE_COUNT_SELECTOR`: Configure the dropdown to limit number of hosts to show per page.\n- `LITTLE_TABLE_COUNT`: Default number of reports to show when when looking at a node.\n- `NORMAL_TABLE_COUNT`: Default number of nodes to show when displaying reports and catalog nodes.\n- `LOCALISE_TIMESTAMP`: If set to `True` then timestamps are shown using your browser's timezone. Otherwise UTC is used. Defaults to `True`.\n- `WITH_EVENT_NUMBERS`: If set to `True` then Overview and Nodes list shows exact number of changed resources\n    in the last report. Otherwise shows only 'some' string if there are resources with given status. Setting this\n    to `False` gives performance benefits, especially in big Puppet environments (more than few hundreds of nodes).\n    Defaults to `True`.\n- `ENABLE_CLASS`: If set to `True` allows the user to view the number of resource events (number of changed resources in the last report) grouped by class.\n    The resource events are grouped by their status ('failure', 'success', 'noop').\n- `CLASS_EVENTS_STATUS_COLUMNS`: A mapping between the status of the resource events and the name of the columns of the table to display.\n- `CACHE_TYPE`: Specifies which type of caching object to use when `SCHEDULER_ENABLED` is set to `True`.\n    The cache is used for the classes view (`ENABLE_CLASS` is set to `True`) which requires parsing the events of all the latest reports to group them by Puppet class.\n    If the last report is present in the cache, we do not parse the events, which avoids unnecessary processing.\n    If you configure more than one worker, you must use a shared backend (e.g. `MemcachedCache`) to allow the sharing of the cache between the processes.\n    Indeed, the `SimpleCache` type does not allow sharing the cache between processes, it uses the process memory to store the cache.\n    Defaults to `SimpleCache`.\n- `CACHE_DEFAULT_TIMEOUT`: Cache lifetime in second. Defaults to `3600`.\n- `SCHEDULER_ENABLED`: If set to `True` then a scheduler instance is created in order to execute scheduled jobs. Defaults to `False`.\n- `SCHEDULER_JOBS`: List of the scheduled jobs to trigger within a worker.\n    A job can for example be used to compute a result to be cached. This is the case for the classes view which uses a job to pre-compute at regular intervals the results to be displayed.\n    Each scheduled job must contain the following fields: `id`, `func`, `trigger`, `seconds`.\n- `SCHEDULER_LOCK_BIND_PORT`: Specifies an available port that allows a single worker to listen on it.\n    This allows to configure scheduled jobs in a single worker. Defaults to `49100`.\n\n## Getting Help<a id=\"getting-help\"></a>\n\nFor questions or bug reports you can file an [issue](https://github.com/voxpupuli/puppetboard/issues).\n\n## Contributing<a id=\"contributing\"></a>\n\n### Development\n\nPuppetboard relies on the [pypuppetdb](https://pypi.org/project/pypuppetdb/) library to fetch data from PuppetDB\nand is built with the help of the [Flask](https://flask.palletsprojects.com) microframework.\n\nIf you wish to hack on Puppetboard you should fork/clone the Github repository and then install the requirements through:\n\n```bash\npip install --upgrade wheel setuptools\npython setup.py develop\npip install --upgrade -r requirements-test.txt\nmypy --install-types --non-interactive puppetboard/ test/\n```\n\nYou're advised to do this inside a virtualenv specifically created to work on Puppetboard as to not pollute your global Python installation.\n\nYou can run the tests with:\n```bash\npytest --cov=. --cov-report=xml --strict-markers --mypy puppetboard test\npylint --errors-only puppetboard test\n```\n\nYou can run the app it in development mode by simply executing:\n\n```bash\nflask run\n```\n\nYou can specify listening host and port with environment variables or command line otions:\n\n```bash\nexport FLASK_RUN_HOST=0.0.0.0\nexport FLASK_RUN_PORT=8000\n\nflask run\n```\n\nor\n\n```bash\nflask run --host '0.0.0.0' --port '8000'\n```\n\n\nUse `PUPPETBOARD_SETTINGS` to change the different settings or patch `default_settings.py` directly.\nTake care not to include your local changes on that file when submitting patches for Puppetboard.\nPlace a `settings.py` file inside the base directory of the git repository that will be used, if the environment\nvariable is not set.\n\nWe welcome contributions to this project. However, there are a few ground rules contributors should be aware of.\n\n### License\n\nThis project is licensed under the Apache v2.0 License. As such, your contributions, once accepted, are automatically\ncovered by this license.\n\n### Commit messages\n\nWrite decent commit messages. Don't use swear words and refrain from uninformative commit messages as 'fixed typo'.\n\nThe preferred format of a commit message:\n\n    docs/quickstart: Fixed a typo in the Nodes section.\n\n    If needed, elaborate further on this commit. Feel free to write a\n    complete blog post here if that helps us understand what this is\n    all about.\n\n    Fixes #4 and resolves #2.\n\nIf you'd like a more elaborate guide on how to write and format your commit messages have a look at [this post\nby Tim Pope](https://tbaggery.com/2008/04/19/a-note-about-git-commit-messages.html).\n\n### Build a release\n\nplease see: [RELEASE.md](RELEASE.md)\n\n## More Screenshots<a id=\"more-screenshots\"></a>\n\n* Overview / Index / Homepage\n\n![Overview / Index / Homepage](https://raw.githubusercontent.com/voxpupuli/puppetboard/master/screenshots/overview.png)\n\n* Nodes view, all active nodes\n\n![Nodes view, all active nodes](https://raw.githubusercontent.com/voxpupuli/puppetboard/master/screenshots/nodes.png)\n\n* Single node page / overview\n\n![Single node page / overview](https://raw.githubusercontent.com/voxpupuli/puppetboard/master/screenshots/node.png)\n\n* Report view\n\n![Report view](https://raw.githubusercontent.com/voxpupuli/puppetboard/master/screenshots/report.png)\n\n* Facts view\n\n![Facts view](https://raw.githubusercontent.com/voxpupuli/puppetboard/master/screenshots/facts.png)\n\n* Single fact, with graphs\n\n![Single fact, with graphs](https://raw.githubusercontent.com/voxpupuli/puppetboard/master/screenshots/fact.png)\n\n* All nodes that have this fact with that value\n\n![All nodes that have this fact with that value](https://raw.githubusercontent.com/voxpupuli/puppetboard/master/screenshots/fact_value.png)\n\n* Query view - results as table\n\n![Query view](https://raw.githubusercontent.com/voxpupuli/puppetboard/master/screenshots/query_result_table.png)\n\n* Query view - results as JSON\n\n![Query view](https://raw.githubusercontent.com/voxpupuli/puppetboard/master/screenshots/query_result_json.png)\n\n* Metrics view\n\n![Metrics view](https://raw.githubusercontent.com/voxpupuli/puppetboard/master/screenshots/metrics.png)\n\n* Single metric\n\n![Single metric](https://raw.githubusercontent.com/voxpupuli/puppetboard/master/screenshots/metric.png)\n\n* Inventory view\n\n![Inventory view](https://raw.githubusercontent.com/voxpupuli/puppetboard/master/screenshots/inventory.png)\n\n* Classes view, group the resource events of the last reports by Puppet class\n\n![Classes view](https://raw.githubusercontent.com/voxpupuli/puppetboard/master/screenshots/classes.png)\n\n* Class view, list the nodes with almost one resource event for a given class\n\n![Class view](https://raw.githubusercontent.com/voxpupuli/puppetboard/master/screenshots/class.png)\n\n# Legal<a id=\"legal\"></a>\n\nThe app code is licensed under the [Apache License, Version 2.0](./LICENSE).\n\nThe favicon has been created based on the icon created by [Jonathan Couti\u00f1o](https://thenounproject.com/ralts01/)\nunder the [Attribution 3.0 Unported (CC BY 3.0) license](https://creativecommons.org/licenses/by/3.0/),\ndownloaded from the [Noun Project](https://thenounproject.com).\n\n# Changelog\n\nAll notable changes to this project will be documented in this file.\n\n## [v5.4.0](https://github.com/voxpupuli/puppetboard/tree/v5.4.0) (2024-03-01)\n\n[Full Changelog](https://github.com/voxpupuli/puppetboard/compare/v5.3.0...v5.4.0)\n\n**Merged pull requests:**\n\n- Bump types-setuptools from 69.0.0.20240125 to 69.1.0.20240301 [\\#1048](https://github.com/voxpupuli/puppetboard/pull/1048) ([dependabot[bot]](https://github.com/apps/dependabot))\n- Bump pylint from 3.0.3 to 3.1.0 [\\#1043](https://github.com/voxpupuli/puppetboard/pull/1043) ([dependabot[bot]](https://github.com/apps/dependabot))\n- Bump coverage from 7.4.1 to 7.4.3 [\\#1042](https://github.com/voxpupuli/puppetboard/pull/1042) ([dependabot[bot]](https://github.com/apps/dependabot))\n- Bump pytest from 8.0.0 to 8.0.2 [\\#1041](https://github.com/voxpupuli/puppetboard/pull/1041) ([dependabot[bot]](https://github.com/apps/dependabot))\n- Bump typing-extensions from 4.9.0 to 4.10.0 [\\#1040](https://github.com/voxpupuli/puppetboard/pull/1040) ([dependabot[bot]](https://github.com/apps/dependabot))\n- Bump types-requests from 2.31.0.20240125 to 2.31.0.20240218 [\\#1036](https://github.com/voxpupuli/puppetboard/pull/1036) ([dependabot[bot]](https://github.com/apps/dependabot))\n- Bump urllib3 from 2.2.0 to 2.2.1 [\\#1033](https://github.com/voxpupuli/puppetboard/pull/1033) ([dependabot[bot]](https://github.com/apps/dependabot))\n\n## [v5.3.0](https://github.com/voxpupuli/puppetboard/tree/v5.3.0) (2024-02-07)\n\n[Full Changelog](https://github.com/voxpupuli/puppetboard/compare/v5.2.0...v5.3.0)\n\n**Implemented enhancements:**\n\n- Add favicon to radiator [\\#1023](https://github.com/voxpupuli/puppetboard/pull/1023) ([surdaft](https://github.com/surdaft))\n\n**Merged pull requests:**\n\n- Bump markupsafe from 2.1.3 to 2.1.5 [\\#1022](https://github.com/voxpupuli/puppetboard/pull/1022) ([dependabot[bot]](https://github.com/apps/dependabot))\n- Bump flask from 2.3.3 to 3.0.2 [\\#1021](https://github.com/voxpupuli/puppetboard/pull/1021) ([dependabot[bot]](https://github.com/apps/dependabot))\n- Bump certifi from 2023.11.17 to 2024.2.2 [\\#1019](https://github.com/voxpupuli/puppetboard/pull/1019) ([dependabot[bot]](https://github.com/apps/dependabot))\n- Bump urllib3 from 2.1.0 to 2.2.0 [\\#1016](https://github.com/voxpupuli/puppetboard/pull/1016) ([dependabot[bot]](https://github.com/apps/dependabot))\n- Bump pytest from 7.4.4 to 8.0.0 [\\#1015](https://github.com/voxpupuli/puppetboard/pull/1015) ([dependabot[bot]](https://github.com/apps/dependabot))\n- Bump coverage from 7.4.0 to 7.4.1 [\\#1014](https://github.com/voxpupuli/puppetboard/pull/1014) ([dependabot[bot]](https://github.com/apps/dependabot))\n- Bump types-setuptools from 69.0.0.20240115 to 69.0.0.20240125 [\\#1012](https://github.com/voxpupuli/puppetboard/pull/1012) ([dependabot[bot]](https://github.com/apps/dependabot))\n- Bump types-requests from 2.31.0.20240106 to 2.31.0.20240125 [\\#1011](https://github.com/voxpupuli/puppetboard/pull/1011) ([dependabot[bot]](https://github.com/apps/dependabot))\n- Bump bandit from 1.7.6 to 1.7.7 [\\#1009](https://github.com/voxpupuli/puppetboard/pull/1009) ([dependabot[bot]](https://github.com/apps/dependabot))\n- Bump beautifulsoup4 from 4.12.2 to 4.12.3 [\\#1006](https://github.com/voxpupuli/puppetboard/pull/1006) ([dependabot[bot]](https://github.com/apps/dependabot))\n- Bump types-setuptools from 69.0.0.0 to 69.0.0.20240115 [\\#1003](https://github.com/voxpupuli/puppetboard/pull/1003) ([dependabot[bot]](https://github.com/apps/dependabot))\n- Bump jinja2 from 3.1.2 to 3.1.3 [\\#1002](https://github.com/voxpupuli/puppetboard/pull/1002) ([dependabot[bot]](https://github.com/apps/dependabot))\n- Bump wtforms from 3.1.1 to 3.1.2 [\\#1000](https://github.com/voxpupuli/puppetboard/pull/1000) ([dependabot[bot]](https://github.com/apps/dependabot))\n- Bump types-requests from 2.31.0.8 to 2.31.0.20240106 [\\#999](https://github.com/voxpupuli/puppetboard/pull/999) ([dependabot[bot]](https://github.com/apps/dependabot))\n- Bump pytest from 7.4.3 to 7.4.4 [\\#997](https://github.com/voxpupuli/puppetboard/pull/997) ([dependabot[bot]](https://github.com/apps/dependabot))\n- Bump coverage from 7.3.3 to 7.4.0 [\\#996](https://github.com/voxpupuli/puppetboard/pull/996) ([dependabot[bot]](https://github.com/apps/dependabot))\n- Bump mypy from 1.7.1 to 1.8.0 [\\#995](https://github.com/voxpupuli/puppetboard/pull/995) ([dependabot[bot]](https://github.com/apps/dependabot))\n\n## [v5.2.0](https://github.com/voxpupuli/puppetboard/tree/v5.2.0) (2024-01-17)\n\n[Full Changelog](https://github.com/voxpupuli/puppetboard/compare/v5.1.0...v5.2.0)\n\n**Implemented enhancements:**\n\n- Update README for SECRET\\_KEY and SSL Setup [\\#985](https://github.com/voxpupuli/puppetboard/pull/985) ([tuxmea](https://github.com/tuxmea))\n\n**Fixed bugs:**\n\n- Facts only showing RedHat [\\#961](https://github.com/voxpupuli/puppetboard/issues/961)\n\n**Closed issues:**\n\n- Make it More Apparent that SECRET\\_KEY cannot be blank [\\#978](https://github.com/voxpupuli/puppetboard/issues/978)\n\n**Merged pull requests:**\n\n- also push to hub.docker.com [\\#1004](https://github.com/voxpupuli/puppetboard/pull/1004) ([rwaffen](https://github.com/rwaffen))\n- Bump coverage from 7.3.2 to 7.3.3 [\\#993](https://github.com/voxpupuli/puppetboard/pull/993) ([dependabot[bot]](https://github.com/apps/dependabot))\n- Bump pylint from 3.0.2 to 3.0.3 [\\#992](https://github.com/voxpupuli/puppetboard/pull/992) ([dependabot[bot]](https://github.com/apps/dependabot))\n- Bump bandit from 1.7.5 to 1.7.6 [\\#991](https://github.com/voxpupuli/puppetboard/pull/991) ([dependabot[bot]](https://github.com/apps/dependabot))\n- Bump typing-extensions from 4.8.0 to 4.9.0 [\\#990](https://github.com/voxpupuli/puppetboard/pull/990) ([dependabot[bot]](https://github.com/apps/dependabot))\n- Bump idna from 3.4 to 3.6 [\\#987](https://github.com/voxpupuli/puppetboard/pull/987) ([dependabot[bot]](https://github.com/apps/dependabot))\n- Bump certifi from 2023.7.22 to 2023.11.17 [\\#986](https://github.com/voxpupuli/puppetboard/pull/986) ([dependabot[bot]](https://github.com/apps/dependabot))\n- Bump types-setuptools from 68.2.0.0 to 69.0.0.0 [\\#984](https://github.com/voxpupuli/puppetboard/pull/984) ([dependabot[bot]](https://github.com/apps/dependabot))\n- Bump mypy from 1.6.1 to 1.7.1 [\\#981](https://github.com/voxpupuli/puppetboard/pull/981) ([dependabot[bot]](https://github.com/apps/dependabot))\n- README: note that `SECRET_KEY` can't be empty [\\#979](https://github.com/voxpupuli/puppetboard/pull/979) ([kenyon](https://github.com/kenyon))\n- Bump urllib3 from 2.0.7 to 2.1.0 [\\#977](https://github.com/voxpupuli/puppetboard/pull/977) ([dependabot[bot]](https://github.com/apps/dependabot))\n- Bump flask-apscheduler from 1.13.0 to 1.13.1 [\\#974](https://github.com/voxpupuli/puppetboard/pull/974) ([dependabot[bot]](https://github.com/apps/dependabot))\n- Bump wtforms from 3.1.0 to 3.1.1 [\\#973](https://github.com/voxpupuli/puppetboard/pull/973) ([dependabot[bot]](https://github.com/apps/dependabot))\n- Bump charset-normalizer from 3.3.1 to 3.3.2 [\\#972](https://github.com/voxpupuli/puppetboard/pull/972) ([dependabot[bot]](https://github.com/apps/dependabot))\n- Bump pytest from 7.4.2 to 7.4.3 [\\#971](https://github.com/voxpupuli/puppetboard/pull/971) ([dependabot[bot]](https://github.com/apps/dependabot))\n- Bump werkzeug from 3.0.0 to 3.0.1 [\\#970](https://github.com/voxpupuli/puppetboard/pull/970) ([dependabot[bot]](https://github.com/apps/dependabot))\n- Bump pylint from 3.0.1 to 3.0.2 [\\#968](https://github.com/voxpupuli/puppetboard/pull/968) ([dependabot[bot]](https://github.com/apps/dependabot))\n- Bump charset-normalizer from 3.3.0 to 3.3.1 [\\#967](https://github.com/voxpupuli/puppetboard/pull/967) ([dependabot[bot]](https://github.com/apps/dependabot))\n- Bump pytest-mock from 3.11.1 to 3.12.0 [\\#966](https://github.com/voxpupuli/puppetboard/pull/966) ([dependabot[bot]](https://github.com/apps/dependabot))\n- Add link to C3.js documentation [\\#965](https://github.com/voxpupuli/puppetboard/pull/965) ([mpesari](https://github.com/mpesari))\n- Bump mypy from 1.6.0 to 1.6.1 [\\#964](https://github.com/voxpupuli/puppetboard/pull/964) ([dependabot[bot]](https://github.com/apps/dependabot))\n- Bump urllib3 from 2.0.6 to 2.0.7 [\\#962](https://github.com/voxpupuli/puppetboard/pull/962) ([dependabot[bot]](https://github.com/apps/dependabot))\n- Bump mypy from 1.5.1 to 1.6.0 [\\#958](https://github.com/voxpupuli/puppetboard/pull/958) ([dependabot[bot]](https://github.com/apps/dependabot))\n- Bump wtforms from 3.0.1 to 3.1.0 [\\#957](https://github.com/voxpupuli/puppetboard/pull/957) ([dependabot[bot]](https://github.com/apps/dependabot))\n\n## [v5.1.0](https://github.com/voxpupuli/puppetboard/tree/v5.1.0) (2023-10-08)\n\n[Full Changelog](https://github.com/voxpupuli/puppetboard/compare/v5.0.0...v5.1.0)\n\n**Merged pull requests:**\n\n- pypuppetdb: Update 3.1.0-\\>3.2.0 [\\#954](https://github.com/voxpupuli/puppetboard/pull/954) ([bastelfreak](https://github.com/bastelfreak))\n- Bump python from 3.11-alpine to 3.12-alpine [\\#953](https://github.com/voxpupuli/puppetboard/pull/953) ([dependabot[bot]](https://github.com/apps/dependabot))\n- Bump flask-caching from 2.0.2 to 2.1.0 [\\#952](https://github.com/voxpupuli/puppetboard/pull/952) ([dependabot[bot]](https://github.com/apps/dependabot))\n- CI: Run on PRs and merges; Add dependabot for Dockerfile [\\#951](https://github.com/voxpupuli/puppetboard/pull/951) ([bastelfreak](https://github.com/bastelfreak))\n- Bump pytest-pylint from 0.19.0 to 0.21.0 [\\#950](https://github.com/voxpupuli/puppetboard/pull/950) ([dependabot[bot]](https://github.com/apps/dependabot))\n- Bump pylint from 2.17.7 to 3.0.1 [\\#949](https://github.com/voxpupuli/puppetboard/pull/949) ([dependabot[bot]](https://github.com/apps/dependabot))\n- Bump types-requests from 2.31.0.7 to 2.31.0.8 [\\#948](https://github.com/voxpupuli/puppetboard/pull/948) ([dependabot[bot]](https://github.com/apps/dependabot))\n- Bump coverage from 7.3.1 to 7.3.2 [\\#947](https://github.com/voxpupuli/puppetboard/pull/947) ([dependabot[bot]](https://github.com/apps/dependabot))\n- Bump urllib3 from 2.0.4 to 2.0.6 [\\#945](https://github.com/voxpupuli/puppetboard/pull/945) ([dependabot[bot]](https://github.com/apps/dependabot))\n- Bump werkzeug from 2.3.7 to 3.0.0 [\\#944](https://github.com/voxpupuli/puppetboard/pull/944) ([dependabot[bot]](https://github.com/apps/dependabot))\n- Bump charset-normalizer from 3.2.0 to 3.3.0 [\\#943](https://github.com/voxpupuli/puppetboard/pull/943) ([dependabot[bot]](https://github.com/apps/dependabot))\n- Bump packaging from 23.1 to 23.2 [\\#941](https://github.com/voxpupuli/puppetboard/pull/941) ([dependabot[bot]](https://github.com/apps/dependabot))\n- Bump pylint from 2.17.5 to 2.17.7 [\\#940](https://github.com/voxpupuli/puppetboard/pull/940) ([dependabot[bot]](https://github.com/apps/dependabot))\n- Bump flask-wtf from 1.1.1 to 1.2.1 [\\#939](https://github.com/voxpupuli/puppetboard/pull/939) ([dependabot[bot]](https://github.com/apps/dependabot))\n- Bump types-requests from 2.31.0.2 to 2.31.0.7 [\\#938](https://github.com/voxpupuli/puppetboard/pull/938) ([dependabot[bot]](https://github.com/apps/dependabot))\n- Bump zipp from 3.16.2 to 3.17.0 [\\#932](https://github.com/voxpupuli/puppetboard/pull/932) ([dependabot[bot]](https://github.com/apps/dependabot))\n- Bump flask-apscheduler from 1.12.4 to 1.13.0 [\\#931](https://github.com/voxpupuli/puppetboard/pull/931) ([dependabot[bot]](https://github.com/apps/dependabot))\n- Bump typing-extensions from 4.7.1 to 4.8.0 [\\#930](https://github.com/voxpupuli/puppetboard/pull/930) ([dependabot[bot]](https://github.com/apps/dependabot))\n- Bump pytest from 7.4.1 to 7.4.2 [\\#928](https://github.com/voxpupuli/puppetboard/pull/928) ([dependabot[bot]](https://github.com/apps/dependabot))\n- Bump types-setuptools from 68.1.0.1 to 68.2.0.0 [\\#927](https://github.com/voxpupuli/puppetboard/pull/927) ([dependabot[bot]](https://github.com/apps/dependabot))\n- Bump coverage from 7.3.0 to 7.3.1 [\\#926](https://github.com/voxpupuli/puppetboard/pull/926) ([dependabot[bot]](https://github.com/apps/dependabot))\n- Bump pytest from 7.4.0 to 7.4.1 [\\#924](https://github.com/voxpupuli/puppetboard/pull/924) ([dependabot[bot]](https://github.com/apps/dependabot))\n- update gha [\\#923](https://github.com/voxpupuli/puppetboard/pull/923) ([rwaffen](https://github.com/rwaffen))\n- Bump types-setuptools from 68.1.0.0 to 68.1.0.1 [\\#922](https://github.com/voxpupuli/puppetboard/pull/922) ([dependabot[bot]](https://github.com/apps/dependabot))\n- Bump flask from 2.2.5 to 2.3.3 [\\#920](https://github.com/voxpupuli/puppetboard/pull/920) ([dependabot[bot]](https://github.com/apps/dependabot))\n- Bump click from 8.1.6 to 8.1.7 [\\#919](https://github.com/voxpupuli/puppetboard/pull/919) ([dependabot[bot]](https://github.com/apps/dependabot))\n- Bump mypy from 1.5.0 to 1.5.1 [\\#918](https://github.com/voxpupuli/puppetboard/pull/918) ([dependabot[bot]](https://github.com/apps/dependabot))\n- Bump pytest-randomly from 3.14.0 to 3.15.0 [\\#917](https://github.com/voxpupuli/puppetboard/pull/917) ([dependabot[bot]](https://github.com/apps/dependabot))\n- Bump types-setuptools from 68.0.0.3 to 68.1.0.0 [\\#916](https://github.com/voxpupuli/puppetboard/pull/916) ([dependabot[bot]](https://github.com/apps/dependabot))\n- Bump pytest-randomly from 3.13.0 to 3.14.0 [\\#915](https://github.com/voxpupuli/puppetboard/pull/915) ([dependabot[bot]](https://github.com/apps/dependabot))\n- Bump werkzeug from 2.3.6 to 2.3.7 [\\#914](https://github.com/voxpupuli/puppetboard/pull/914) ([dependabot[bot]](https://github.com/apps/dependabot))\n- Bump coverage from 7.2.7 to 7.3.0 [\\#913](https://github.com/voxpupuli/puppetboard/pull/913) ([dependabot[bot]](https://github.com/apps/dependabot))\n- Bump mypy from 1.4.1 to 1.5.0 [\\#911](https://github.com/voxpupuli/puppetboard/pull/911) ([dependabot[bot]](https://github.com/apps/dependabot))\n- Bump pyparsing from 3.1.0 to 3.1.1 [\\#910](https://github.com/voxpupuli/puppetboard/pull/910) ([dependabot[bot]](https://github.com/apps/dependabot))\n\n## [v5.0.0](https://github.com/voxpupuli/puppetboard/tree/v5.0.0) (2023-07-27)\n\n* Stop setting `SECRET_KEY` value to a random string by default. This has caused issues in deployments with more than one app replica or when the app was restarted. Please set this to your own long, random string, **the same for each application replica**. Implements [#721](https://github.com/voxpupuli/puppetboard/issues/721).\n* Drop support for Python 3.7 (end-of-life in June 2023). PR [#899](https://github.com/voxpupuli/puppetboard/pull/899)\n* Fix broken links in Classes view. PR [#868](https://github.com/voxpupuli/puppetboard/pull/868), fixes [#816](https://github.com/voxpupuli/puppetboard/issues/816).\n* Fix if fact is `None` (default for full node view). PR [#908](https://github.com/voxpupuli/puppetboard/pull/908), fixes [#907](https://github.com/voxpupuli/puppetboard/issues/907).\n* Dependencies update.\n\nThanks to the following contributors of this release:\n* [Louis Charreau](https://github.com/lcharreau)\n* [Yehuda Katz](https://github.com/yakatz)\n\n4.3.0\n-----\n\n* Add new **Classes** view. This view lists the Puppet classes that have had at least one of their resources changed (event). ([#799](https://github.com/voxpupuli/puppetboard/pull/799)).\n\nBig thanks to [Louis Charreau](https://github.com/lcharreau) who contributed the above feature!\n\n4.2.6\n-----\n\n* Fix auto-resize in the Radiator view in offline mode  ([#718](https://github.com/voxpupuli/puppetboard/issues/718)).\n\nThanks to [Ren\u00e9 Hernandez 2nd](https://github.com/REHICode) who contributed to this release!\n\n4.2.5\n-----\n\n* **Really** fix starting the app when the SECRET_KEY is set to `bytes` instead of `str`. ([#741](https://github.com/voxpupuli/puppetboard/issues/741)).\n\n4.2.4\n-----\n\n* Fix starting the app when the SECRET_KEY is set to `bytes` instead of `str`. ([#741](https://github.com/voxpupuli/puppetboard/issues/741)).\n\n4.2.3\n-----\n\n* Sort 'uptime' fact values correctly again - it was fixed in v3.4.0 but got broken in v4.1.0 ([#469](https://github.com/voxpupuli/puppetboard/issues/469)).\n\n4.2.2\n-----\n* Showing debug messages using a different color than the error messages in the Logs of the Report view. (PR [#725](https://github.com/voxpupuli/puppetboard/pull/725))   \n* Start warning that the default SECRET_KET will not be provided starting with Puppetboard 5.x - see issue [#721](https://github.com/voxpupuli/puppetboard/issues/721) for more info. (PR [#726](https://github.com/voxpupuli/puppetboard/pull/726)) \n\nThanks to the contributor of this release, [Shawn Toffel](https://github.com/shawntoffel)!\n\n4.2.1\n-----\n* Fix `LOCALISE_TIMESTAMP = False` and document how it works. ([#461](https://github.com/voxpupuli/puppetboard/issues/461))\n\n4.2.0\n-----\n* Confirm support for Python 3.11 (final), switch the Docker image to use that version of Python.\n\n4.1.2\n-----\n* Fixed incompatibility with Python 3.7 that has occurred at least in the tests (regression introduced in 4.1.1). ([#720](https://github.com/voxpupuli/puppetboard/pull/720))\n\n4.1.1\n-----\n* Fixed showing facts with graph (regression introduced in 4.1.0). ([#719](https://github.com/voxpupuli/puppetboard/issues/719))\n\n4.1.0\n-----\n* Show configurable favorite environments immediately after the \"All Environments\" in the dropdown. ([#705](https://github.com/voxpupuli/puppetboard/pull/705))\n* Automatic OS values for Linux, macOS and Windows nodes in the Inventory view. Customizable Inventory fact values using Jinja templates. PR [#712](https://github.com/voxpupuli/puppetboard/pull/712), fixes [#485](https://github.com/voxpupuli/puppetboard/issues/485).\n* Big upgrade of the frontend dependencies, including migration to their maintained forks in a few cases (Semantic UI \u2192 Fomantic UI, c3.js \u2192 billboard.js). ([#708](https://github.com/voxpupuli/puppetboard/pull/708))\n\nVery big thanks to [Melchior NOGUES](https://github.com/melck) who did most of the development for this release!\n\n4.0.5\n-----\n(4.0.4 was a partially incorrect release. Please use 4.0.5 instead.)\n\n* Fix Puppetboard not starting on PE PuppetDB. ([#711](https://github.com/voxpupuli/puppetboard/issues/711))\n\n4.0.3\n-----\n\n* Make facts with integer values which are strings internally findable. ([#706](https://github.com/voxpupuli/puppetboard/issues/706))\n\nThanks to [Stephen Ryan](https://github.com/ryaner) who contributed to this release!\n\n4.0.2\n-----\n\n* Make the app work when installed from the git repo, f.e. using the [puppet-puppetboard module](https://github.com/voxpupuli/puppet-puppetboard). ([#704](https://github.com/voxpupuli/puppetboard/issues/704)).\n\n4.0.1\n-----\n\n* Fix the Docker image - make the app start again. ([#701](https://github.com/voxpupuli/puppetboard/issues/701)).\n* Remove border-radius from the top menu to make it appear more clearly anchored to the page. ([#699](https://github.com/voxpupuli/puppetboard/pull/699))\n\nThanks to [Marcel Deglau](https://github.com/promarcel) who contributed to this release!\n\n4.0.0\n-----\n\nThis is mostly a maintenance release.\n\nThe major version is bumped because of:\n* dropped support for PuppetDBs < 5.2.0 (Puppet 4 has reached its end-of-life in October 2018),\n* dropped support for Python 3.6 (end-of-life in December 2021).\n\nThere might be some performance improvements thanks to the upgrade of the core dependencies - Flask, Jinja2, Werkzeug etc.\n\nAdditional improvements:\n* Set custom user-agent header that will make troubleshooting easier.\n\n3.6.1\n-----\n\n* Stop modifying the query response for showing as JSON (fixes [#695](https://github.com/voxpupuli/puppetboard/issues/695), PR [#696](https://github.com/voxpupuli/puppetboard/pull/696)).\n\n3.6.0\n-----\n\n* Show user-friendly error message when there's a problem with connecting to the PuppetDB and just zeros instead of HTTP 404 when the PuppetDB is just yet empty ([PR #692](https://github.com/voxpupuli/puppetboard/pull/692), \n* Add a healthcheck to the Docker image ([PR #690](https://github.com/voxpupuli/puppetboard/pull/690)),\n* Fix Failures view when there are no logs ([PR #693](https://github.com/voxpupuli/puppetboard/pull/693)).\n\nThanks to the following contributors of this release: [@ArthurWuTW](https://github.com/ArthurWuTW), [@jcpunk](https://github.com/jcpunk), [@carlosduelo](https://github.com/carlosduelo).\n\n3.5.1\n-----\n\n* Fixed friendly error message toggle (when there is no env in the URL) ([#688](https://github.com/voxpupuli/puppetboard/issues/688)).\n\n3.5.0\n-----\n\n* **Report** view improvements:\n  * show Logs before Events as they are more useful,\n  * show different, arguably more useful columns in Logs by default,\n  * allow showing messages in a \"friendly\" mode (like in Failures view),\n  * make Logs and Events filterable,\n  * don't force column sizes for a better, automatic content layout,\n  * use fixed-width font where it makes more sense,\n* Fix mixed up normal and OFFLINE_MODE for Query view.\n\n3.4.2\n-----\n\n* Fix auto-resize in radiator view,\n* Fix Query tab cannot be disabled on Docker\n* Removed unused import in setup.py,\n\nThanks to the following contributors of this release: [@vilhelmprytz](https://github.com/vilhelmprytz), [@ldumont](https://github.com/ldumont), [@allan-reynolds](https://github.com/allan-reynolds).\n\n3.4.1\n-----\n\n* Fixed broken PyPI package ([#677](https://github.com/voxpupuli/puppetboard/issues/677)).\n* Made the ToC links work when the README is displayed as the description in PyPI.\n\nThanks to the following contributors of this release: [@Rewerson](https://github.com/Rewerson), [@vchepkov](https://github.com/vchepkov).\n\n3.4.0\n-----\n\n* **Query** view improvements:\n  * Make the result clickable if a certname is in it ([#652](https://github.com/voxpupuli/puppetboard/pull/652)).\n  * UX improvements: show the number of results, show a user-friendly error in case of a PQL syntax error, show a warning on empty result, use fixed-width font for matching the query with the possible error message, remove useless 'Cancel' button. ([#653](https://github.com/voxpupuli/puppetboard/pull/653)).\n  * Add 'Download as CSV' and 'Download as XLSX' to the results ([#654](https://github.com/voxpupuli/puppetboard/pull/654)).\n  * Make the result shareable using URL ([#657](https://github.com/voxpupuli/puppetboard/pull/657)).\n* New **Failures** view for showing the first error/failed resource for all nodes with a failed puppet run. It can show both \"friendly\" and raw error messages ([#662](https://github.com/voxpupuli/puppetboard/pull/662)).\n* Sort 'uptime' fact values correctly ([#591](https://github.com/voxpupuli/puppetboard/pull/591)).\n* Visual tweaks ([#667](https://github.com/voxpupuli/puppetboard/pull/667)).\n* Improvements for running with Docker:\n  * Configurable binding host in Dockerfile ([#660](https://github.com/voxpupuli/puppetboard/pull/660)).\n  * Allow passing PuppetDB certificates via environment variables when using Docker, in base64 encoding or not ([#671](https://github.com/voxpupuli/puppetboard/pull/671)).\n  * Add Puppet code for running Puppetboard using Docker into the README ([#672](https://github.com/voxpupuli/puppetboard/pull/672)).\n* Add missing fonts and icons to the PyPI package ([#666](https://github.com/voxpupuli/puppetboard/pull/666)).\n* Refactoring: split views into separate files ([#665](https://github.com/voxpupuli/puppetboard/pull/665)).\n* Update many dependencies.\n\n\u2728 Thanks to the following contributors of this release: [@djluo](https://github.com/djluo), [@GermanG](https://github.com/GermanG), [@jgrammen-agilitypr](https://github.com/jgrammen-agilitypr), [@SeanHood](https://github.com/SeanHood), [@tuxmea](https://github.com/tuxmea), [@qhess34](https://github.com/qhess34)! \ud83c\udf1f\n\n3.3.0\n-----\n\n* **Show structured facts as pretty-formatted, syntax-highlighted JSON.** Works on Node view and Facts view. Colors meaning are as follows: orange - number, blue - boolean, green - dict's key name. Implements [#83](https://github.com/voxpupuli/puppetboard/issues/83).\n* Fix getting nodes with non-string fact values ([#612](https://github.com/voxpupuli/puppetboard/issues/612)).\n* Fix missing trailing 'u' character in facts with hashes ([#567](https://github.com/voxpupuli/puppetboard/issues/567)).\n* Add favicon ([#650](https://github.com/voxpupuli/puppetboard/pull/650))\n\n3.2.0\n-----\n\n* Add from/till filter for reports (issue [#625](https://github.com/voxpupuli/puppetboard/issues/625), PR [#625](https://github.com/voxpupuli/puppetboard/pull/638))\n* Remove tabs for disabled features (issue [#627](https://github.com/voxpupuli/puppetboard/issues/627), PR [#636](https://github.com/voxpupuli/puppetboard/pull/636))\n* Add support for FreeBSD ([#628](https://github.com/voxpupuli/puppetboard/pull/628))\n* Add support for Python 3.10 ([#637](https://github.com/voxpupuli/puppetboard/pull/637))\n\nThanks to [@smortex](https://github.com/smortex) and [@sebastianrakel](https://github.com/sebastianrakel) for their contributions!\n\n3.1.0\n-----\n\n* Improve facts columns balancing (#618)\n* Allow to toggle checkboxes by clicking their label (#617)\n* Add support for Python 3.9 (#619)\n* pypuppetdb: raise version requirement `>=2.4.0.rc1` because\n  we need it for Python 3.9 support\n\n3.0.0\n-----\n\nThis is a bugfix and maintenance release. The major version is bumped \nbecause of the Python 3.5 support drop.\n \nFeatures:\n\n* Change the default sort order of facts table to a-z,\n  instead of z-a (#572)\n* Revamp the README (#601)\n\nBugfixes:\n\n* Fix noop class in _macros.html (#588)\n* Fix listing nodes with boolean fact values (#583)\n* Fix auto-resize in radiator view (#605)\n* Fix issue with no render when facts are empty (#607)\n\nOther:\n\n* Drop Python 3.5 support (#593)\n* Update jQuery to 3.5.1 (#592)\n* Manage any other exception for get_or_abort (#606)\n* Improve getting resources from CDN (#609)  \n* Migrate from Travis to GitHub Actions (#604)\n\n2.2.0\n-----\n\n* Fix default table sort (#444)\n* Use a select for endpoint select in query (#575)\n* Surround multiline messages with <pre> in reports (#576)\n* Fix CI builds by requiring pytest >= 4.6 (#577)\n* Add noop column in overview and nodes (#584)\n* Add title to events labels in overview and nodes (#585)\n\n2.1.2\n----\n\n* Puppet DB 5.2.13 requires v2 metrics\n\n2.1.1\n-----\n\n* Added support for new metrics API `v2` on PuppetDB >= `5.3.11` and < `6.0.0` (#558)\n* Added Python 3.5 back into test matrix (#559)\n* Fixed bug in `dailyreport.js` that caused it not to render when served under a non-default virtual host (#557)\n\n2.1.0\n-----\n\n* Fixed Puppetboard's usage for the new metrics v2 API both on the home page for computing the average resources/node and the `Metrics` listing page. This change now supports the changes in PuppetDB >= 6.9.1 (https://puppet.com/security/cve/CVE-2020-7943/)\n* Added backwards compatability support for both the metric `v1` and `v2` endpoints\n  depending on the version of the server. Any PuppetDB >= `6.9.1` will be queried with\n  the `v2` endpoint automatically (because `v1` is disabled from here forward). Any\n  PuppetDB <= `6.9.0` will use `v1`.\n* pypuppetdb: raise version requirement `>=2.1.0` because changes were needed in this library to support the metrics v2 fixes.\n* app.py: Added python2 backwards compatability fix for importing `urllib`.\n\n2.0.0\n----\n\n* Dockerfile: Switch to python:3.7-alpine image\n* pypuppetdb: raise version requirement `>=1.2.0` to `>=2.0.0`\n* Drop support for python2.7 and python3.5 & Add python3.8 to buildmatrix\n* Upgrade of tests requirements + resolving current deprecation warnings\n* Ignore facts environment for compatibility and performance\n* Adding mypy + Cleanup + CommonMark upgrade to 0.9.1\n* Update docker and fix coveralls not running.\n* Cast inventory data toString\n\n1.1.0\n-----\n\n* Move to Python 3.6 for Docker\n* Fix problem loading daily chart on node page\n* fix gunicorn parameter and allow to define workers in docker\n* Add feature for better performance in big Puppet envs\n* bundle requirements.txt for tests and docker\n\n1.0.0\n-----\n\n* CI enhancements\n* Allow to configure which PuppetDB endpoints are allowed\n* Update c3 to 4.22\n* Add basic health check endpoint\n* Allow to force the PuppetDB connection protocol\n* Update jquery-tablesort to 0.0.11\n* Fix bug breaking date/time sort\n* Fix formatvalue for list of dicts\n* Modify date sort to handle failed\n* Include template files for altering Semantic css and Google fonts\n* Make 320px the max width for columns\n* If query is None don't perform add on it\n* Query using producer\\_timestamp index vs. start\\_time\n* Add missing components for building source packages\n* Add support for URL prefixes to Docker image\n\n0.3.0\n-----\n\n* Core UI Rework\n* Update to pypuppetdb 0.3.3\n* Fix sorty on data for index\n* Update debian documentation\n* Offline mode fix\n* Fix fact attribute error on paths\n* Enhanced testing\n* Radiator CSS uses same coloring\n* Markdown in config version\n* Update Flask\n* Cleanup requirements.txt\n* Update package maintainer for OpenBSD\n\n0.2.1\n-----\n\n* Daily Charts\n* Fixed missing javascript files on radiator view.\n* TravisCI and Coveralls integration.\n* Fixed app crash in catalog view.\n* Upgrade pypuppetdb to 0.3.2\n* Enhanced queries for Node and Report (\\#271)\n* Optimize Inventory Code.\n* Use certname instead of hostname to identify nodes when applicable.\n* Add environment filter for facts.\n* Update cs.js to 0.4.11\n* Fix radiator column alignment\n* Security checks with bandit\n* Dockerfile now uses gunicorn and environment variables for configuration.\n* Handle division by zero errors.\n* Implement new Jquery Datatables.\n* JSON output for radiator. \\* Move javascript to head tag.\n* Optimize reports and node page queries.\n* Fix all environments for PuppetDB 3.2\n* Fact graph chart now configurable.\n* Support for Flask 0.12 and Jinja2 2.9\n* Fix misreporting noops as changes.\n\n0.2.0\n-----\n\n* Full support for PuppetDB 4.x\n* Updating Semantic UI to 2.1.8\n* Updating Flask-WTF requirements to 0.12\n* Updating WTForms to 2.x\n* Restored CSRF protection on the Query Tab form\n* Updating Pypuppetdb requirement to 0.3.x\n* New configuration option OVERVIEW\\_FILTER allows users to add custom PuppetDB query clauses to include/exclude nodes displayed on the index page\n* Adding Radiator view similar to what is available in Puppet Dashboard\n* Adding a drop-down list in the Reports tab to configure the number of reports displayed\n* Removing unneeded report\\_latest() endpoint. This endpoint was deprecated with the addition of the latest\\_report\\_hash field in the Nodes PuppetDB endpoint\n* Enhancing Report pagination\n* Using the OOP Query Builder available in Pypuppetdb 0.3.x\n* Allowing PQL queries in the Query Tab\n* Fixing double url-quoting bug on Metric endpodint calls\n* Adding a Boolean field to the Query form to prettyprint responses from PuppetDB\n* Fixing corner-case where empty environments would trigger a ZeroDivisionError due to the Number of Nodes divided by the Number of Resources calculation\n* Adding additional logging in utils.py\n\n0.1.2\n-----\n* Add configuration option to set the default environment with new configuration option DEFAULT\\_ENVIRONMENT, defaults to 'production'.\n* Loading all available environments with every page load.\n* Adding an \"All Environments\" item to the Environments dropdown to remove all environment filters on PuppetDB data.\n* Updating README.rst to update links and describe new configuration options.\n* Fixing Query form submission problem by disabling CSRF protection. Needs to be re-implemented.\n\n\\* Updating the pypuppetdb requirement to \\>= 0.2.1, using information  \navailable in PuppetDB 3.2 and higher\n\n*\\* latest\\_report\\_hash and latest\\_report\\_status fields from the Nodes endpoint, this effectively deprecates the report\\_latest() function*\\* code\\_id from the Catalogs endpoint (current unused) \\* Adding a automatic refresh on the overview page to reload the page every X number of seconds, defaults to 30. This is configurable with the configuration option REFRESH\\_RATE \\* Fixing the table alignment in the catalog\\_compare() page by switching to fixed tables from basic tables. \\* Using colors similar to Puppet Dashboard and Foreman for the status counts sections\n\n0.1.1\n-----\n\n* Fix bug where the reports template was not generating the report links with the right environment\n\n0.1.0\n-----\n\n* Requires pypuppetdb \\>= 0.2.0\n* Drop support for PuppetDB 2 and earlier\n* Full support for PuppetDB 3.x\n* The first directory location is now a Puppet environment which is filtered on all supported queries. Users can browse different environments with a select field in the top NavBar\n* Using limit, order\\_by and offset parameters adding pagaination on the Reports page (available in the NavBar). Functionality is available to pages that accept a page attribute.\n* The report page now directly queries pypuppetdb to match the report\\_id value with the report hash or configuration\\_version fields.\n* Catching and aborting with a 404 if the report and report\\_latest function queries do not return a generator object.\n* Adding a Catalogs page (similar to the Nodes page) with a form to compare one node's catalog information with that of another node.\n* Updating the Query Endpoints for the Query page.\n* Adding to `templates/_macros.html` status\\_counts that shows node/report status information, like what is avaiable on the index and nodes pages, available to the reports pages and tables also.\n* Showing report logs and metrics in the report page.\n* Removing `limit_reports` from `utils.py` because this helper function has been replaced by the limit PuppetDB paging function.\n\n**Known Issues**\n\n* fact\\_value pages rendered from JSON valued facts return no results. A more sophisticated API is required to make use of JSON valued facts (through the factsets, fact-paths and/or fact-contents endpoints for example)\n\n0.0.5\n-----\n\n* Now requires WTForms versions less than 2.0\n* Adding a Flask development server in `dev.py`.\n* Adding CSRF protection VIA the flask\\_wtf CsrfProtect object.\n* Allowing users to configure the report limit on pages where reports are listed with the LIMIT\\_REPORTS configuration option.\n* Adding an inventory page to users to be able to see all available nodes and a configure lists of facts to display VIA the INVENTORY\\_FACTS configuration option.\n* Adding a page to view a node's catalog information if enabled, disabled by default. Can be changed with the ENABLE\\_CATALOG configuration attribute.\n* New configuration option GRAPH\\_FACTS allows the user to choose which graphs will generate pie on the fact pages.\n* Replacing Chart.js with c3.js and d3.js.\n* Adding Semantic UI 0.16.1 and removing unused bootstrap styles.\n* Adding an OFFLINE\\_MODE configuration option to load local assets or from a CDN service. This is useful in environments without internet access.\n\n0.0.4\n-----\n\n* Fix the sorting of the different tables containing facts.\n* Fix the license in our `setup.py`. The license shouldn't be longer than 200 characters. We were including the full license tripping up tools like bdist\\_rpm.\n\n0.0.3\n-----\n\nThis release introduces a few big changes. The most obvious one is the revamped\nOverview page which has received significant love. Most of the work was done by\nJulius H\u00e4rtl. The Nodes tab has been given a slight face-lift too.\n\nOther changes:\n\n* This release depends on the new pypuppetdb 0.1.0. Because of this the SSL configuration options have been changed:\n  * `PUPPETDB_SSL` is gone and replaced by `PUPPETDB_SSL_VERIFY` which now defaults to `True`. This only affects connections to PuppetDB that happen over SSL.\n  * SSL is automatically enabled if both `PUPPETDB_CERT` and `PUPPETDB_KEY` are provided.\n* Display of deeply nested metrics and query results have been fixed.\n* Average resources per node metric is now displayed as a natural number.\n* A link back to the node has been added to the reports.\n* A few issues with reports have been fixed.\n* A new setting called `UNRESPONSIVE_HOURS` has been added which denotes the amount of hours after which Puppetboard will display the node as unreported if it hasn't checked in. We default to `2` hours.\n* The event message can now be viewed by clicking on the event.\n\nPuppetboard is now neatly packaged up and available on PyPI. This should\nsignificantly help reduce the convoluted installation instructions people had\nto follow.\n\nUpdated installation instructions have been added on how to install from PyPI\nand how to configure your HTTPD.\n\n0.0.2\n-----\n\nIn this release we've introduced a few new things. First of all we now require pypuppetdb version 0.0.4 or later which includes support for the v3 API introduced with PuppetDB 1.5.\n\nBecause of changes in PuppetDB 1.5 and therefor in pypuppetdb users of the v2 API, regardless of the PuppetDB version, will no longer be able to view reports or events.\n\nIn light of this the following settings have been removed:\n\n* `PUPPETDB_EXPERIMENTAL`\n\nTwo new settings have been added:\n\n* `PUPPETDB_API`: an integer, defaulting to `3`, representing the API version we want to use.\n* `ENABLE_QUERY`: a boolean, defaulting to `True`, on wether or not to be able to use the Query tab.\n\nWe've also added a few new features:\n\n* Thanks to some work done during PuppetConf together with Nick Lewis (from Puppet Labs) we now expose all of PuppetDB's metrics in the Metrics tab. The formatting isn't exactly pretty but it's a start.\n* Spencer Krum added the graphing capabilities to the Facts tab.\n* Daniel Lawrence added a feature so that facts on the node view are clickable and take you to the complete overview of that fact for your infrastructure and made the nodes in the complete facts list clickable so you can jump to a node.\n* Klavs Klavsen contributed some documentation on how to run Puppetboard with Passenger.\n\n0.0.1\n-----\n\nInitial release.\n\n\n\n\\* *This Changelog was automatically generated by [github_changelog_generator](https://github.com/github-changelog-generator/github-changelog-generator)*\n",
    "bugtrack_url": null,
    "license": "Apache License 2.0",
    "summary": "Web frontend for PuppetDB",
    "version": "5.4.0",
    "project_urls": {
        "Homepage": "https://github.com/voxpupuli/puppetboard"
    },
    "split_keywords": [
        "puppet",
        "puppetdb",
        "puppetboard"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "dcd5df0d6ce00fe9ae2dca504000469f9e39f579b02e6fcb30487b6c5ab20bb8",
                "md5": "c013d66e76c158a1e8e896790c0b63af",
                "sha256": "3cd0e3453c17a58d965a452d9e183867c06c07559fe31e38a9449a55719d63f6"
            },
            "downloads": -1,
            "filename": "puppetboard-5.4.0-py2.py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "c013d66e76c158a1e8e896790c0b63af",
            "packagetype": "bdist_wheel",
            "python_version": "py2.py3",
            "requires_python": ">=3.8.0",
            "size": 2423775,
            "upload_time": "2024-03-01T11:35:58",
            "upload_time_iso_8601": "2024-03-01T11:35:58.082997Z",
            "url": "https://files.pythonhosted.org/packages/dc/d5/df0d6ce00fe9ae2dca504000469f9e39f579b02e6fcb30487b6c5ab20bb8/puppetboard-5.4.0-py2.py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "92a34ec351be9d1e5f45ee5e9d4da5ba6e9141ec79346af7a4a6c9c413b8709b",
                "md5": "f265a048c28368093a2820074efc2900",
                "sha256": "8b010aca07050a275e21e7777b926dd3ce002bd2c9da49f4260417ff6ea07e21"
            },
            "downloads": -1,
            "filename": "puppetboard-5.4.0.tar.gz",
            "has_sig": false,
            "md5_digest": "f265a048c28368093a2820074efc2900",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.8.0",
            "size": 2427757,
            "upload_time": "2024-03-01T11:36:01",
            "upload_time_iso_8601": "2024-03-01T11:36:01.789932Z",
            "url": "https://files.pythonhosted.org/packages/92/a3/4ec351be9d1e5f45ee5e9d4da5ba6e9141ec79346af7a4a6c9c413b8709b/puppetboard-5.4.0.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-03-01 11:36:01",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "voxpupuli",
    "github_project": "puppetboard",
    "travis_ci": false,
    "coveralls": true,
    "github_actions": true,
    "requirements": [],
    "lcname": "puppetboard"
}
        
Elapsed time: 0.19759s