Plugin Parameters
PLUGINS
Default: Empty
A list of installed NetBox plugins to enable. Plugins will not take effect unless they are listed here.
Plugins extend NetBox by allowing external code to run with the same access and privileges as NetBox itself. Only install plugins from trusted sources. The NetBox maintainers make absolutely no guarantees about the integrity or security of your installation with plugins enabled.
PLUGINS_CONFIG
Default: Empty
This parameter holds configuration settings for individual NetBox plugins. It is defined as a dictionary, with each key using the name of an installed plugin. The specific parameters supported are unique to each plugin: Reference the plugin's documentation to determine the supported parameters. An example configuration is shown below:
PLUGINS_CONFIG = {
'plugin1': {
'foo': 123,
'bar': True
},
'plugin2': {
'foo': 456,
},
}Note that a plugin must be listed in PLUGINS for its configuration to take effect.
Error Reporting Settings
Defines a Sentry data source name (DSN) for automated error reporting. SENTRYENABLED must be True for this parameter to take effect. For example:
Date & Time Parameters
The time zone NetBox will use when dealing with dates and times. It is recommended to use UTC time unless you have a specific need to use a local time zone. ...