You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Jun 20, 2023. It is now read-only.
When a field is specified ID's, Index etc is displayed, not only the specified fields.
Well, I handled this with awk to get only the column I want.
./bin/es -u http://localhost:9200 search "appId:*" appId | awk -F\ '{print $5}'
But the field got truncated after 20 characters. In the following example you can see there is a missing "d" at the end.
./bin/es -u http://localhost:9200 -v search "appId:*" appId
1.0 november test lOg--dH3SoGWUfpOw3jdIw com.instagram.androi
I would prefer to get only specified field displayed but in any case in FULL length.