I'm trying to get service response time from TCAP or GSM_MAP messages, similar to what is build in for DIAMETER.
I'm thinking of using MATE, e.g.
Pdu ss7_pdu Proto tcap Transport ip {
Extract tid From tcap.tid;
Extract tcap_begin From tcap.begin_element;
Extract tcap_end From tcap.end_element;
};
Gop ss7_req On ss7_pdu Match (tid) {
Start (tcap_begin);
Stop (tcap_end);
};
Done;
To match messages, but unsure how to proceed and if it possible at all?