- Mark as New
- Bookmark Message
- Subscribe to Message
- Mute Message
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
isha_rastogi
Path Finder
02-28-2018
02:11 AM
I've field extracting as: allowed_ip: 10.1.1.10,10.2.2.15,10.3.3.14"
Using makemv in inline gives separate values makemv delim=", " allowed_ip"
I'm trying to implement it on backend instead of writing it inline none of it is working. Used fields.conf:
[allowed_ip]
TOKENIZER=([^\,]+)
Also tried to implement it in props.conf and transforms.conf:
props.conf
[abc:pce:metadata]
EXTRACT-IP = allowed_ip
transforms.conf:
[allowed_ip]
CLEAN_KEYS = 0
MV_ADD = 1
REGEX = (?<IP>[^,]+)
SOURCE_KEY = allowed_ip
1 Solution
- Mark as New
- Bookmark Message
- Subscribe to Message
- Mute Message
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
isha_rastogi
Path Finder
02-28-2018
04:36 AM
able to solve it .. used split in eval command:
eval allowed_ip=split(allowed_ip,",") and it worked perfectly
- Mark as New
- Bookmark Message
- Subscribe to Message
- Mute Message
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
isha_rastogi
Path Finder
02-28-2018
04:36 AM
able to solve it .. used split in eval command:
eval allowed_ip=split(allowed_ip,",") and it worked perfectly
- Mark as New
- Bookmark Message
- Subscribe to Message
- Mute Message
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content

gavins_k1
Path Finder
10-19-2018
05:10 PM
Thanks heaps @isha_rastogi , this helped me out a lot.
search-time > index-time and all that 🙂
