1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141
|
# External plugins
!!! important
This page assumes you have read the [Writing plugins](./guide.md) page to understand the basics of writing plugins.
External plugins are plugins that are packaged as Python packages and can be installed with Pip. Using [`pyproject.toml` entry points](https://packaging.python.org/en/latest/specifications/entry-points/), the application can automatically discover and load these plugins.
A complete example of an external plugin can be found here: <https://github.com/pederhan/zabbix-cli-plugin-entrypoint>
## Packaging
Assuming you have written a plugin module as outlined in[Writing plugins](./guide.md), you can package it as a Python package that defines an entry point for Zabbix-CLI to discover. Similar to local plugins, the entry point is a Python file or module that contains the plugin's functionality, except for external plugins, the entry point is defined in the `pyproject.toml` file - _not_ the configuration file.
### Directory structure
The plugin package should have the following directory structure:
```plaintext
.
├── my_plugin/
│ ├── __init__.py
│ └── plugin.py
└── pyproject.toml
```
Alternatively, if using the src layout:
```plaintext
.
├── src/
│ └── my_plugin/
│ ├── __init__.py
│ └── plugin.py
└── pyproject.toml
```
### pyproject.toml
The package must contain a `pyproject.toml` file that instructs your package manager how to build and install the package. The following is a good starting point for a project using `hatchling` as the build backend:
```toml
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "my_plugin"
authors = [
{name = "Firstname Lastname", email = "mail@example.com"},
]
version = "0.1.0"
description = "My first Zabbix CLI plugin"
readme = "README.md"
requires-python = ">=3.9"
license = "MIT"
dependencies = [
"zabbix-cli@git+https://github.com/unioslo/zabbix-cli.git",
]
[tool.hatch.metadata]
allow-direct-references = true
[project.entry-points.'zabbix-cli.plugins']
my_plugin = "my_plugin.plugin"
```
!!! info "Build backend"
If you prefer setuptools, you can omit the `[tool.hatch.metadata]` section and replace the `[build-system]` section with the following:
```toml
[build-system]
requires = ["setuptools", "setuptools-scm"]
build-backend = "setuptools.build_meta"
```
#### Declaring the entry point
In your plugin's `pyproject.toml` file, you _must_ declare an entry point that Zabbix-CLI can find and load. The entry point is defined in the `[project.entry-points.'zabbix-cli.plugins']` section, where the key is the name of the plugin and the value is the import path to your plugin module. Recall that we defined a directory structure like this:
```plaintext
.
├── my_plugin/
│ ├── __init__.py
│ └── plugin.py
└── pyproject.toml
```
In which case, the entry point should be defined as follows:
```toml
[project.entry-points.'zabbix-cli.plugins']
my_plugin = "my_plugin.plugin"
```
## Configuration
!!! info "Loading external plugins"
External plugins are automatically discovered by the application and do not require manual configuration to be loaded.
Much like local plugins, external plugins define their configuration in the application's configuration file. However, the configuration is not used to _load_ the plugin, and is only used to provide additional configuration options or customization.
The name of the plugin in the configuration file must match the name used in the entry point section in the `pyproject.toml` file. Given that we used the name `my_plugin` in the entrypoint section, its configuration should look like this in the Zabbix-CLI configuration file:
```toml
[plugins.my_plugin]
# module must be omitted for external plugins
enabled = true
extra_option_1 = "Some value"
extra_option_2 = 42
```
!!! warning "Local plugin migration"
If rewriting a local plugin as an external one, remember to remove the `module` key from the plugin's configuration. If a `module` key is present, the application will attempt to load the plugin as a local plugin.
## Installation
How to install the plugins depends on how Zabbix-CLI is installed. The plugin must be installed in the same Python environment as Zabbix-CLI, which is different for each installation method.
### uv
`uv` can install plugins using the same `uv tool install` command, but with the `--with` flag:
```bash
uv tool install zabbix-cli-uio --with my_plugin
```
### pipx
`pipx` Zabbix-CLI installations require the plugin to be injected into the environment:
```bash
pipx install zabbix-cli-uio
pipx inject zabbix-cli-uio my_plugin
```
### pip
If Zabbix-CLI is installed with `pip`, the plugin can be installed as a regular Python package:
```bash
pip install my_plugin
```
|