As configured in my dotfiles.
start new:
tmux
start new with session name:
As configured in my dotfiles.
start new:
tmux
start new with session name:
| #!/bin/bash | |
| # NOTE: This script has a dependency on python for parsing | |
| ES_URL=http://localhost:9200 | |
| ES_USER=elastic | |
| ES_PASS=changeme | |
| ################## | 
| PUT my_index | |
| { | |
| "mappings": { | |
| "doc": { | |
| "properties": { | |
| "securityTags": { | |
| "type": "keyword", | |
| "fields": { | |
| "length": { | |
| "type": "token_count", | 
| # Create our mapping with a single attribute array: projects | |
| PUT abac-ingest-node-test | |
| { | |
| "mappings": { | |
| "doc": { | |
| "properties": { | |
| "projects": { | |
| "type": "keyword" | |
| } | |
| } |