This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| PUT _template/template_test | |
| { | |
| "index_patterns": ["test*"], | |
| "settings": { | |
| "number_of_shards": 1 | |
| }, | |
| "mappings": { | |
| "doc": { | |
| "dynamic_templates": [ | |
| { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "configurations": [ | |
| { | |
| "name": "Mac", | |
| "includePath": [ | |
| "${workspaceFolder}/**", | |
| "/usr/local/include/boost-1_65_1/", | |
| "/usr/local/include", | |
| "/usr/include" | |
| ] |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/bin/env bash | |
| #These should be deprecated when things are moved out of the protocol package | |
| ./gradlew x-pack:protocol:checkStyle | |
| ./gradlew x-pack:protocol:test | |
| ./gradlew :client:rest-high-level:checkStyle | |
| ./gradlew :client:rest-high-level:test | |
| ./gradlew :client:rest-high-level:integTest -Dtests.class=org.elasticsearch.client.documentation.MlClientDocumentationIT |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| input { | |
| stdin { | |
| } | |
| } | |
| filter { | |
| csv { | |
| columns => ["timestamp","value"] | |
| separator => "," | |
| convert => { 'value' => 'float' } |
NewerOlder