컬 명령을 사용하여 JSON을 가져오려고 하므로 다음 명령을 사용하여 출력을 얻습니다.
curl -GET http://localhost:9200/oldindex/_mapping?pretty
{
"gl-events_1" : {
"mappings" : {
"message" : {
"dynamic" : "false",
"dynamic_templates" : [
{
"fields" : {
"path_match" : "fields.*",
"mapping" : {
"doc_values" : true,
"index" : true,
"type" : "keyword"
}
}
}
],
"properties" : {
"alert" : {
"type" : "boolean"
},
"event_definition_id" : {
"type" : "keyword"
},
"event_definition_type" : {
"type" : "keyword"
},
"fields" : {
"type" : "object",
"dynamic" : "true"
},
"id" : {
"type" : "keyword"
},
"key" : {
"type" : "keyword"
},
"key_tuple" : {
"type" : "keyword"
},
"message" : {
"type" : "text",
"norms" : false,
"fields" : {
"keyword" : {
"type" : "keyword"
}
},
"analyzer" : "standard"
},
"origin_context" : {
"type" : "keyword"
},
"priority" : {
"type" : "long"
},
"source" : {
"type" : "keyword"
},
"source_streams" : {
"type" : "keyword"
},
"streams" : {
"type" : "keyword"
},
"timerange_end" : {
"type" : "date",
"format" : "yyyy-MM-dd HH:mm:ss.SSS"
},
"timerange_start" : {
"type" : "date",
"format" : "yyyy-MM-dd HH:mm:ss.SSS"
},
"timestamp" : {
"type" : "date",
"format" : "yyyy-MM-dd HH:mm:ss.SSS"
},
"timestamp_processing" : {
"type" : "date",
"format" : "yyyy-MM-dd HH:mm:ss.SSS"
},
"triggered_jobs" : {
"type" : "keyword"
}
}
}
}
}
}
이제 이 출력을 json 파일로 저장하고 싶으므로 파일에 복사하고 확장자를 지정합니다..json
하지만 컬을 사용하려고 하면 다음 오류가 발생합니다.
curl -X PUT http://localhost:9200/new_good -H 'Content-Type: application/json' -d sampl.json
{"error":{"root_cause":[{"type":"not_x_content_exception","reason":"Compressor detection can only be called on some xcontent bytes or compressed xcontent bytes"}],"type":"not_x_content_exception","reason":"Compressor detection can only be called on some xcontent bytes or compressed xcontent bytes"},"status":500}
하지만 동일한 json 형식을 사용하여 아래 명령을 직접 실행하면 작동합니다.
curl -X PUT \
http://localhost:9200/new_good \
-H 'Content-Type: application/json' \
-d '{"mappings" : {
"message" : {
"dynamic_templates" : [
{
"internal_fields" : {
"match" : "gl2_*",
"match_mapping_type" : "string",
"mapping" : {
"type" : "keyword"
}
}
},
{
"store_generic" : {
"match_mapping_type" : "string",
"mapping" : {
"type" : "keyword"
}
}
}
],
"properties" : {
"LoggerName" : {
"type" : "keyword"
},
"MessageParam0" : {
"type" : "keyword"
},
"MessageParam1" : {
"type" : "long"
},
"MessageParam2" : {
"type" : "keyword"
},
"MessageParam3" : {
"type" : "keyword"
},
"MessageParam4" : {
"type" : "keyword"
},
"MessageParam5" : {
"type" : "keyword"
},
"MessageParam6" : {
"type" : "keyword"
},
"MessageParam7" : {
"type" : "keyword"
},
"MessageParam8" : {
"type" : "keyword"
},
"Severity" : {
"type" : "keyword"
},
"SourceClassName" : {
"type" : "keyword"
},
"SourceMethodName" : {
"type" : "keyword"
},
"SourceSimpleClassName" : {
"type" : "keyword"
},
"StackTrace" : {
"type" : "keyword"
},
"Thread" : {
"type" : "keyword"
},
"Time" : {
"type" : "keyword"
},
"facility" : {
"type" : "keyword"
},
"full_message" : {
"type" : "text",
"analyzer" : "standard"
},
"gl2_accounted_message_size" : {
"type" : "long"
},
"gl2_message_id" : {
"type" : "keyword"
},
"gl2_processing_timestamp" : {
"type" : "date",
"format" : "yyyy-MM-dd HH:mm:ss.SSS"
},
"gl2_receive_timestamp" : {
"type" : "date",
"format" : "yyyy-MM-dd HH:mm:ss.SSS"
},
"gl2_remote_ip" : {
"type" : "keyword"
},
"gl2_remote_port" : {
"type" : "long"
},
"gl2_source_input" : {
"type" : "keyword"
},
"gl2_source_node" : {
"type" : "keyword"
},
"level" : {
"type" : "long"
},
"message" : {
"type" : "text",
"analyzer" : "standard"
},
"source" : {
"type" : "text",
"analyzer" : "analyzer_keyword",
"fielddata" : true
},
"streams" : {
"type" : "keyword"
},
"timestamp" : {
"type" : "date",
"format" : "yyyy-MM-dd HH:mm:ss.SSS"
}
}
}
}
}
}'
내가 원하는 것은 컬 GET 명령 출력을 컬 PUT에서 사용할 수 있는 유효한 json으로 저장하는 것입니다.
curl get > some.json
curl put -d some.json
나는 이것에 익숙하지 않고 jq에서 여러 옵션을 시도했지만 나에게도 효과가 없습니다.
여기로 안내해주세요.
안녕하세요 샘
답변1
컬 명령에서 JSON을 저장하려면 해당 사례에서 출력을 파일로 리디렉션할 수 있습니다. 또는 다음을 사용하십시오:
curl ... -o file.json
를 사용하여 보내려면 curl
다음을 사용하여 명령을 실행할 수 있습니다.
curl ... -d @file.json
에서 man curl
:-d --data <data>
문자 @로 데이터를 시작하는 경우 나머지는 데이터를 읽는 파일 이름이어야 합니다. 또는 - 컬을 사용하여 stdin에서 데이터를 읽으려는 경우에는 다음과 같습니다.
또는 json을 사용하여 컬 명령의 표준 입력으로 json을 파이프하는 것도 작동합니다 -d -
.