-
Notifications
You must be signed in to change notification settings - Fork 28
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add program in log #35
Comments
Which RFC are you basing the message format compliance against? |
the RFC5414 On the tcpdump we can see the log send by your program to the syslog concentrator :
Here a log send by the linux system (here bash) :
You can see the name and the program at the begining of the line like the RFC 5414 describe it. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Hello team,
Today the log sent is like this :
2023-04-18T17:21:32+02:00 {"epkey": null, "hostname": null, "ip": "xx.xx.xx.xx", "location": END OF THE JSON.........}
It's not RFC compliant, you must have the machine name and progam name after the timestamp and before the message like this :
2023-04-18T17:21:32+02:00 myserver duo {"epkey": null, "hostname": null, "ip": "xx.xx.xx.xx", END OF THE JSON.........}
Could you, please, make the change to be compliant ? :)
Thanks
The text was updated successfully, but these errors were encountered: