Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

Table of Contents

Purpose

In order to understand to understand the SMS channel efficiency next metrics must be pre calculated and shown on datadog dashboard: 

  • Successful/unsuccessful SMS submissions stats
  • Undelivered SMS
  • SMS delivery latency

...

  • day (last 1 day)
  • month (last 30 days)
  • total 

Successful/unsuccessful SMS submissions stats

Fetch records from VERIFICATION.sms_logs, where:

  • status not in  ('Accepted', 'Enroute')

...

Calculate successful ratio:

  • count(status='Delivered')/count(status<>'Delivered')

Undelivered SMS

Fetch records from VERIFICATION.sms_logs, where:

  • status not in  ('Accepted', 'Enroute')

...

Calculate Undelivered SMS qty:

  • count(status<>'Delivered')

SMS delivery latency

Fetch records from VERIFICATION.sms_logs, where:

  • status = 'Delivered'
  • now()-inserted_at<=inputed_period (if inputed_period = total then all sms)
  • if body<>'VERIFICATION' then 'Medication request' else body

Calculate SMS delivery latency based on groups:

  • define groups:
    • '<=1 min': now() inserted_at-status_changed_at<=1 min 
    • '1 - 5 min':  now()  inserted_at-status_changed_at<=5 min 
    • '5 - 30 min': now() inserted_at-status_changed_at<=30 min 
    • '30 min - 12 hours': now() inserted_at-status_changed_at<=30 min - 12 hours 
    • '>12 hours': now() inserted_at-status_changed_at> 12 hours
  • count(*) - sms qty in each group

...