博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
[Asp.net]SignalR实现实时日志监控
阅读量:5940 次
发布时间:2019-06-19

本文共 5298 字,大约阅读时间需要 17 分钟。

摘要

昨天吃饭的时候,突然想起来一个好玩的事,如果能有个页面可以实时的监控网站或者其他类型的程序的日志,其实也不错。当然,网上也有很多成熟的类似的监控系统。就想着如果通过.net该如何实现?所以就在想,通过系统内部将消息推送到前端,.net中可以通过pull或者push的方式,pull通常的做法就是ajax方式不停的请求一个接口,这种方式,不太理想。然后就在想如何通过服务端想客户端推送消息。之前看到过SignalR方面的文章可以实现push的功能,signalr也是第一次接触,在这个网站看了一些文章。就自己动手做了这样的日志监控的demo。

一个简单的例子

先上一段代码,如下:

该类是一个监控日志文件是否变化的一个单例类。其中维护一个日志队列。

public class FileSystemWatcherSingle    {        public FileSystemWatcher wather;        private static FileSystemWatcherSingle _instance;        private static readonly object _objLock = new object();        public Queue
MyQueue; private string _watherFolderPath = Path.Combine(AppDomain.CurrentDomain.BaseDirectory, "Log"); private FileSystemWatcherSingle() { if (MyQueue == null) { MyQueue = new Queue
(); } if (wather == null) { wather = new FileSystemWatcher(); if (!Directory.Exists(_watherFolderPath)) { Directory.CreateDirectory(_watherFolderPath); } wather.Path = _watherFolderPath; wather.EnableRaisingEvents = true; } } public static FileSystemWatcherSingle CreateInstance() { if (_instance == null) { lock (_objLock) { if (_instance == null) { _instance = new FileSystemWatcherSingle(); } } } return _instance; } }

写日志的操作

在写入文件之前,将当前的日志加入到日志队列里面。

using Newtonsoft.Json;using System;using System.Collections.Generic;using System.IO;using System.Linq;using System.Web;namespace Wolfy.LogMonitor.Models{    public class LogHelper    {        public static void WriteLog(Log log)        {            string dir = Path.Combine(AppDomain.CurrentDomain.BaseDirectory, "Log");            if (!Directory.Exists(dir))            {                Directory.CreateDirectory(dir);            }            string _watherFilePath = Path.Combine(dir, DateTime.Now.ToString("yyyy-MM-dd") + ".log");            if (!File.Exists(_watherFilePath))            {                File.Create(_watherFilePath);            }            FileSystemWatcherSingle wather = FileSystemWatcherSingle.CreateInstance();            wather.MyQueue.Enqueue(log);            File.AppendAllText(_watherFilePath, string.Format("{0} {1}\r\n{2}", log.Type.ToString(), log.Dt, log.Content));                    }    }}

LogHub类

需要安装SignalR,在安装完成时,有个Readme文件,根据里面的提示,需要添加StartUp类,添加对应的owin程序集。

using Microsoft.Owin;using Owin;using System;using System.Collections.Generic;using System.Linq;using System.Web;using Wolfy.LogMonitor.App_Start;[assembly: OwinStartup(typeof(Startup))]namespace Wolfy.LogMonitor.App_Start{    public class Startup    {        public void Configuration(IAppBuilder app)        {            app.MapSignalR();        }    }}

LogHub继承Hub类,并在这里想所有客户端推送消息。并在这里面面为文件监控类FileSystemWatcher注册创建和Change事件。

using System;using System.Collections.Generic;using System.Linq;using System.Web;using Microsoft.AspNet.SignalR;using Microsoft.AspNet.SignalR.Hubs;using System.Timers;using Newtonsoft.Json;namespace Wolfy.LogMonitor.Models{    [HubName("logHub")]    public class LogHub : Hub    {        private FileSystemWatcherSingle fileWather;        public void Send(string name, string message)        {            // Call the addNewMessageToPage method to update clients.            Clients.All.addNewMessageToPage(name, message);        }        public LogHub()        {            fileWather = FileSystemWatcherSingle.CreateInstance();            fileWather.wather.Changed += wather_Changed;            fileWather.wather.Created += wather_Created;        }        void wather_Created(object sender, System.IO.FileSystemEventArgs e)        {            this.Send("system", "创建文件:" + e.Name);        }        void wather_Changed(object sender, System.IO.FileSystemEventArgs e)        {            while (fileWather.MyQueue != null && fileWather.MyQueue.Count > 0)            {                Log log = fileWather.MyQueue.Dequeue();                if (log != null)                {                    this.Send(log.Type.ToString(), JsonConvert.SerializeObject(log));                }            }        }    }}

前端

home:log展示的页面。根据日志类型为该条日志显示不同的颜色。

@{    ViewBag.Title = "Home";}

LogController

Test页面是一个测试页面,通过不停的刷新写入随机类型的日志。

using System;using System.Collections.Generic;using System.Linq;using System.Web;using System.Web.Mvc;using Wolfy.LogMonitor.Models;namespace Wolfy.LogMonitor.Controllers{    public class LogController : Controller    {        // GET: Log        public ActionResult Home()        {            return View();        }        public ActionResult Test()        {            LogType[] logtypes = { LogType.Info, LogType.Error };            Random r = new Random();            int index = r.Next(0, 2);            LogHelper.WriteLog(new Log { Content = "这是一次日志", Dt = DateTime.Now, Type = logtypes[index] });            return View();        }    }}

好了,到现在基本上大功告成。测试一下。

通过不停的刷新test页面,你会发现home页面上会相应的动态展示这次操作的日志。

总结

昨天突然有这个想法,今天就折腾了一上午,将这个想法用代码实现了一下。这里没有signalr的相关介绍,感兴趣的话,可以看下面的参考资料中的内容。

参考资料

http://www.asp.net/signalr

转载地址:http://ammtx.baihongyu.com/

你可能感兴趣的文章
Python 以指定概率获取元素
查看>>
微信公众平台图文教程(二) 群发功能和素材管理
查看>>
关于System.Collections空间
查看>>
MPP(大规模并行处理)
查看>>
Centos下基于Hadoop安装Spark(分布式)
查看>>
Java 位运算
查看>>
好用的CSS模块化打包工具CSS-COMBO
查看>>
python 中的字符和字符串
查看>>
C#Winform限制Textbox只能输入数字
查看>>
EL表达式经典用法
查看>>
java.lang.NoClassDefFoundError: javax/mail/Authenticator
查看>>
联想集团涨超7% 杨元庆持股比例升至8.12%
查看>>
各省光伏十三五规划汇总:总规模将超130GW
查看>>
Apache Storm 官方文档 —— 常用模式
查看>>
聊聊JVM的年轻代
查看>>
lvm逻辑卷管理
查看>>
VS2010不能断点/下断的问题
查看>>
[Android]权限处理
查看>>
Spark bind on port 0. Attempting port 1 问题解决
查看>>
兼容所有浏览器的复制到剪切板功能,悬浮层不能复制问题解决
查看>>