Advertisement
Guest User

Fielddata enabling

a guest
Sep 23rd, 2019
137
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
YAML 1.01 KB | None | 0 0
  1. PUT apache-2019.09.23/_mapping
  2. {
  3.   "properties": {
  4.     "host.os.version": {
  5.       "type":    "text",
  6.       "fielddata": true
  7.     }
  8.   }
  9. }
  10.  
  11. PUT apache-2019.09.23/_mapping
  12. {
  13.   "properties": {
  14.     "host.os.platform": {
  15.       "type":    "text",
  16.       "fielddata": true
  17.     }
  18.   }
  19. }
  20.  
  21. PUT apache-2019.09.23/_mapping
  22. {
  23.   "properties": {
  24.     "host.os.name": {
  25.       "type":    "text",
  26.       "fielddata": true
  27.     }
  28.   }
  29. }
  30.  
  31. PUT apache-2019.09.23/_mapping
  32. {
  33.   "properties": {
  34.     "host.os.family": {
  35.       "type":    "text",
  36.       "fielddata": true
  37.     }
  38.   }
  39. }
  40.  
  41. PUT apache-2019.09.23/_mapping
  42. {
  43.   "properties": {
  44.     "host.id": {
  45.       "type":    "text",
  46.       "fielddata": true
  47.     }
  48.   }
  49. }
  50.  
  51. PUT apache-2019.09.23/_mapping
  52. {
  53.   "properties": {
  54.     "host.name": {
  55.       "type":    "text",
  56.       "fielddata": true
  57.     }
  58.   }
  59. }
  60.  
  61. PUT apache-2019.09.23/_mapping
  62. {
  63.   "properties": {
  64.     "host.architecture": {
  65.       "type":    "text",
  66.       "fielddata": true
  67.     }
  68.   }
  69. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement