mirror of
https://github.com/ckaczor/HomeMonitor.git
synced 2026-01-14 01:25:38 -05:00
Log all messages
This commit is contained in:
@@ -1,4 +1,6 @@
|
|||||||
using JetBrains.Annotations;
|
using ChrisKaczor.HomeMonitor.Weather.Models;
|
||||||
|
using ChrisKaczor.HomeMonitor.Weather.Service.Data;
|
||||||
|
using JetBrains.Annotations;
|
||||||
using Microsoft.AspNetCore.SignalR.Client;
|
using Microsoft.AspNetCore.SignalR.Client;
|
||||||
using Microsoft.Extensions.Configuration;
|
using Microsoft.Extensions.Configuration;
|
||||||
using Microsoft.Extensions.Hosting;
|
using Microsoft.Extensions.Hosting;
|
||||||
@@ -9,8 +11,6 @@ using System;
|
|||||||
using System.Text;
|
using System.Text;
|
||||||
using System.Threading;
|
using System.Threading;
|
||||||
using System.Threading.Tasks;
|
using System.Threading.Tasks;
|
||||||
using ChrisKaczor.HomeMonitor.Weather.Models;
|
|
||||||
using ChrisKaczor.HomeMonitor.Weather.Service.Data;
|
|
||||||
|
|
||||||
namespace ChrisKaczor.HomeMonitor.Weather.Service
|
namespace ChrisKaczor.HomeMonitor.Weather.Service
|
||||||
{
|
{
|
||||||
@@ -25,9 +25,6 @@ namespace ChrisKaczor.HomeMonitor.Weather.Service
|
|||||||
|
|
||||||
private HubConnection _hubConnection;
|
private HubConnection _hubConnection;
|
||||||
|
|
||||||
private static DateTime _lastLogTime = DateTime.MinValue;
|
|
||||||
private static long _messageCount;
|
|
||||||
|
|
||||||
public MessageHandler(IConfiguration configuration, Database database)
|
public MessageHandler(IConfiguration configuration, Database database)
|
||||||
{
|
{
|
||||||
_configuration = configuration;
|
_configuration = configuration;
|
||||||
@@ -80,15 +77,7 @@ namespace ChrisKaczor.HomeMonitor.Weather.Service
|
|||||||
var body = eventArgs.Body;
|
var body = eventArgs.Body;
|
||||||
var message = Encoding.UTF8.GetString(body);
|
var message = Encoding.UTF8.GetString(body);
|
||||||
|
|
||||||
_messageCount++;
|
WriteLog($"Message received: {message}");
|
||||||
|
|
||||||
if ((DateTime.Now - _lastLogTime).TotalMinutes >= 1)
|
|
||||||
{
|
|
||||||
WriteLog($"Number of messages received since {_lastLogTime} = {_messageCount}");
|
|
||||||
|
|
||||||
_lastLogTime = DateTime.Now;
|
|
||||||
_messageCount = 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
var weatherMessage = JsonConvert.DeserializeObject<WeatherMessage>(message);
|
var weatherMessage = JsonConvert.DeserializeObject<WeatherMessage>(message);
|
||||||
|
|
||||||
@@ -109,7 +98,7 @@ namespace ChrisKaczor.HomeMonitor.Weather.Service
|
|||||||
if (_hubConnection.State == HubConnectionState.Disconnected)
|
if (_hubConnection.State == HubConnectionState.Disconnected)
|
||||||
_hubConnection.StartAsync().Wait();
|
_hubConnection.StartAsync().Wait();
|
||||||
|
|
||||||
_hubConnection.InvokeAsync("SendLatestReading", message).Wait();
|
_hubConnection.InvokeAsync("SendLatestReading", message).Wait();
|
||||||
}
|
}
|
||||||
catch (Exception exception)
|
catch (Exception exception)
|
||||||
{
|
{
|
||||||
|
|||||||
Reference in New Issue
Block a user