Files
notifications-api/app/performance_platform/total_sent_notifications.py

29 lines
932 B
Python
Raw Normal View History

from app import performance_platform_client
2021-03-10 13:55:06 +00:00
from app.dao.fact_notification_status_dao import (
get_total_sent_notifications_for_day_and_type,
)
# TODO: is this obsolete? it doesn't seem to be used anywhere
def send_total_notifications_sent_for_day_stats(start_time, notification_type, count):
payload = performance_platform_client.format_payload(
dataset='notifications',
start_time=start_time,
group_name='channel',
group_value=notification_type,
count=count
)
performance_platform_client.send_stats_to_performance_platform(payload)
2017-08-24 10:52:47 +01:00
# TODO: is this obsolete? it doesn't seem to be used anywhere
def get_total_sent_notifications_for_day(day):
email_count = get_total_sent_notifications_for_day_and_type(day, 'email')
sms_count = get_total_sent_notifications_for_day_and_type(day, 'sms')
return {
"email": email_count,
"sms": sms_count,
}