Giter Site home page Giter Site logo

powershell's Introduction

powershell's People

Stargazers

 avatar Prabhugurudarshan Singh avatar muuk avatar @JaekelEDV avatar  avatar  avatar  avatar Joey Piccola avatar Maxime avatar Mike Veazie avatar  avatar Nicolas F. avatar Mike Dopp avatar  avatar John Capehart avatar

Watchers

James Cloos avatar Ben Taylor avatar

powershell's Issues

header failing during import-csv

The import-csv process fails when I am analyzing my iis logs, due to the header being null or empty. After doing some analysis, it certainly wasn't empty or null, but instead one of the header objects was null, and appeared at the last object in the headers array. So I fixed this by filtering out headers by piping that cmdlet's results to a where-object cmdlet. | where-object {$_ -notlike ''}

Not sure if this has anything to do with it because I'm not really an IIS guy, but my IIS logs were from a 2003 server.

More log formats in "Convert-IISLogsToObject" function

Hi, Ben

First of all, thanks a lot for powershell function "Convert-IISLogsToObject.ps1". Very useful.

After a while, I recalled that besides "W3C" IIS log format, which your function works with, we also have a few more log formats - IIS, NCSA and Custom (e.g., ODBC logging):
https://www.iis.net/learn/manage/provisioning-and-managing-iis/configure-logging-in-iis

I've tried to add support for IIS, NCSA plain text log formats to your function. Could you take a look, because I'm not so experienced in Powershell?
Modified function:

function Convert-IISLogsToObject {
<#
    .Synopsis
        Converts plain text IIS logs into a PS Object
    .DESCRIPTION
        Converts plain text IIS logs into a PS Object
    .NOTES
        More info about logging in IIS you can find there:
        https://www.iis.net/learn/manage/provisioning-and-managing-iis/configure-logging-in-iis
    .PARAMETER path
        Specifies path to IIS log files. 
    .PARAMETER logformat
        Specifies IIS log file format. The acceptable values for this parameter are: 
        "W3C", "IIS","NCSA"
    .EXAMPLE
        Get-ChildItem '<path to logs>\*.log' | Convert-IISLogsToObject -logformat IIS| Sort-Object c-ip -Unique
    .EXAMPLE
        Convert-IISLogsToObject -path (Get-ChildItem '<path to logs>\*log') -logformat W3C| Where-Object { $_.'cs-username' -eq '<userName>' } | Sort-Object c-ip -Unique
    .NOTES
        General notes
    .AUTHOR
        Ben Taylor - 09/07/2016
    .LINK
        http://bentaylor.work/2016/09/parsing-iis-logs-to-powershell-objects/
#>

    [CmdletBinding()]
    [OutputType([System.Management.Automation.PSCustomObject])]
    Param(

        [Parameter(Mandatory = $true, ValueFromPipeline = $true)]
        [ValidateScript({ Test-Path -Path $_ })]
        [string[]]$path,

        [Parameter(Mandatory = $true)]
        [ValidateNotNullOrEmpty()]
	[ValidateSet("NCSA", "W3C", "IIS")]
        [string]$logformat
    )

    Process {

    <#
    Define headers for IIS, NCSA log formats
    Headers are fixed for IIS and NCSA log formats
    #>
    #IIS
    ##Client IP address, User name, Date, Time, Service and instance, Server name, Server IP address, Time taken, Client bytes sent, Server bytes sent, Service status code, Windows status code, Request type, Target of operation, Parameters
    $IISheaders='c-ip', 'username', 'date', 'time', 'service', 'server', 's-ip', 'timetaken', 'c-bsent', 's-bsent', 'service-sc', 'windows-sc', 'request-type', 'target', 'parameters'
    #NCSA
    ##Remote host address, Remote log name (This value is always a hyphen), user name, Date, time, Greenwich mean time (GMT) offset, Request and protocol version, Service status code, Bytes sent
    $NCSAheaders='remote-hostaddr', 'remote-logname', 'username', 'date', 'time', 'GMToffset', 'request-method', 'request', 'protocol-version', 'service-sc', 'bytes-sent'

        switch ($logformat) { 
            "W3C"
                {
                  forEach($filePath in $path) {
                      $W3Cheaders = (Get-Content -Path $filePath -TotalCount 4 | Select-Object -First 1 -Skip 3) -replace '#Fields: ' -split ' '
                      Get-Content -Path $filePath | Select-String -Pattern '^#' -NotMatch | ConvertFrom-Csv -Delimiter ' ' -Header $W3Cheaders
                  }
                } 
            "IIS"
                {
                  forEach($filePath in $path) {
                      Get-Content -Path $filePath | ConvertFrom-Csv -Delimiter ',' -Header $IISheaders
                  }
                }
            "NCSA"
                {
                  forEach($filePath in $path) {
                      #Character set (in each log string) that represents Date, time and Greenwich mean time (GMT) offset, are modified to fit in defined Headers, e.g. [03/Feb/2017:09:44:14 +0200] replaced by 03/Feb/2017 09:44:14 +0200
                      #Character set (in each log string) that represents Request and protocol version, are modified to fit in defined Headers, e.g. "GET /2016-08-22-php7.html HTTP/1.1" replaced by GET /2016-08-22-php7.html HTTP/1.1
                      Get-Content -Path $filePath | ForEach-Object -Process {($_ -replace '\[(.*):(\d{2}:\d{2}:\d{2})\s([-+]\d+)\]','$1 $2 $3') -replace '\"(.*)\"','$1'}| ConvertFrom-Csv -Delimiter ' ' -Header $NCSAheaders
                  }
                } 
        }
    }
}

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.