Skip to content

Commit

Permalink
rename some things
Browse files Browse the repository at this point in the history
  • Loading branch information
andymck committed Oct 17, 2024
1 parent a3f1cdd commit c526da5
Showing 1 changed file with 10 additions and 13 deletions.
23 changes: 10 additions & 13 deletions src/service/poc_mobile.proto
Original file line number Diff line number Diff line change
Expand Up @@ -10,18 +10,15 @@ import "service_provider.proto";
message hex_usage_counts_req_v1 {
// H3 resolution 10 tile
uint64 hex = 1;
// Average count of unique helium mobile subscribers active in the hex during
// the previous 7 days ( inclusive of discovery mapping subscribers )
uint64 helium_mobile_subscriber_avg_count = 2;
// Average count of unique helium mobile discovery mapping subscribers active
// Average count of unique service provider subscribers active in the hex
// during the previous 7 days ( inclusive of discovery mapping subscribers )
uint64 service_provider_subscriber_avg_count = 2;
// Average count of unique discovery mapping subscribers active
// in the hex during the previous 7 days
uint64 helium_mobile_disco_mapping_avg_count = 3;
uint64 disco_mapping_avg_count = 3;
// Average count of unique offload sessions active in the hex during the
// previous 7 days
uint64 offload_avg_count = 4;
// Average count of unique tmo cell tower sessions active in the hex during
// the previous 7 days
uint64 tmo_cell_avg_count = 5;
// Unix timestamp in milliseconds of when the report was generated
uint64 timestamp = 6;
// Carrier pubkey from verification mapping service
Expand All @@ -44,13 +41,13 @@ message radio_usage_counts_req_v1 {
bytes hotspot_pubkey = 1;
// the cbsd id of the radio if it is a cbrs radio otherwise empty
string cbsd_id = 2;
// Average count of unique helium mobile subscribers which have connected to
// the radio during the previous 7 days ( inclusive of discovery mapping
// Average count of unique service provider subscribers which have connected
// to the radio during the previous 7 days ( inclusive of discovery mapping
// subscribers )
uint64 helium_mobile_subscriber_avg_count = 3;
// Average count of unique helium mobile discovery mapping subscribers which
uint64 service_provider_subscriber_avg_count = 3;
// Average count of unique discovery mapping subscribers which
// have connected to the radio during the previous 7 days
uint64 helium_mobile_disco_mapping_avg_count = 4;
uint64 disco_mapping_avg_count = 4;
// Average count of unique offload sessions which have connected to the radio
// during the previous 7 days
uint64 offload_avg_count = 5;
Expand Down

0 comments on commit c526da5

Please sign in to comment.