I wonder if you can help with the following query?
I have a client (Centos 7) server (IP 1.1.1.1) in my office that sends its logs to a Centos 7 Syslog server (IP address 1.1.1.2). The syslog server forwards its logs to a Centos 7 Graylog v1.1.1 server (IP address 2.2.2.1). The three devices can successfully talk to one another and are using default ports and configurations as far as I am aware.
My issue is as follows: the logs displayed on the Graylog server have a source IP address and gl2_remote_ip of my syslog server (1.1.1.2). I would like the source IP address (and even the gl2_remote_ip) to be that of the client server (1.1.1.1).
So far, I have looked at using extractors to pull an IP address out of the message field (shown below) and am currently in the process of writing a drool script.
facility local1
full_message <142>May 31 15:11:57 1.1.1.1 116: .May 31 14:11:52.321: %SYS-6-LOGGINGHOST_STARTSTOP: Logging to host 1.1.1.2 started - CLI initiated
gl2_remote_ip 1.1.1.2
gl2_remote_port 40331
level 6
message 1.1.1.1 116: .May 31 14:11:52.321: %SYS-6-LOGGINGHOST_STARTSTOP: Logging to host 1.1.1.2 started - CLI initiated
source 1.1.1.2
However, each time I try to use regex commands (which I tested using the website http://www.regextester.com/) Graylog gives me an error telling me my regex is faulty. I have read through Graylog documentation and as far as I can tell, the regex it uses should be prett standard, but can anyone tell me what kind it is?
This regex line should work, according to the tester:
\b\d{1,3}\.\d{1,3}\.\d{1,3}\.\d{1,3}\b
So, in conclusion, can anyone help me pulling values from one part of a Graylog message and adding them back into another bit of the message?
I want the end result of a message to look like the following:
facility local1
full_message <142>May 31 15:11:57 1.1.1.1 116: .May 31 14:11:52.321: %SYS-6-
LOGGINGHOST_STARTSTOP: Logging to host 1.1.1.2 started - CLI initiated
gl2_remote_ip 1.1.1.1
gl2_remote_port 40331
level 6
message 1.1.1.1 116: .May 31 14:11:52.321: %SYS-6-LOGGINGHOST_STARTSTOP:
Logging to host 1.1.1.2 started - CLI initiated
source 1.1.1.1
Thanks a lot.