grep log.retention.bytes server.log{,.1}
In order to keep log entries (appended) in chronological order, you might want to reverse the order of files:
grep log.retention.bytes server.log{.1,}
which is of course equivalent to:
grep log.retention.bytes server.log.1 server.log
as the brace expansion is done by the shell before executing the `grep` command.
Moreover, with `zsh` shell you can easily automatically glob for the _last N files matching a pattern_ with:
grep log.retention.bytes server.log*(Om[-2,-1])
where `Om` means _order by mtime descending_ and `[-2,-1]` fetches 2 last rows. This trick is worth remembering if you watch to search more files and do not want to type them manually.