anjana_sreekumar@infosys.com | 991c206 | 2020-01-08 11:42:57 +0530 | [diff] [blame^] | 1 | #ifndef PROCEDURE_STATS_H |
| 2 | #define PROCEDURE_STATS_H |
| 3 | namespace mme |
| 4 | { |
| 5 | class ProcedureStats |
| 6 | { |
| 7 | public: |
| 8 | static int num_of_air_sent; |
| 9 | static int num_of_ulr_sent; |
| 10 | static int num_of_processed_aia; |
| 11 | static int num_of_processed_ula; |
| 12 | static int num_of_auth_req_to_ue_sent; |
| 13 | static int num_of_processed_auth_response; |
| 14 | static int num_of_sec_mode_cmd_to_ue_sent; |
| 15 | static int num_of_processed_sec_mode_resp; |
| 16 | static int num_of_esm_info_req_to_ue_sent; |
| 17 | static int num_of_handled_esm_info_resp; |
| 18 | static int num_of_cs_req_to_sgw_sent; |
| 19 | static int num_of_processed_cs_resp; |
| 20 | static int num_of_init_ctxt_req_to_ue_sent; |
| 21 | static int num_of_processed_init_ctxt_resp; |
| 22 | static int num_of_mb_req_to_sgw_sent; |
| 23 | static int num_of_processed_attach_cmp_from_ue; |
| 24 | static int num_of_processed_mb_resp; |
| 25 | static int num_of_attach_done; |
| 26 | static int num_of_del_session_req_sent; |
| 27 | static int num_of_purge_req_sent; |
| 28 | static int num_of_processed_del_session_resp; |
| 29 | static int num_of_processed_pur_resp; |
| 30 | static int num_of_detach_accept_to_ue_sent; |
| 31 | static int num_of_processed_detach_accept; |
| 32 | static int num_of_ue_ctxt_release; |
| 33 | static int num_of_processed_ctxt_rel_resp; |
| 34 | static int num_of_subscribers_attached; |
| 35 | static int num_of_rel_access_bearer_req_sent; |
| 36 | static int num_of_rel_access_bearer_resp_received; |
| 37 | static int num_of_s1_rel_req_received; |
| 38 | static int num_of_s1_rel_cmd_sent; |
| 39 | static int num_of_s1_rel_comp_received; |
| 40 | static int num_of_clr_received; |
| 41 | static int num_of_cla_sent; |
| 42 | static int num_of_detach_req_to_ue_sent; |
| 43 | static int num_of_detach_accept_from_ue; |
| 44 | static int total_num_of_subscribers; |
| 45 | static int num_of_subscribers_detached; |
| 46 | static int num_of_ddn_received; |
| 47 | static int num_of_service_request_received; |
| 48 | static int num_of_ddn_ack_sent; |
| 49 | static int num_of_tau_response_to_ue_sent; |
| 50 | |
| 51 | |
| 52 | }; |
| 53 | }; |
| 54 | #endif |