addListener for alarms from remote tag provider?

I try to subscribe to alarms in a module for the gateway scope with the AlarmManager

with:

qpListener = new QualifiedPath.Builder().build()
this.gatewayContext.getAlarmManager().addListener(qpListener, myAlarmListenerBlock)

it works well for alarms generated on tags from a local provider, but it seems I don't catch alarms fom tags of remote provider ?

Is it normal ?
It doesn't work with:

qpListener = new QualifiedPath.Builder().setProvider("myremoteproc").setTag("*").setAlarm("*").build();

Note : Remote tags alarms are well collected by an Alarm Status Table component on the gateway.

Any idea what's could be wrong :thinking: