Skip to content
This repository has been archived by the owner on Feb 3, 2021. It is now read-only.

Commit

Permalink
feat(historical-data): add roaming and device info
Browse files Browse the repository at this point in the history
  • Loading branch information
coderbyheart committed Sep 9, 2019
1 parent 8a4b6a7 commit 7236b7e
Showing 1 changed file with 59 additions and 0 deletions.
59 changes: 59 additions & 0 deletions historicalData/deviceMessages.ts
Original file line number Diff line number Diff line change
Expand Up @@ -68,6 +68,65 @@ export const deviceMessagesFields: {
},
},
},
dev: {
type: AthenaTableStructFieldType.struct,
fields: {
ts: {
type: AthenaTableScalarFieldType.bigint,
},
v: {
type: AthenaTableStructFieldType.struct,
fields: {
band: {
type: AthenaTableScalarFieldType.int,
},
nw: {
type: AthenaTableScalarFieldType.string,
},
iccid: {
type: AthenaTableScalarFieldType.string,
},
modV: {
type: AthenaTableScalarFieldType.string,
},
brdV: {
type: AthenaTableScalarFieldType.string,
},
appV: {
type: AthenaTableScalarFieldType.string,
},
},
},
},
},
roam: {
type: AthenaTableStructFieldType.struct,
fields: {
ts: {
type: AthenaTableScalarFieldType.bigint,
},
v: {
type: AthenaTableStructFieldType.struct,
fields: {
rsrp: {
type: AthenaTableScalarFieldType.int,
},
area: {
type: AthenaTableScalarFieldType.int,
},
mccmnc: {
type: AthenaTableScalarFieldType.int,
},
cell: {
type: AthenaTableScalarFieldType.int,
},
ip: {
type: AthenaTableScalarFieldType.string,
},
},
},
},
},
},
},
timestamp: {
Expand Down

0 comments on commit 7236b7e

Please sign in to comment.