Hi Raidon,
the performance impact of running rs.status() every minute will be minimal and most likely completely imperceptible. From the documentation for rs.status available here:
http://docs.mongodb.org/manual/reference/method/rs.status/, rs.status() information is returned based on the heartbeat packets sent amongst members of a replica set, so rs.status() simply reads back a small amount of information that it is regularly collecting through heartbeats in the background.
There is no additional network traffic to other members of the replica set to perform rs.status().
rs.conf()
rs.printReplicationInfo()
rs.printSlaveReplicationInfo()
rs.status()
-Will