
168,163
Downloads
137,151
Downloads of v 6.6.0
1/30/2019
Last update
Contains the chocolatey package for metricbeat
To install metricbeat, run the following command from the command line or from PowerShell:
C:\> choco install metricbeat
To upgrade metricbeat, run the following command from the command line or from PowerShell:
C:\> choco upgrade metricbeat
Files
Hide- tools\chocolateybeforemodify.ps1
Show
Stop-Service metricbeat Start-Sleep -s 3
- tools\chocolateyinstall.ps1
Show
$ErrorActionPreference = 'Stop'; $packageName= 'metricbeat' $toolsDir = "$(Split-Path -parent $MyInvocation.MyCommand.Definition)" $url = 'https://artifacts.elastic.co/downloads/beats/metricbeat/metricbeat-6.6.0-windows-x86.zip' $url64 = 'https://artifacts.elastic.co/downloads/beats/metricbeat/metricbeat-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)/.." "metricbeat-*.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 = '34d0d10873902151c732c5942351dcf2890ebf3ec2314489eed89cc64986a9a4376f05af1ff806e56a44a448dae6bbb0ecad86b7838e47aaf915439e7f9b3498' checksumType = 'sha512' checksum64 = '98571eada95c08fa2274dff3edc81b73fbf2db3f5afaee86a0b91013da9aadacfe5ed36f510c2fd131573bb40e82d8a9e8fcefde6ef5e322e5704cfa776f5b13' 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= 'metricbeat' $toolsDir = "$(Split-Path -parent $MyInvocation.MyCommand.Definition)" $uninstallScript = Join-Path $toolsDir "uninstall-service-$packageName.ps1" Invoke-Expression $uninstallScript
Virus Scan Results
- metricbeat.6.6.0.nupkg (371cd71ba0fc) - ## / 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 |
---|---|---|---|
metricbeat 6.6.0 | 137151 | Wednesday, January 30, 2019 | approved |
metricbeat 6.5.4 | 5719 | Thursday, December 20, 2018 | approved |
metricbeat 6.5.3 | 3432 | Wednesday, December 12, 2018 | approved |
metricbeat 6.5.2 | 709 | Thursday, December 6, 2018 | approved |
metricbeat 6.5.1 | 284 | Tuesday, December 4, 2018 | approved |
metricbeat 6.5.0 | 1020 | Thursday, November 15, 2018 | approved |
metricbeat 6.4.3 | 460 | Wednesday, November 7, 2018 | approved |
metricbeat 6.4.2 | 1445 | Wednesday, October 3, 2018 | approved |
metricbeat 6.4.1 | 127 | Wednesday, September 19, 2018 | approved |
metricbeat 6.4.0 | 2212 | Friday, August 24, 2018 | approved |
Discussion for the metricbeat Package
Ground rules:
- This discussion is only about metricbeat and the metricbeat 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 metricbeat, 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.