kibbe is a cli tool to ease common tasks when developing plugins for kibana.
- Run elasticsearch for kibana with persistent configuration across clones
- Run kibana with persistent configuration across clones
- Run elasticsearch and kibana in a tmux session automated
- Run fast checks for your code before committing
- Manage git worktree paths
- Custom configuration across kibana clones or git worktrees
- Run jest easily for unit tests
- Discover tools and helpers you might not know
- More coming: open an issue with your suggestions
Use
--help
when running kibbe to know more about its features
There are 2 ways to install kibbe:
- via PIP (recommended)
pip install kibbe --upgrade
- Building it
The easiest way to install and keep kibbe up to date is by using pip.
- Make sure you have python3 installed
- Install pip (you probably don't have to)
Install kibbe:
pip3 install kibbe
To upgrade
pip install kibbe --upgrade
Note: It might be possible you need to run pip with sudo in mac.
You can build kibbe yourself, follow the instructions in the contributing guide.
Always run kibbe
in the root of your kibana clone.
Run kibbe --help
to see a list of commands.
you can run --help
on any subcommand to get more information about arguments, options and what subcommands do.
e.g.:
kibbe kibana --help
Create a configuration file in your home ~/.kibberc
or you can create it directly on your kibana
clone/worktree with a .kibberc
file. (make sure to add it to your git ignore)
Some kibbe subcommands can use persistent parameters from a configuration file.
The configuration file should follow the format in the configuration file example
you can generate custom configurations files with kibbe. If you specify a section in the configuration file prefixed with file-[name]
it will
create a [name]
file on the current kibana clone and put the content on it (see the configuration file example)
This is very useful when you work with git worktrees.
Note: kibbe only supports top-level configuration files
Kibbe makes use of git worktrees to manage "contexts". Kibbe adds some easy to use commands to switch between git worktrees without having to worry about remembering paths or all git worktree parameters.
If you use a ~/.kibberc
configuration file, kibbe will pick it up to run elastic and kibana so you don't need to re-configure your elastic, kibana or
other configuration files in your git worktrees. This make it easier to keep the same configuration across all your worktrees.
If you want to have a custom configuration on an specific worktree you can create a .kibberc
in that worktree and kibbe will pick up and merge
with the main configuration
Kibbe offers autocomplete for some of its commands. you can enable it depending on your terminal by adding this to your configuration dotfile:
eval "$(_KIBBE_COMPLETE=zsh_source kibbe)"
eval "$(_KIBBE_COMPLETE=bash_source kibbe)"
Kibbe can integrate with tmux to quickly run elasticsearch and kibana. Simply run kibbe inside an existing tmux window.
You can know more about tmux in this article
Tmux and iterm2 have a special integration. When you start your tmux session you can pass the -CC
option and that will make tmux panels and windows turn into native iterm tabs and splits. Kibbe will work just as fine with it.
With mac and iterm2 run tmux like this:
tmux -CC
Follow the contributing guide