28 lines
603 B
Plaintext
28 lines
603 B
Plaintext
// This file is autogenerated, DO NOT EDIT
|
|
// Use `node scripts/generate-docs-examples.js` to generate the docs examples
|
|
|
|
[source, js]
|
|
----
|
|
const response = await client.indices.create({
|
|
index: "custom_fingerprint_example",
|
|
settings: {
|
|
analysis: {
|
|
analyzer: {
|
|
whitespace_: {
|
|
tokenizer: "whitespace",
|
|
filter: ["fingerprint_plus_concat"],
|
|
},
|
|
},
|
|
filter: {
|
|
fingerprint_plus_concat: {
|
|
type: "fingerprint",
|
|
max_output_size: 100,
|
|
separator: "+",
|
|
},
|
|
},
|
|
},
|
|
},
|
|
});
|
|
console.log(response);
|
|
----
|