powershell-logging.LogFile.ps1xml
<?xml version="1.0" encoding="utf-8"?> <Configuration> <ViewDefinitions> <View> <Name>LogFile</Name> <ViewSelectedBy> <TypeName>LogFile</TypeName> </ViewSelectedBy> <TableControl> <TableHeaders> <TableColumnHeader> <Label>Name</Label> <Alignment>left</Alignment> </TableColumnHeader> <TableColumnHeader> <Label>Active</Label> <Alignment>right</Alignment> </TableColumnHeader> <TableColumnHeader> <Label>Targets</Label> <Alignment>right</Alignment> </TableColumnHeader> <TableColumnHeader> <Label>LogLines</Label> <Alignment>left</Alignment> </TableColumnHeader> </TableHeaders> <TableRowEntries> <TableRowEntry> <TableColumnItems> <TableColumnItem> <PropertyName>Name</PropertyName> </TableColumnItem> <TableColumnItem> <PropertyName>Active</PropertyName> </TableColumnItem> <TableColumnItem> <ScriptBlock> $_.targets.Type </ScriptBlock> </TableColumnItem> <TableColumnItem> <ScriptBlock> $loglineString = ( $_.Loglines | Group-Object severity | Select-Object Count, Name | ForEach-Object -Process { "$($_.count)x $($_.Name)" } ) -join "; " if([string]::isNullOrEmpty($loglineString)){"-"} else{$loglineString} </ScriptBlock> </TableColumnItem> </TableColumnItems> </TableRowEntry> </TableRowEntries> </TableControl> </View> </ViewDefinitions> </Configuration> |