我正在开发一个网站性能监控工具,用于衡量用户网站的网站性能。
我希望自动化该过程...意味着定期从SQL Server数据库自动检索信息(如用户的URL)。说1小时,2小时,无论如何,将测量的数据插入数据库。有没有办法做到这一点?
答案 0 :(得分:1)
private void PeriodicUpdate()
{
System.Timers.Timer time = new System.Timers.Timer();
time.Elapsed += time_Elapsed;
time.Start();
time.Interval = //Set your time interval. Its in milliseconds
time.AutoReset = true;
}
private void time_Elapsed(object sender, EventArgs e)
{
//Write your task here.
}