Hello recently I was interested in incremental backup in MongoDB and I can share what I found.
You in deed can use wiretiger for backup, but I think it is very complicated and I never found any documentation how to do that.
However i found that you can use LVM2 which is linux tool for creating and managing logical volumes
And if you learn more about LVM2 I think you will be happy.
How it works is simple you just log in mongodb_shell and pause writes with db.fsyncLock(); then create snapshot using lvm2 command in bash linux shell it probably takes just under 1second or so even if you have 10TB storage because it is just awesome 
then you will have to unlock db.fsyncUnlock(); So now on you can read consisten files from snapshot so it will not change while you make backup to different disk or server or whatever. And you pause server for just 1 second !!! If you want to have additional file containing only incremental changes, you can use RSYNC and DIFF and PATCH tools on linux to find best solutions for you.
Awesome thing about LVM snapshot is that it will not take any space in storage until mongodb change something in original /data path
Hope it was helpfull … i just learned LVM2 it is so awesome tool i just want to share.
God bless.