반응형
Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
Tags
- ELK
- 파이썬
- 한성대맛집
- 통영에어비앤비
- 통영예쁜카페
- npm
- 방이편백육분삼십성신여대
- 통영
- gradle
- 퇴사후공무원
- 방이편백육분삼십
- 스페인여행
- 성신여대맛집
- 성신여대편백집
- 국가직
- 돈암동맛집
- 서울숲누룽지통닭구이
- JavaScript
- react
- 자바스크립트에러처리
- 성북구맛집
- 공무원
- 영화추천
- 뚝섬역맛집
- tomcat7
- springboot
- ubuntu자바설치
- 꼴뚜기회
- 한남동맛집
- 통영여행
Archives
- Today
- Total
코린이의 기록
[Elasticsearch] "The [index] request must be terminated by a newline [\n]" 본문
ELK
[Elasticsearch] "The [index] request must be terminated by a newline [\n]"
코린이예요 2019. 4. 22. 17:19반응형
postman으로 elasticsearch post 명령어를 날리는데 자꾸 개행 문자 관련 에러가 발생하였다.
{
"error": {
"root_cause": [
{
"type": "illegal_argument_exception",
"reason": "The msearch request must be terminated by a newline [\n]"
}
],
"type": "illegal_argument_exception",
"reason": "The msearch request must be terminated by a newline [\n]"
},
"status": 400
}
body 부분에서 JSON(application/json) new line이 시작될때 엔터를 쳐서 개행을 만들어줘야 한다.
변경 전
{"index":"classes-*","ignore_unavailable":true,"preference":1555916089901}
{"aggs":{"devId":{"cardinality":{"field":"devId.keyword"}}},"size":0,"_source":{"excludes":[]},"stored_fields":["*"],"script_fields":{},"docvalue_fields":[{"field":"@timestamp","format":"date_time"},{"field":"time","format":"date_time"}],"query":{"bool":{"must":[{"match_all":{}},{"match_all":{}},{"range":{"@timestamp":{"gte":1555340400000,"lte":1555945199000,"format":"epoch_millis"}}}],"filter":[],"should":[],"must_not":[]}},"timeout":"30000ms"}
변경 후
{"index":"classes-*","ignore_unavailable":true,"preference":1555916089901}
{"aggs":{"devId":{"cardinality":{"field":"devId.keyword"}}},"size":0,"_source":{"excludes":[]},"stored_fields":["*"],"script_fields":{},"docvalue_fields":[{"field":"@timestamp","format":"date_time"},{"field":"time","format":"date_time"}],"query":{"bool":{"must":[{"match_all":{}},{"match_all":{}},{"range":{"@timestamp":{"gte":1555340400000,"lte":1555945199000,"format":"epoch_millis"}}}],"filter":[],"should":[],"must_not":[]}},"timeout":"30000ms"}
반응형
'ELK' 카테고리의 다른 글
Comments