Advertisement
Guest User

Untitled

a guest
Apr 5th, 2016
163
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.77 KB | None | 0 0
  1. {
  2. "logstash_netflow9" : {
  3. "order" : 0,
  4. "template" : "logstash_netflow9-*",
  5. "settings" : {
  6. "index" : {
  7. "refresh_interval" : "5s"
  8. }
  9. },
  10. "mappings" : {
  11. "_default_" : {
  12. "_all" : {
  13. "enabled" : false
  14. },
  15. "properties" : {
  16. "netflow" : {
  17. "dynamic" : true,
  18. "type" : "object",
  19. "properties" : {
  20. "dst_as" : {
  21. "index" : "analyzed",
  22. "type" : "integer"
  23. },
  24. "in_pkts" : {
  25. "index" : "analyzed",
  26. "type" : "long"
  27. },
  28. "first_switched" : {
  29. "index" : "not_analyzed",
  30. "type" : "date"
  31. },
  32. "ipv4_next_hop" : {
  33. "index" : "analyzed",
  34. "type" : "ip"
  35. },
  36. "l4_src_port" : {
  37. "index" : "analyzed",
  38. "type" : "long"
  39. },
  40. "sampling_algorithm" : {
  41. "index" : "not_analyzed",
  42. "type" : "integer"
  43. },
  44. "in_bytes" : {
  45. "index" : "analyzed",
  46. "type" : "long"
  47. },
  48. "protocol" : {
  49. "index" : "analyzed",
  50. "type" : "integer"
  51. },
  52. "tcp_flags" : {
  53. "index" : "analyzed",
  54. "type" : "integer"
  55. },
  56. "l4_dst_port" : {
  57. "index" : "analyzed",
  58. "type" : "long"
  59. },
  60. "src_as" : {
  61. "index" : "analyzed",
  62. "type" : "integer"
  63. },
  64. "output_snmp" : {
  65. "index" : "not_analyzed",
  66. "type" : "long"
  67. },
  68. "dst_mask" : {
  69. "index" : "analyzed",
  70. "type" : "integer"
  71. },
  72. "ipv4_dst_addr" : {
  73. "index" : "analyzed",
  74. "type" : "ip"
  75. },
  76. "src_tos" : {
  77. "index" : "analyzed",
  78. "type" : "integer"
  79. },
  80. "src_mask" : {
  81. "index" : "analyzed",
  82. "type" : "integer"
  83. },
  84. "version" : {
  85. "index" : "analyzed",
  86. "type" : "integer"
  87. },
  88. "flow_seq_num" : {
  89. "index" : "not_analyzed",
  90. "type" : "long"
  91. },
  92. "flow_records" : {
  93. "index" : "not_analyzed",
  94. "type" : "integer"
  95. },
  96. "ipv4_src_addr" : {
  97. "index" : "analyzed",
  98. "type" : "ip"
  99. },
  100. "engine_type" : {
  101. "index" : "not_analyzed",
  102. "type" : "integer"
  103. },
  104. "engine_id" : {
  105. "index" : "not_analyzed",
  106. "type" : "integer"
  107. },
  108. "input_snmp" : {
  109. "index" : "not_analyzed",
  110. "type" : "long"
  111. },
  112. "last_switched" : {
  113. "index" : "not_analyzed",
  114. "type" : "date"
  115. },
  116. "sampling_interval" : {
  117. "index" : "not_analyzed",
  118. "type" : "integer"
  119. }
  120. }
  121. },
  122. "@timestamp" : {
  123. "index" : "analyzed",
  124. "type" : "date"
  125. },
  126. "@version" : {
  127. "index" : "analyzed",
  128. "type" : "integer"
  129. }
  130. }
  131. }
  132. },
  133. "aliases" : { }
  134. }
  135. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement