我发现很多关于日志解析器的线程,但没有一个能满足我的愿望,
我需要将此查询应用于日志解析器 select * from security
并获取事件行,然后逐行读取它们,知道我访问哪一列......
请帮忙...
什么应该下来: 1.通过 LogParser.dll 查询 Windows 事件(使用 MSUtill 库) 2.获取并将行放入任何容器中 3.逐行读取 4.能够分隔行的每个单元格,并读取它们分别像访问事件 ID 列或消息列...
——对问题
有东西,但我没有得到它们,例如,这个人使用这个,取单行,但我需要多行,我想知道接下来要转换什么:| 我需要使用什么类
LogQueryClass logger = new LogQueryClassClass();
COMIISW3CInputContextClass inputContext = new COMIISW3CInputContextClassClass();
string query = // i change it during test
ILogRecord record = logger.Execute(query, inputContext).getRecord();
或其他用途:似乎也返回单个结果
// prepare LogParser Recordset & Record objects
ILogRecordset rsLP = null;
ILogRecord rowLP = null;
LogQueryClassClass LogParser = null;
COMW3CInputContextClassClass W3Clog = null;
double UsedBW = 0;
int Unitsprocessed;
double sizeInBytes;
string strSQL = null;
LogParser = new LogQueryClassClass();
W3Clog = new COMW3CInputContextClassClass();
try
{
//W3C Logparsing SQL. Replace this SQL query with whatever
//you want to retrieve. The example below
//will sum up all the bandwidth
//Usage of a specific folder with name
//"userID". Download Log Parser 2.2
//from Microsoft and see sample queries.
strSQL = //the query (i changed it during test)
// run the query against W3C log
rsLP = LogParser.Execute(strSQL, W3Clog);
rowLP = rsLP.getRecord();
Unitsprocessed = rsLP.inputUnitsProcessed;
if (rowLP.getValue(0).ToString() == "0" ||
rowLP.getValue(0).ToString() == "")
{
//Return 0 if an err occured
UsedBW = 0;
return UsedBW;
}
//Bytes to MB Conversion
double Bytes = Convert.ToDouble(rowLP.getValue(0).ToString());
UsedBW = Bytes / (1024 * 1024);
我找到的最好的查询是这个,它在寄存器内搜索(我没有原始查询,因为我改变了它
ILogRecordset rs = null;
try
{
LogQueryClass qry = new LogQueryClass();
COMRegistryInputContextClass registryFormat = new COMRegistryInputContextClass();
string query = //Chnaged it
rs = qry.Execute(query, registryFormat);
for (; !rs.atEnd(); rs.moveNext())
Console.WriteLine(rs.getRecord().toNativeString(","));
}
finally
{
rs.close();
}
还有一些东西,似乎不是将数据作为活动对象返回给 SQL:|
因为我要编写服务,所以我希望尽可能少地访问数据库以交换数据,只存储当前数据
- 编辑:
让我补充一下,我的查询(使用传递“log parser.exe”参数)是这样的,但是在服务内部调用 exe 文件对我来说太粗鲁了。
myProc.StartInfo.Arguments = " \"select * INTO AuditLogParser from \\\\" + Dns.GetHostName() +
"\\security WHERE TimeGenerated >= '" + startDate +
"' and TimeGenerated <'" + endDate +
"' and (eventid=560 or eventid=540)\" -o:SQL -server:\"" +
Dns.GetHostName() +
"\\sqlexpress\" -database:SecurityLog -driver:\"SQL Server\" -username:TrainAudit -password:Password.110 -createtable:OFF";