Ignoring Transactions

In some cases, you might not want Blackfire Monitoring to instrument transactions.

You can programmatically ignore them using the ignoreTransaction() method:

PHP Application

1
2
// As of Blackfire PHP Probe 1.57.0
\BlackfireProbe::ignoreTransaction();

Python Application

1
2
3
4
from blackfire import apm

# As of Blackfire Python Probe 1.6.1
apm.ignore_transaction();