You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
It would be great if the plugin would allow for customization of netbox-healthcheck-plugin configuration parameters.
Use case
For instance, not everyone runs Redis at 127.0.0.1 (the default value), and being allowed to configure REDIS_URL or individual HEALTH_CHECK parameters would be appreciated.
External dependencies
Support for additional parameters may have to be supported by the PluginConfig Class and netbox's settings.py.
The text was updated successfully, but these errors were encountered:
To use the Redis healthcheck, please make sure that there is a variable named REDIS_URL on django.conf.settings with the required format to connect to your redis server. For example:
REDIS_URL = "redis://localhost:6370"
From official doc. Indeed a custom setting is necessary.
NetBox HealthCheck Plugin version
v0.1.4
NetBox version
v3.7.6
Feature type
New functionality
Proposed functionality
It would be great if the plugin would allow for customization of netbox-healthcheck-plugin configuration parameters.
Use case
For instance, not everyone runs Redis at
127.0.0.1
(the default value), and being allowed to configureREDIS_URL
or individualHEALTH_CHECK
parameters would be appreciated.External dependencies
Support for additional parameters may have to be supported by the PluginConfig Class and netbox's settings.py.
The text was updated successfully, but these errors were encountered: