Reducing syslog output lines

This is where we can discuss what we would like to see added or changed in OpenVPN.

Moderators: TinCanTech, TinCanTech, TinCanTech, TinCanTech, TinCanTech, TinCanTech

Post Reply
biggsy
OpenVpn Newbie
Posts: 1
Joined: Thu Sep 01, 2016 10:35 am

Reducing syslog output lines

Post by biggsy » Tue Oct 23, 2018 3:03 am

Would there be any possibility of reducing the number of syslog output lines for a connection by combining multiple related entries into a single line?

For example, these 11 lines

Code: Select all

Oct 23 12:58:30 openvpn[69922]: <Source IP>:13031 peer info: IV_VER=2.4.6
Oct 23 12:58:30 openvpn[69922]: <Source IP>:13031 peer info: IV_PLAT=win
Oct 23 12:58:30 openvpn[69922]: <Source IP>:13031 peer info: IV_PROTO=2
Oct 23 12:58:30 openvpn[69922]: <Source IP>:13031 peer info: IV_NCP=2
Oct 23 12:58:30 openvpn[69922]: <Source IP>:13031 peer info: IV_LZ4=1
Oct 23 12:58:30 openvpn[69922]: <Source IP>:13031 peer info: IV_LZ4v2=1
Oct 23 12:58:30 openvpn[69922]: <Source IP>:13031 peer info: IV_LZO=1
Oct 23 12:58:30 openvpn[69922]: <Source IP>:13031 peer info: IV_COMP_STUB=1
Oct 23 12:58:30 openvpn[69922]: <Source IP>:13031 peer info: IV_COMP_STUBv2=1
Oct 23 12:58:30 openvpn[69922]: <Source IP>:13031 peer info: IV_TCPNL=1
Oct 23 12:58:30 openvpn[69922]: <Source IP>:13031 peer info: IV_GUI_VER=OpenVPN_GUI_11
could be reduced to:

Code: Select all

Oct 23 12:58:30 openvpn[69922]: <Source IP>:13031 peer info: IV_VER=2.4.6,IV_PLAT=win,IV_PROTO=2,IV_NCP=2,IV_LZ4=1,IV_LZ4v2=1,IV_LZO=1,IV_COMP_STUB=1,IV_COMP_STUBv2=1,IV_TCPNL=1,IV_GUI_VER=OpenVPN_GUI_11
I guess the same could be done with other (e.g., MANAGEMENT) entries as well.

Thanks,
biggsy

TinCanTech
OpenVPN Protagonist
Posts: 11137
Joined: Fri Jun 03, 2016 1:17 pm

Re: Reducing syslog output lines

Post by TinCanTech » Tue Oct 23, 2018 11:51 am

The short answer is: No.

The long answer is: If you want to write a patch for it then maybe but quite unlikely.

Why do you want this ?

ratnix
OpenVpn Newbie
Posts: 12
Joined: Wed Mar 07, 2018 11:06 pm

Re: Reducing syslog output lines

Post by ratnix » Wed Oct 31, 2018 10:03 pm

TinCanTech wrote:
Tue Oct 23, 2018 11:51 am
Why do you want this ?
Not OP, but I would have loved this. My use case: I'm admin of a site with a lot of users with varying versions of clients. One thing I do is try to keep an eye out for older versions and nag people occasionally to keep up.

If you're running a 2.4.6 client, great, nothing to do. If you're running 2.4.4, are you on tunnelblick on mac and thus I should nag you, or are you on Ubuntu17 and I should leave you alone? If you're 2.3.x and mac maybe I nag you. If you're 2.3 and linux you're probably Ubuntu 14 and I leave you alone.

When things are split out like the logs are now, this becomes a nontrivial scripting effort because, while those are all vertically grouped to the eyeball, they're different lines that need something to ingest the file, key off sourceip:sourceport, etc. If they were on one line... cat log|grep 'IV_VER=2\.3\.' | grep -v IV_PLAT=linux

I can see why it's done the way it is.. it very much resembles the format of seeing environmental variable output. But since it's buried in logs, it's just a wad of text for human eyeballs, while difficult for sysadmins to do anything with. But, it's only logged to syslog, from what I can tell, so, it's the only game in town.

Now, what'd be awesome (and, I think, a decent compromise vs. changing the longstanding logging format), is if I could connect to the management port and say 'peer-info cn [n]'. At that point, even if you have everything on multiple lines, I don't care, because I then know can associate all those lines of output to the specific user I asked for. And you can copy the prior art of 'status [n]' to have that 'n' cause variable output formats of the peer info (multiple lines, CSV like status, keyvalue CSV like OP asked for), for parsing.

yes yes, inb4 "sounds great, go write it."

Post Reply