_source,_size 元字段
Last updated
curl -XPUT 'localhost:9200/logs?pretty' -H 'Content-Type: application/json' -d'
{
"mappings": {
"event": {
"_source": {
"includes": [
"*.count",
"meta.*"
],
"excludes": [
"meta.description",
"meta.other.*"
]
}
}
}
}
'
curl -XPUT 'localhost:9200/logs/event/1?pretty' -H 'Content-Type: application/json' -d'
{
"requests": {
"count": 10,
"foo": "bar" # 1
},
"meta": {
"name": "Some metric",
"description": "Some metric description", # 2
"other": {
"foo": "one", # 3
"baz": "two" # 4
}
}
}
'
curl -XGET 'localhost:9200/logs/event/_search?pretty' -H 'Content-Type: application/json' -d'
{
"query": {
"match": {
"meta.other.foo": "one" # 5
}
}
}
'