summaryrefslogtreecommitdiff
path: root/proto/src
diff options
context:
space:
mode:
author Hakjun Choi <hakjunc@google.com> 2025-03-12 11:25:18 +0000
committer Hakjun Choi <hakjunc@google.com> 2025-03-12 18:05:28 +0000
commit5ac640563c7dd8a61949f086fd2b4f2d9ca4837a (patch)
tree0429e749540207a634c0d2f12a44033e64161b95 /proto/src
parent0e5c6b485c285307bbd78993409909429574d51e (diff)
Add new fields for counting sms sms message for Satellite
Added counter for successful/failed incoming/outgoing messages Related atom : SatelliteController atom Fields definition 1. count_of_incoming_datagram_type_sos_sms_success : count haw many times sos or sms message have received successfully, this is similar with count_of_datagram_type_sos_sms_success, but it is for outgoing sos or sms message type. 2. count_of_incoming_datagram_type_sos_sms_fail : count how many times sos or sms message receive attempt have failed, this is similar with count_of_datagram_type_sos_sms_fail, but it is for outgoing sos or sms message type. 3. count_of_outgoing_sdatagram_type_sms_success : count how many times sms message have received successfully, this is needed because existing field count_of_datagram_type_sos_sms_success count merged value for sos and sms, we don't have way to distinguish sms or sos, so this field is added. 4. count_of_outgoing_datagram_type_sms_fail : similar with above 5. count_of_incoming_datagram_type_sms_success : similar with above, but it is for incoming sms case 6. count_of_incoming_datagram_type_sms_fail : similar with above Flag: EXEMPT bug fix Bug: 402622532 Test: atest atest PersistAtomsStorageTest SatelliteStatsTest SatelliteControllerTest Test: manually test and check DB whether it is reported or not Change-Id: Ideacbf2a9c56a67cb37b244067a6f6826fe5c354
Diffstat (limited to 'proto/src')
-rw-r--r--proto/src/persist_atoms.proto6
1 files changed, 6 insertions, 0 deletions
diff --git a/proto/src/persist_atoms.proto b/proto/src/persist_atoms.proto
index cca2435254..445664d035 100644
--- a/proto/src/persist_atoms.proto
+++ b/proto/src/persist_atoms.proto
@@ -728,6 +728,12 @@ message SatelliteController {
optional int32 count_of_p2p_sms_available_notification_removed = 35;
optional bool is_ntn_only_carrier = 36;
optional int32 version_of_satellite_access_config = 37;
+ optional int32 count_of_incoming_datagram_type_sos_sms_success = 38;
+ optional int32 count_of_incoming_datagram_type_sos_sms_fail = 39;
+ optional int32 count_of_outgoing_datagram_type_sms_success = 40;
+ optional int32 count_of_outgoing_datagram_type_sms_fail = 41;
+ optional int32 count_of_incoming_datagram_type_sms_success = 42;
+ optional int32 count_of_incoming_datagram_type_sms_fail = 43;
}
message SatelliteSession {