
150,804
Downloads
15,886
Downloads of v 6.6.0
1/30/2019
Last update
Contains the chocolatey package for filebeat
To install filebeat, run the following command from the command line or from PowerShell:
C:\> choco install filebeat
To upgrade filebeat, run the following command from the command line or from PowerShell:
C:\> choco upgrade filebeat
Files
Hide- tools\chocolateybeforemodify.ps1
Show
Stop-Service filebeat Start-Sleep -s 3
- tools\chocolateyinstall.ps1
Show
$ErrorActionPreference = 'Stop'; $packageName= 'filebeat' $toolsDir = "$(Split-Path -parent $MyInvocation.MyCommand.Definition)" $url = 'https://artifacts.elastic.co/downloads/beats/filebeat/filebeat-6.6.0-windows-x86.zip' $url64 = 'https://artifacts.elastic.co/downloads/beats/filebeat/filebeat-6.6.0-windows-x86_64.zip' $installationPath = $toolsDir # Chocolatey seems to copy the old lib folder in case of upgrade. Uninstall first. $zipContentGlob=dir "$($installationPath)/.." "filebeat-*.zip.txt" $zipContentFile=$zipContentGlob.Name $folder = ($zipContentFile -replace ".zip.txt","") + "\\" if (($zipContentGlob -ne $null)) { $zipContentFile $zipContents=(get-content $zipContentGlob.FullName) -split [environment]::NewLine for ($i = $zipContents.Length; $i -gt 0; $i--) { $fileInZip = $zipContents[$i] if ($fileInZip -ne $null -and $fileInZip.Trim() -ne '') { $fileToRemove = $fileInZip -replace $folder,"" Remove-Item -Path "$fileToRemove" -ErrorAction SilentlyContinue -Recurse -Force } } Remove-Item -Path $zipContentGlob.FullName -ErrorAction SilentlyContinue -Recurse -Force } $folder = if(Get-ProcessorBits 64) { [io.path]::GetFileNameWithoutExtension($url64) } else { [io.path]::GetFileNameWithoutExtension($url) } $packageArgs = @{ packageName = $packageName unzipLocation = $installationPath url = $url url64bit = $url64 checksum = 'f99ca1d88ac76f2d283d9a03886b396fd825f34935ecb924c55c34d6440883e67c77b49b8139150794ded5b5fe5eb60a3e87a06d1ff438a681197a1c29aa467a' checksumType = 'sha512' checksum64 = '6107fa476c81b46a40938fdd7560c4de8be28fa33b9346bf3e91dd9dbdbaf0bf740e45903f9d866eab4525bdd48d5d1876cf3be0e19b55d7aab08b0dd5753f87' checksumType64= 'sha512' specificFolder = $folder } Install-ChocolateyZipPackage @packageArgs # Move everything from the subfolder to the main tools directory $subFolder = Join-Path $installationPath (Get-ChildItem $installationPath $folder | ?{ $_.PSIsContainer }) Get-ChildItem $subFolder -Recurse | ?{$_.PSIsContainer } | Move-Item -Destination $installationPath Get-ChildItem $subFolder | ?{$_.PSIsContainer -eq $false } | Move-Item -Destination $installationPath Remove-Item "$subFolder" Invoke-Expression $(Join-Path $installationPath "install-service-$($packageName).ps1")
- tools\chocolateyuninstall.ps1
Show
$packageName= 'filebeat' $toolsDir = "$(Split-Path -parent $MyInvocation.MyCommand.Definition)" $uninstallScript = Join-Path $toolsDir "uninstall-service-$packageName.ps1" Invoke-Expression $uninstallScript
Virus Scan Results
- filebeat.6.6.0.nupkg (a286ea6eeb01) - ## / 60 - Log in or click on link to see number of positives
Dependencies
This package has no dependencies.
Package Maintainer(s)
Software Author(s)
Tags
Version History
Version | Downloads | Last updated | Status |
---|---|---|---|
filebeat 6.6.0 | 15886 | Wednesday, January 30, 2019 | approved |
filebeat 6.5.4 | 7859 | Thursday, December 20, 2018 | approved |
filebeat 6.5.3 | 1541 | Wednesday, December 12, 2018 | approved |
filebeat 6.5.2 | 1178 | Thursday, December 6, 2018 | approved |
filebeat 6.5.1 | 570 | Tuesday, December 4, 2018 | approved |
filebeat 6.5.0 | 3724 | Thursday, November 15, 2018 | approved |
filebeat 6.4.3 | 1411 | Wednesday, November 7, 2018 | approved |
filebeat 6.4.2 | 1575 | Wednesday, October 3, 2018 | approved |
filebeat 6.4.1 | 279 | Wednesday, September 19, 2018 | approved |
filebeat 6.4.0 | 4760 | Friday, August 24, 2018 | approved |
Discussion for the filebeat Package
Ground rules:
- This discussion is only about filebeat and the filebeat package. If you have feedback for Chocolatey, please contact the google group.
- This discussion will carry over multiple versions. If you have a comment about a particular version, please note that in your comments.
- The maintainers of this Chocolatey Package will be notified about new comments that are posted to this Disqus thread, however, it is NOT a guarantee that you will get a response. If you do not hear back from the maintainers after posting a message below, please follow up by using the link on the left side of this page or follow this link to contact maintainers. If you still hear nothing back, please follow the package triage process.
- Tell us what you love about the package or filebeat, or tell us what needs improvement.
- Share your experiences with the package, or extra configuration or gotchas that you've found.
- If you use a url, the comment will be flagged for moderation until you've been whitelisted. Disqus moderated comments are approved on a weekly schedule if not sooner. It could take between 1-5 days for your comment to show up.