IP 주소를 십진수로 바꿔주는 런타임 필드 쿼리.
GET testindex/_search{ "runtime_mappings": { "ip_pow": { "type": "long", "script": """ def result = 0; def pow = 3; for (i in doc['message.keyword'].value.splitOnToken('.')) { result += Integer.parseInt(i) * Math.pow(256, pow); pow -= 1; }