Get the list of schema.tables first and write it to a file:
mysql -uroot -p -Ne “select concat(table_schema,‘.’,table_name) from information_schema.tables where table_schema not in (‘mysql’,‘information_schema’,‘performance_schema’,‘tmp’)” > filtered.txt
then run innobackupex --tables-file=/path/to/filtered.txt [other options here]
see if this works!