[nxlog-ce-users] Posting to this list

2014-02-27 Thread venkat uk
HI Admin, I would like to ask a question to this mailing list. Can you let me know the procedure ? Thank you. -- Great Day, Karunakar.U E lkarunaka...@gmail.com -- Flow-based real-time traffic analytics software. Cisco

[nxlog-ce-users] om_http - ERROR unhandled event! (reqevents: 33, rtnevents: 64)

2014-02-27 Thread Shedis
Hi, When using om_http module i’m seeing the following messages in nxlog, are these normal, any hints what is going wrong here? Module om_http Url http://x.x.x.x:8000/in.adp nxlog shows: 2014-02-28 00:42:08 INFO nxlog-ce-2.7.1191 started 2014-02-28 00:42:08 INFO connectin

Re: [nxlog-ce-users] im_msvistalog - Send only some of the fields to remote server

2014-02-27 Thread Shedis
Yes, delete($field) did the trick. Finally i added the delete for each of 20 fields that i wanted to not send over network. Rather than using delete(field), is it possible to specify the fields that i need and rewrite the message? kind of opposite of delete(field). Thankyou On 27 Feb 2014,

Re: [nxlog-ce-users] im_msvistalog - Send only some of the fields to remote server

2014-02-27 Thread Botond Botyanszki
Hi, You can use the following to remove fields: Exec delete($field1); delete($field2); To rewrite the fields, you can use the replace() function or regular expressions. See here: http://nxlog.org/nxlog-docs/en/nxlog-reference-manual.html#processing_rewrite Regards, Botond On Thu, 27 Feb 2014 21

Re: [nxlog-ce-users] im_msvistalog - Send only some of the fields to remote server

2014-02-27 Thread Shedis
Hi Botond, Yes can choose or convert the eventing to one of these format before sending over network. Perhaps I couldn't explain it clearly enough. My question to is how I can rewrite the message and remove some of the fields/item before sending it over the wire. Currently all of the fields of

Re: [nxlog-ce-users] im_msvistalog - Send only some of the fields to remote server

2014-02-27 Thread Botond Botyanszki
Hi, There are several options to send the fields across the network. * "OutputType Binary" and "InputType Binary" * to_json() and parse_json() * to_syslog_ietf() and parse_syslog() * kvp * csv Example with SSL: Client side. http://nxlog.org/nxlog-docs/en/nxlog-reference-manual.html#idp361924