RFC 5424 says that the [hostname should be fully-qualified](https://tools.ietf.org/html/rfc5424#section-6.2.4). The default hostname [is currently determined using `Socket.gethostname`](https://github.com/papertrail/remote_syslog_logger/blob/5679fc907655fb7e5dcefe3ec5c595301b081798/lib/remote_syslog_logger/udp_sender.rb#L14), which returns the unqualified hostname. It should use something like [this](http://stackoverflow.com/a/151570/2778142) instead to determine the FQDN.
RFC 5424 says that the hostname should be fully-qualified. The default hostname is currently determined using
Socket.gethostname, which returns the unqualified hostname. It should use something like this instead to determine the FQDN.