@365admin/office365-auditlogparser 中文文档教程
解析 CSV 文件
Install
$ npm install --save @365admin/office365-auditlogparser
How to enable audit logging
在Office 365 Security & 中搜索审核日志 Compliance Center
Usage
以这种格式解析 CSV 数据
CreationDate,UserIds,Operations,AuditData
parser = require("@365admin/office365-auditlogparser")
parser.parse(__dirname+'/sampleauditlog.csv', function (err,lines){
if (err) throw err
console.log(lines)
process.exit(0)
})
License
MIT © Niels Gregers Johansen
Parse CSV file
Install
$ npm install --save @365admin/office365-auditlogparser
How to enable audit logging
Search the audit log in the Office 365 Security & Compliance Center
Usage
Parse CSV data in this format
CreationDate,UserIds,Operations,AuditData
parser = require("@365admin/office365-auditlogparser")
parser.parse(__dirname+'/sampleauditlog.csv', function (err,lines){
if (err) throw err
console.log(lines)
process.exit(0)
})
License
MIT © Niels Gregers Johansen