Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/lgallard/kibana-export
Collection of scripts for exporting Kibana dashboards, visualizations and searches
https://github.com/lgallard/kibana-export
Last synced: 19 days ago
JSON representation
Collection of scripts for exporting Kibana dashboards, visualizations and searches
- Host: GitHub
- URL: https://github.com/lgallard/kibana-export
- Owner: lgallard
- Created: 2017-02-13T13:55:11.000Z (almost 8 years ago)
- Default Branch: master
- Last Pushed: 2017-02-13T17:28:28.000Z (almost 8 years ago)
- Last Synced: 2024-12-08T00:45:00.971Z (25 days ago)
- Language: Python
- Size: 4.88 KB
- Stars: 2
- Watchers: 3
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# kibana-export
Collection of scripts for exporting Kibana dashboards, visualizations and searches
# Scripts:
## kibana-export
This scripts export all dashboards, visualizations and searches from localhost to the /tmp/kibana directory
**Usage:**
```
python kibana-export.py
```## kibana-dashboards-export
This scripts export all dashboards from localhost to the /tmp/kibana/dashboards directory. You can also export just a dashboard if the dashboard name is given.
**Usage:**
```
python kibana-dashboards-export.py
```
or```
python kibana-dashboards-export.py dashboard-name
```
## kibana-visualizations-exportThis scripts export all visualizations from localhost to the /tmp/kibana/visualizations directory. You can also export just a visualization if the visualization name is given.
**Usage:**
```
python kibana-visualizations-export.py
```or
```
python kibana-visualizations-export.py visualization-name
```## kibana-searches-export
This scripts export all searches from localhost to the /tmp/kibana/searches directory. You can also export just a search if the searches name is given.
**Usage:**
```
python kibana-searches-export.py
```or
```
python kibana-searches-export.py search-name
```