web-dev-qa-db-ja.com

WindowsパフォーマンスカウンターをLogstash + Kibanaに送信する方法

Windowsサーバーのシステムリソースの監視を設定したいと思います。 Linuxの一般的な構成は、collectdデーモンを使用してシステムメトリック情報を取得することです。 collectdからのデータはlogstashで読み取ることができ、最終的にElastic Searchに入れてKibanaで表示できます。

これはいいことで、Linuxの世界ではうまく機能します。しかし、私はWindowsサーバーにこだわっており、同様のワークフローを実現するための最良のツールへのアドバイスが必要です。サイドノードとして、私は既にNxlogを使用してIISログをlogstashに送信しています。

6
angaran

「Graphiteで動作するツール」ページ http://graphite.readthedocs.org/en/latest/tools.html いくつかリストします。私はPowerShellスクリプト 'Graphite PowerShell関数' https://github.com/MattHodge/Graphite-PowerShell-Functions を試しましたが、うまく機能します。

edit私はあなたの質問を誤解しました、あなたはLogstashとKibanaについてのみ話していましたが、Graphiteについては話していませんでした。システムメトリックにLogstash + Kibanaを使用していませんが、Statsd + Graphiteを使用しています。だから私の答えがあなたに有効であるかどうかはわかりませんが、Graphite Logstash入力を使用する場合 http://logstash.net/docs/1.4.2/ これらのツールを使用できます。

2
daks

Elasticは topbeat と呼ばれるツールを提供します。これはあなたが探していることを実行します。 CPU、メモリ、ディスクの統計情報をElasticsearchまたはLogstashに直接送信します。

メトリクスの例はgithubの elastic/topbeat にあります。

4
tommy_o

この問題を解決するためにPowershell 5Filebeatを使用しています。これは数時間以上テストされておらず、その概念実証であることに注意してください。

#Version 0.2

#Todo:
#* Notify on fail
#Function to get Sql Server Counters
function Get-SqlServerData()
{
    $Data = get-counter ($SqlServerCounterPrefix + ":Buffer Manager\Buffer cache hit ratio"), 
                        ($SqlServerCounterPrefix + ":Buffer Manager\Page life expectancy"), 
                        ($SqlServerCounterPrefix + ":Access Methods\Page splits/sec")
    #$Data
    $TransformedData = $Data.CounterSamples | Select-Object -Property Path, CookedValue

    $object = New-Object psobject

    $object | Add-Member -NotePropertyName 'Timestamp' -NotePropertyValue $Data.Timestamp
    foreach ($row in $TransformedData)
    {
        $path = $row.Path
        $name = $path.Substring($path.LastIndexOf("\") + 1)
        $object | Add-Member -NotePropertyName $name -NotePropertyValue $row.CookedValue
    }
    $object
}


#Parameters
$SqlServerCounterPrefix = '\MSSQL$MSSQL_2008'
$Type = "SQLServerStatistics"
$Data = Get-SqlServerData
$Path = "Z:\Temp\PowershellTest\"
$AddTimeStamp = $false
$NumberOfDaysToKeepFiles = 7
$FileExtension = "csv"

#Variables (do not change)
$Date = Get-Date -format yyyy-MM-dd
$Timestamp = Get-Date
$FilenameRegex = "^" + $Type + "_(?<Date>\d{4}-\d{2}-\d{2})(?:\(\d\))?\." + $FileExtension + "$"
$Suffix = ''
$Counter = 0
$Done = $false

if ($AddTimeStamp -eq $true)
{
    $Data | ForEach-Object {
        $_ | Add-Member -NotePropertyName 'Timestamp' -NotePropertyValue $Timestamp
    }
}

#Try to export file if it fails (the headers have changed) add a (number)
while($Done -eq $false -and $Counter -le 9)
{
    Try
    {
        $Filename = $Type + "_" + $Date + $Suffix + "." + $FileExtension
        Write-Host "Trying to write $Filename"
        $FilePath = $Path + $Filename
        $Data | Export-Csv -Path $FilePath -Delimiter ";" -NoTypeInformation -Append
        $Done = $true
    }
    Catch [Exception]
    {
        Write-Host "Failed to create file " + $_.Exception.GetType().FullName, $_.Exception.Message
        $Counter++
        $Suffix = '(' + $Counter + ')'
    }
}

#Notify if we failed
if ($Done -eq $false)
{
    #Todo: Notify that we failed
}

#Cleanup
$Files = Get-ChildItem $Path -Filter ("*." + $FileExtension)
$Files | Foreach-Object {
    $FilePath = $_.FullName
    $Filename = [System.IO.Path]::GetFileName($FilePath)

    $Match = [regex]::Match($Filename, $FilenameRegex)

    Write-Host $FilePath
    Write-Host $Filename

    if ($Match.Success -eq $true)
    {
        Write-Host $Match.Groups["Date"].Value
        $FileDate = [datetime]::ParseExact($Match.Groups["Date"].Value, "yyyy-MM-dd", $null)
        $TimeSince = New-TimeSpan -Start $FileDate -End (Get-Date).Date
        if ($TimeSince.TotalDays -ge $NumberOfDaysToKeepFiles)
        {
            Remove-Item $FilePath
        }
    }
}

これにより、$ Pathディレクトリにcsvファイルが作成されます。カウンターを変更すると、名前に(1-9)を含む新しいファイルが作成されます。

更新バージョンは次の場所にあります https://Gist.github.com/AnderssonPeter/8261e255630d6f672ba5bc80f51b017f

0
Peter