nox icon indicating copy to clipboard operation
nox copied to clipboard

Elasticsearch ops management tooling

Results 11 nox issues
Sort by recently updated
recently updated
newest added

https://www.elastic.co/guide/en/elasticsearch/reference/current/indices-get-settings.html https://www.elastic.co/guide/en/elasticsearch/reference/current/indices-get-mapping.html

For context: ![image](https://user-images.githubusercontent.com/901035/103711361-1d34e480-4f6c-11eb-93ee-0bd2bc42e8d3.png)

I think a screenshot is probably the lowest-effort way to demonstrate this: ![image](https://user-images.githubusercontent.com/901035/94879874-57936080-0416-11eb-9e2c-60906ea77c48.png) For context, this came about during the screenshot above when I tried to do this: ```sh until...

https://www.elastic.co/guide/en/elasticsearch/reference/5.6/indices-aliases.html should map roughly to the index alias ES api. e.g. ``` $ nox alias create ... $ nox alias delete ... $ nox alias show ...

Currently what we do is something like ```sh nox cat indices | grep -e 'my_cool_index' -e 'status' ``` and if you don't remember to add the `-e 'status'` bit, you...

enhancement

Tried running `nox kibana` in tugboat, having gone into the Elasticsearch stateful set for a deployment, and got this: ``` root@pz01-procore-elasticsearch-0:/usr/share/elasticsearch# nox kibana panic: runtime error: slice bounds out of...

bug

curl approach to see the fields: ``` curl localhost:9200/_mappings | jq '.drawing_revisions_1_2_1.mappings.drawing_revisions.properties | keys' ``` Input: name of index Output: names of attributes - Is displaying the "type" of the...

enhancement
good first issue

the ETL command should be able to 1) use any function defined in `cmd/nox/internal/algorithms` and 2) be able to use any function defined by the user at runtime.