I have followed the steps needed to hook up monitoring: https://ionicframework.com/docs/pro/monitoring/
My code is below - this simple exception is not being posted to my monitoring dashboard. I know the code is executing because I show a simple alert after I make this call to monitoring, and I see the alert.
How can I figure out what’s going on here?
export class HomePage {
…
constructor(public navCtrl: NavController, public navParams: NavParams, private platform: Platform, private zone:NgZone, private alertCtrl: AlertController) {
…
Pro.monitoring.exception(new Error(‘test error’));
…