Enable Alchemies
Learn How to Enable Alchemies Plugin

Enabling the Alchemies Plugin
To use the alchemies feature, add it to your config.yaml file:
plugin:
# Or enable only built-in recipes (default behavior) only
- jibril:alchemies
# Enable the alchemies plugin with external recipe directory and builtin recipes
- jibril:alchemies:builtin=true:path=/path/to/your/recipes/
# Disable built-in recipes while using external ones
- jibril:alchemies:builtin=false:path=/path/to/your/recipes/
Plugin Options
path
: Directory path containing custom YAML recipe files.builtin
: Enable/disable built-in recipes (default: true).
The directory path must be a valid path to a directory and is not recursive.
Example Configuration
Example of a config.yaml file with the alchemies plugin configured:
#### Jibril Configuration File
log-level: info
stdout: stdout
stderr: stderr
extension:
- jibril
plugin:
# Enable alchemies with custom recipe directory
- jibril:alchemies:path=/etc/jibril/alchemies/
- jibril:detect
printer:
- jibril:printers:stdout
event:
# Events will be automatically enabled based on recipes
- jibril:detect:file_example
- jibril:detect:exec_example
- jibril:detect:peer_example
Last updated