Commit 13c3fff78e10d8272a7f8c3946a5cedca3eec559
1 parent
a00767a73b
Exists in
master
More data on register-modem
Showing 1 changed file with 4 additions and 1 deletions Side-by-side Diff
lib/register-modem.js
... | ... | @@ -27,14 +27,17 @@ function sender(modemInfo) { |
27 | 27 | modem: config.name, |
28 | 28 | modem_device: config.modem.device, |
29 | 29 | modem_imsi: modemInfo.imsi, |
30 | - modem_msisdn: modemInfo.msisdn, | |
30 | + // modem_msisdn: modemInfo.msisdn, | |
31 | 31 | modem_network_id: modemInfo.networkId, |
32 | 32 | modem_network_name: modemInfo.networkName, |
33 | 33 | modem_signal_strength: modemInfo.signalStrength, |
34 | 34 | uptime: Math.floor(process.uptime()), |
35 | + startTime: modemInfo.startTime, | |
35 | 36 | report_port: config.http_command_server.listen_port, |
36 | 37 | report_apikey: config.http_command_server.apikey, |
37 | 38 | report_path_sms: '/sms', |
39 | + lastReadTs: modemInfo.lastReadTs, | |
40 | + lastWriteTs: modemInfo.lastWriteTs, | |
38 | 41 | }, |
39 | 42 | }; |
40 | 43 |