Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -176,6 +176,11 @@ output {
curl -XPOST -D- "http://localhost:5601/api/saved_objects/index-pattern" \
-H "Content-Type: application/json" \
-H "kbn-version: 6.1.0" \
-d '{"attributes":{"title":"logstash-*","timeFieldName":"@timestamp"}}'
```

如果上面的指令有報有關json格式錯誤的問題,也可以試試看將最後一行改為:
```cmd
-d "{'attributes':{'title':'logstash-*','timeFieldName':'@timestamp'}}"
```

Expand Down