Downloads:
685,631
Downloads of v 0.6.0.20190314:
248
Last Update:
14 Mar 2019
Package Maintainer(s):
Software Author(s):
- Martin Lindhe
- Calle Pettersson
Tags:
prometheus-wmi-exporter.install prometheus wmi exporter admin monitoring- Software Specific:
- Software Site
- Software Source
- Software License
- Package Specific:
- Package Source
- Package outdated?
- Package broken?
- Contact Maintainers
- Contact Site Admins
- Software Vendor?
- Report Abuse
- Download
Prometheus WMI exporter (Install)
This is not the latest version of Prometheus WMI exporter (Install) available.
- 1
- 2
- 3
0.6.0.20190314 | Updated: 14 Mar 2019
- Software Specific:
- Software Site
- Software Source
- Software License
- Package Specific:
- Package Source
- Package outdated?
- Package broken?
- Contact Maintainers
- Contact Site Admins
- Software Vendor?
- Report Abuse
- Download
Downloads:
685,631
Downloads of v 0.6.0.20190314:
248
Maintainer(s):
Software Author(s):
- Martin Lindhe
- Calle Pettersson
Prometheus WMI exporter (Install) 0.6.0.20190314
This is not the latest version of Prometheus WMI exporter (Install) available.
Legal Disclaimer: Neither this package nor Chocolatey Software, Inc. are affiliated with or endorsed by Martin Lindhe, Calle Pettersson. The inclusion of Martin Lindhe, Calle Pettersson trademark(s), if any, upon this webpage is solely to identify Martin Lindhe, Calle Pettersson goods or services and not for commercial purposes.
- 1
- 2
- 3
All Checks are Passing
3 Passing Tests
Deployment Method: Individual Install, Upgrade, & Uninstall
To install Prometheus WMI exporter (Install), run the following command from the command line or from PowerShell:
To upgrade Prometheus WMI exporter (Install), run the following command from the command line or from PowerShell:
To uninstall Prometheus WMI exporter (Install), run the following command from the command line or from PowerShell:
Deployment Method:
This applies to both open source and commercial editions of Chocolatey.
1. Enter Your Internal Repository Url
(this should look similar to https://community.chocolatey.org/api/v2/)
2. Setup Your Environment
1. Ensure you are set for organizational deployment
Please see the organizational deployment guide
2. Get the package into your environment
Option 1: Cached Package (Unreliable, Requires Internet - Same As Community)-
Open Source or Commercial:
- Proxy Repository - Create a proxy nuget repository on Nexus, Artifactory Pro, or a proxy Chocolatey repository on ProGet. Point your upstream to https://community.chocolatey.org/api/v2/. Packages cache on first access automatically. Make sure your choco clients are using your proxy repository as a source and NOT the default community repository. See source command for more information.
- You can also just download the package and push it to a repository Download
-
Open Source
-
Download the package:
Download - Follow manual internalization instructions
-
-
Package Internalizer (C4B)
-
Run: (additional options)
choco download prometheus-wmi-exporter.install --internalize --version=0.6.0.20190314 --source=https://community.chocolatey.org/api/v2/
-
For package and dependencies run:
choco push --source="'INTERNAL REPO URL'"
- Automate package internalization
-
Run: (additional options)
3. Copy Your Script
choco upgrade prometheus-wmi-exporter.install -y --source="'INTERNAL REPO URL'" --version="'0.6.0.20190314'" [other options]
See options you can pass to upgrade.
See best practices for scripting.
Add this to a PowerShell script or use a Batch script with tools and in places where you are calling directly to Chocolatey. If you are integrating, keep in mind enhanced exit codes.
If you do use a PowerShell script, use the following to ensure bad exit codes are shown as failures:
choco upgrade prometheus-wmi-exporter.install -y --source="'INTERNAL REPO URL'" --version="'0.6.0.20190314'"
$exitCode = $LASTEXITCODE
Write-Verbose "Exit code was $exitCode"
$validExitCodes = @(0, 1605, 1614, 1641, 3010)
if ($validExitCodes -contains $exitCode) {
Exit 0
}
Exit $exitCode
- name: Install prometheus-wmi-exporter.install
win_chocolatey:
name: prometheus-wmi-exporter.install
version: '0.6.0.20190314'
source: INTERNAL REPO URL
state: present
See docs at https://docs.ansible.com/ansible/latest/modules/win_chocolatey_module.html.
chocolatey_package 'prometheus-wmi-exporter.install' do
action :install
source 'INTERNAL REPO URL'
version '0.6.0.20190314'
end
See docs at https://docs.chef.io/resource_chocolatey_package.html.
cChocoPackageInstaller prometheus-wmi-exporter.install
{
Name = "prometheus-wmi-exporter.install"
Version = "0.6.0.20190314"
Source = "INTERNAL REPO URL"
}
Requires cChoco DSC Resource. See docs at https://github.com/chocolatey/cChoco.
package { 'prometheus-wmi-exporter.install':
ensure => '0.6.0.20190314',
provider => 'chocolatey',
source => 'INTERNAL REPO URL',
}
Requires Puppet Chocolatey Provider module. See docs at https://forge.puppet.com/puppetlabs/chocolatey.
4. If applicable - Chocolatey configuration/installation
See infrastructure management matrix for Chocolatey configuration elements and examples.
This package is likely a meta/virtual (*) or an installer (*.install) or portable (*.portable) application package.
- Meta/virtual (*) - has a dependency on the *.install or the *.portable package - it is provided for discoverability and for other packages to take a dependency on.
- Portable (*.portable/*.commandline (deprecated naming convention)/*.tool (deprecated naming convention)) - usually zips or archives that require no administrative access to install.
- Install (*.install/*.app (deprecated naming convention)) - uses native installers, usually requires administrative access to install.
Learn more about chocolatey's distinction of installed versus portable apps and/or learn about this kind of package.
This package was approved as a trusted package on 14 Mar 2019.
Prometheus exporter for Windows machines, using the WMI (Windows Management Instrumentation).
Package parameters
The following package parameters can be set:
EnabledCollectors
- A comma-separated list of collectors to enable in the exporter. Options and defaults in "Collectors" section below.ListenAddress
- The IP address to bind to. Defaults to 0.0.0.0.ListenPort
- The port to bind to. Defaults to 9182.MetricsPath
- The path at which to serve metrics. Defaults to/metrics
.TextFileDir
- Specifies a directory for the textfile collector (equivalent to the--collector.textfile.directory
flag).ExtraFlags
- Allows passing full CLI flags. Defaults to an empty string.
These parameters can be passed to the installer with the use of --params
.
For example: --params '"/EnabledCollectors:cpu,dns,iis /ListenPort:9182"'
.
Collectors
A table of the provided collectors, including those enabled by default, is available at the project page here:
https://github.com/martinlindhe/wmi_exporter/blob/v0.6.0/README.md#collectors
More Information
For more information, see the project README:
https://github.com/martinlindhe/wmi_exporter/blob/v0.6.0/README.md
$ErrorActionPreference = 'Stop';
$packageName = 'prometheus-wmi-exporter.install'
$softwareName = 'WMI Exporter*'
$installerType = 'MSI'
$silentArgs = '/quiet /norestart'
$validExitCodes = @(0, 3010, 1605, 1614, 1641)
if ($installerType -ne 'MSI') {
$validExitCodes = @(0)
}
$uninstalled = $false
[array]$key = Get-UninstallRegistryKey -SoftwareName $softwareName
if ($key.Count -eq 1) {
$key | % {
$file = "$($_.UninstallString)"
if ($installerType -eq 'MSI') {
$silentArgs = "$($_.PSChildName) $silentArgs"
$file = ''
}
Uninstall-ChocolateyPackage -PackageName $packageName `
-FileType $installerType `
-SilentArgs "$silentArgs" `
-ValidExitCodes $validExitCodes `
-File "$file"
}
} elseif ($key.Count -eq 0) {
Write-Warning "$packageName has already been uninstalled by other means."
} elseif ($key.Count -gt 1) {
Write-Warning "$key.Count matches found!"
Write-Warning "To prevent accidental data loss, no programs will be uninstalled."
Write-Warning "Please alert package maintainer the following keys were matched:"
$key | % {Write-Warning "- $_.DisplayName"}
}
Log in or click on link to see number of positives.
- prometheus-wmi-exporter.install.0.6.0.20190314.nupkg (109c6dc32d5e) - ## / 56
- wmi_exporter-0.6.0-amd64.msi (56f8dece5a71) - ## / 56
- wmi_exporter-0.6.0-386.msi (f5fb79cdede5) - ## / 57
In cases where actual malware is found, the packages are subject to removal. Software sometimes has false positives. Moderators do not necessarily validate the safety of the underlying software, only that a package retrieves software from the official distribution point and/or validate embedded software against official distribution point (where distribution rights allow redistribution).
Chocolatey Pro provides runtime protection from possible malware.
Add to Builder | Version | Downloads | Last Updated | Status |
---|---|---|---|---|
Prometheus WMI exporter (Install) 0.12.0 | 150101 | Monday, May 25, 2020 | Approved | |
Prometheus WMI exporter (Install) 0.11.1 | 4097 | Monday, April 20, 2020 | Approved | |
Prometheus WMI exporter (Install) 0.11.0 | 1745 | Saturday, April 4, 2020 | Approved | |
Prometheus WMI exporter (Install) 0.10.2 | 69007 | Friday, March 6, 2020 | Approved | |
Prometheus WMI exporter (Install) 0.9.0 | 48188 | Thursday, October 10, 2019 | Approved | |
Prometheus WMI exporter (Install) 0.8.3 | 84653 | Friday, August 30, 2019 | Approved | |
Prometheus WMI exporter (Install) 0.8.1 | 10211 | Saturday, August 10, 2019 | Approved | |
Prometheus WMI exporter (Install) 0.8.0 | 1426 | Monday, August 5, 2019 | Approved | |
Prometheus WMI exporter (Install) 0.7.0 | 27918 | Thursday, March 14, 2019 | Approved | |
Prometheus WMI exporter (Install) 0.6.0.20190314 | 248 | Thursday, March 14, 2019 | Approved | |
Prometheus WMI exporter (Install) 0.6.0 | 25389 | Saturday, February 2, 2019 | Approved | |
Prometheus WMI exporter (Install) 0.5.0 | 82047 | Monday, November 19, 2018 | Approved | |
Prometheus WMI exporter (Install) 0.4.4 | 6146 | Tuesday, November 13, 2018 | Approved | |
Prometheus WMI exporter (Install) 0.4.3 | 80122 | Friday, August 17, 2018 | Approved | |
Prometheus WMI exporter (Install) 0.4.2 | 8794 | Saturday, August 4, 2018 | Approved | |
Prometheus WMI exporter (Install) 0.4.1 | 860 | Friday, August 3, 2018 | Approved | |
Prometheus WMI exporter (Install) 0.4.0 | 896 | Thursday, August 2, 2018 | Approved | |
Prometheus WMI exporter (Install) 0.3.4 | 1936 | Monday, July 30, 2018 | Approved | |
Prometheus WMI exporter (Install) 0.3.3 | 25016 | Friday, May 25, 2018 | Approved | |
Prometheus WMI exporter (Install) 0.3.2 | 9419 | Tuesday, May 1, 2018 | Approved | |
Prometheus WMI exporter (Install) 0.3.0 | 9053 | Friday, April 6, 2018 | Approved | |
Prometheus WMI exporter (Install) 0.2.10 | 4039 | Tuesday, March 27, 2018 | Approved | |
Prometheus WMI exporter (Install) 0.2.8 | 9339 | Thursday, December 14, 2017 | Approved | |
Prometheus WMI exporter (Install) 0.2.7 | 22232 | Sunday, October 8, 2017 | Approved | |
Prometheus WMI exporter (Install) 0.2.6 | 1233 | Monday, July 17, 2017 | Approved | |
Prometheus WMI exporter (Install) 0.2.3 | 1434 | Friday, May 19, 2017 | Approved |
-
- chocolatey-core.extension (≥ 1.1.0)
Ground Rules:
- This discussion is only about Prometheus WMI exporter (Install) and the Prometheus WMI exporter (Install) 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 Prometheus WMI exporter (Install), 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.