我正在设置一些Azure文件,并希望监视文件的容量。当特定文件的容量接近配额时,我需要在哪里设置警报?
现在,我正在使用日志活动和Azure Metric监视天蓝色资源并设置一些警报。
我想监视不同的文件容量,并在文件容量接近配额时设置一些警报。
答案 0 :(得分:1)
更新0806:
我们可以使用应用程序见解和Azure监控程序来做到这一点。
1。Create an application insights(来自Azure门户)。完成创建后,请copy the instrumentation key。
2。在Visual Studio中,创建一个.net框架控制台项目(我正在使用.net framework 4.5)
3。安装nuget软件包以获取Azure存储和应用程序见解:
Microsoft.ApplicationInsights, version 2.10.0
WindowsAzure.Storage, version 9.3.3
4。然后在Program.cs中编写代码:
class Program
{
private static List<CloudFile> files = new List<CloudFile>();
static void Main(string[] args)
{
string account_name = "xx";
string account_key = "xx";
//use while to keep running the code
while (true)
{
CloudStorageAccount storageAccount = new CloudStorageAccount(new StorageCredentials(account_name, account_key), true);
CloudFileClient fileClient = storageAccount.CreateCloudFileClient();
CloudFileShare fileShare = fileClient.GetShareReference("t88");
IEnumerable<IListFileItem> fileList = fileShare.GetRootDirectoryReference().ListFilesAndDirectories();
//clear the list
files.Clear();
//add all the files in the fileshare to the list
foreach (IListFileItem listItem in fileList)
{
if (listItem.GetType() == typeof(CloudFile))
{
files.Add((CloudFile)listItem);
}
else if (listItem.GetType() == typeof(CloudFileDirectory))
{
list_subdir(listItem);
}
}
Console.WriteLine(files.Count);
//the variable to store the total files' length in the fileshare
long file_length = 0;
//specify the threshold value, if the total size is more than the value, then send data to application insights.
long threshold_value = 99999; //here, I use bytes as unit. You can change it MB / GB properly as per your need.
//calculate the size(bytes here) of the total files in the fileshare
foreach (var f in files)
{
file_length += f.Properties.Length;
Console.WriteLine($"file name: {f.Name}, file size: {f.Properties.Length}");
}
TelemetryClient telemetryClient = new TelemetryClient { InstrumentationKey = "xxxx" };
//telemetryClient.GetMetric("file_length").TrackValue(file_length);
//telemetryClient.TrackTrace("aaaaa");
//add if statement here, means if the value is greater than threshold value, send the value to app insights
if (file_length > threshold_value)
{
//the metric name here is "file_length", you can change it to other values, but be sure that use the correct metric name in the query in azure monitor in next step.
telemetryClient.TrackMetric("file_length", file_length);
}
//wait for xx seconds, then calculate the size again.
System.Threading.Thread.Sleep(1000*30);
}
}
public static List<CloudFile> list_subdir(IListFileItem list)
{
CloudFileDirectory fileDirectory = (CloudFileDirectory)list;
IEnumerable<IListFileItem> fileList = fileDirectory.ListFilesAndDirectories();
foreach (IListFileItem listItem in fileList)
{
if (listItem.GetType() == typeof(CloudFileDirectory))
{
list_subdir(listItem);
}
else
{
if (listItem.GetType() == typeof(CloudFile))
{
files.Add((CloudFile)listItem);
}
}
}
return files;
}
}
5.Nav转到azure门户-> azure监视器->警报->新警报规则: 对于“资源”,选择您使用的应用程序见解。
对于条件,选择“自定义日志搜索”->,然后在“搜索”查询中,填写以下查询(注意:该名称是您在步骤4中定义的指标名称):>
customMetrics
| where name == "file_length"
| top 1 by timestamp desc
| project value
然后在警报逻辑中:基于=结果数,运算符=大于,阈值= 0。
然后为“基于...评估”,选择适当的“期间和频率”,出于测试目的,可以选择“期间”为10分钟,“频率”为5分钟。单击“完成”按钮以完成条件。
对于“操作”,请正确配置它,例如填写您的电子邮件地址和其他字段。
6。从Visual Studio运行控制台项目,如果文件共享中的文件总大小大于您指定的值,您将收到一个或多个(取决于步骤5中设置的“周期和频率”)警报电子邮件。
当前不支持此功能,请注意此user feedback。