Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/pmuellr/es-kb-scripts
elasticsearch and kibana scripts
https://github.com/pmuellr/es-kb-scripts
Last synced: about 1 month ago
JSON representation
elasticsearch and kibana scripts
- Host: GitHub
- URL: https://github.com/pmuellr/es-kb-scripts
- Owner: pmuellr
- Created: 2023-07-07T04:14:00.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2024-07-05T17:22:45.000Z (6 months ago)
- Last Synced: 2024-07-05T22:45:22.402Z (6 months ago)
- Language: Shell
- Size: 11.7 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
es-kb-scripts - elasticsearch and kibana scripts
========================================================================Bash scripts to make HTTP requests to Elasticsearch and Kibana servers.
You should have $ES_URL and $KB_URL set to the relevant url values,
including user/pass:export ES_URL=http://elastic:changeme@localhost:9200
export KB_URL=http://elastic:changeme@localhost:5601You will need to have `node`, `jq` and `hjson` installed.
### installing `jq`
see: https://jqlang.github.io/jq/download/
The easiest install assuming you use `brew`:
brew install jq
### installing `hjson`
see: https://hjson.github.io/
The easiest install:
npm install hjson -g