Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/martin-g/arm64-ci-status-checker
https://github.com/martin-g/arm64-ci-status-checker
Last synced: about 2 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/martin-g/arm64-ci-status-checker
- Owner: martin-g
- Created: 2023-09-01T13:30:39.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2024-01-18T08:49:21.000Z (12 months ago)
- Last Synced: 2024-10-16T20:27:30.811Z (3 months ago)
- Language: Python
- Size: 39.1 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Elasticsearch
## Create index template
```
http --auth $ES_USER:$ES_PASSWORD --verify=false PUT $ES_URL/_index_template/aarch64-ci-status @aarch64-ci-status-index-template.json
```## Delete index template
```
http --auth $ES_USER:$ES_PASSWORD --verify=false DELETE $ES_URL/_index_template/aarch64-ci-status
```## Index some data
```
http --auth $ES_USER:$ES_PASSWORD --verify=false POST $ES_URL/aarch64-ci-status-YYYY-MM-DD/_doc/ @dummy-data.json
```## Bulk index data
```
http --auth $ES_USER:$ES_PASSWORD --verify=false POST $ES_URL/_bulk/ @bulk-index-data.ndjson Content-Type:application/x-ndjson
```## Delete index
```
http --auth $ES_USER:$ES_PASSWORD --verify=false DELETE $ES_URL/aarch64-ci-status-2023-09-03
```## Get data
```
http --auth $ES_USER:$ES_PASSWORD --verify=false GET $ES_URL/aarch64-ci-status-*/_search
```## Delete all data
```
http --auth $ES_USER:$ES_PASSWORD --verify=false POST $ES_URL/aarch64-ci-status-*/_delete_by_query/ @delete-all-docs.json
```