config.file# windows_exporter
A Prometheus exporter for Windows machines.
Collectors
Name | Description | Enabled by default |
---|---|---|
ad | Active Directory Domain Services | |
adcs | Active Directory Certificate Services | |
adfs | Active Directory Federation Services | |
cache | Cache metrics | |
cpu | CPU usage | ✓ |
cpu_info | CPU Information | |
cs | «Computer System» metrics (system properties, num cpus/total memory) | |
container | Container metrics | |
diskdrive | Diskdrive metrics | |
dfsr | DFSR metrics | |
dhcp | DHCP Server | |
dns | DNS Server | |
exchange | Exchange metrics | |
filetime | FileTime metrics | |
fsrmquota | Microsoft File Server Resource Manager (FSRM) Quotas collector | |
hyperv | Hyper-V hosts | |
iis | IIS sites and applications | |
license | Windows license status | |
logical_disk | Logical disks, disk I/O | ✓ |
memory | Memory usage metrics | ✓ |
mscluster | MSCluster metrics | |
msmq | MSMQ queues | |
mssql | SQL Server Performance Objects metrics | |
netframework | .NET Framework metrics | |
net | Network interface I/O | ✓ |
os | OS metrics (memory, processes, users) | ✓ |
pagefile | pagefile metrics | |
performancecounter | Custom performance counter metrics | |
physical_disk | physical disk metrics | ✓ |
printer | Printer metrics | |
process | Per-process metrics | |
remote_fx | RemoteFX protocol (RDP) metrics | |
scheduled_task | Scheduled Tasks metrics | |
service | Service state metrics | ✓ |
smb | SMB Server | |
smbclient | SMB Client | |
smtp | IIS SMTP Server | |
system | System calls | ✓ |
tcp | TCP connections | |
terminal_services | Terminal services (RDS) | |
textfile | Read prometheus metrics from a text file | |
thermalzone | Thermal information | |
time | Windows Time Service | |
udp | UDP connections | |
update | Windows Update Service | |
vmware | Performance counters installed by the Vmware Guest agent |
See the linked documentation on each collector for more information on reported metrics, configuration settings and usage examples.
Filtering enabled collectors
The windows_exporter
will expose all metrics from enabled collectors by default. This is the recommended way to collect metrics to avoid errors when comparing metrics of different families.
For advanced use the windows_exporter
can be passed an optional list of collectors to filter metrics. The collect[]
parameter may be used multiple times. In Prometheus configuration you can use this syntax under the scrape config.
params:
collect[]:
- foo
- bar
This can be useful for having different Prometheus servers collect specific metrics from nodes.
Flags
windows_exporter accepts flags to configure certain behaviours. The ones configuring the global behaviour of the exporter are listed below, while collector-specific ones are documented in the respective collector documentation above.
Flag | Description | Default value |
---|---|---|
--web.listen-address |
host:port for exporter. | :9182 |
--telemetry.path |
URL path for surfacing collected metrics. | /metrics |
--collectors.enabled |
Comma-separated list of collectors to use. Use [defaults] as a placeholder which gets expanded containing all the collectors enabled by default. |
[defaults] |
--scrape.timeout-margin |
Seconds to subtract from the timeout allowed by the client. Tune to allow for overhead or high loads. | 0.5 |
--web.config.file |
A web config for setting up TLS and Auth | None |
--config.file |
Using a config file from path or URL | None |
--log.file |
Output file of log messages. One of [stdout, stderr, eventlog, <path to log file>] NOTE: The MSI installer will add a default argument to the installed service setting this to eventlog |
stderr |
Installation
The latest release can be downloaded from the releases page.
All binaries and installation packages are signed with an self-signed certificate. The public key can be found here.
Once import into the trusted root certificate store, the binaries and installation packages will be trusted.
Each release provides a .msi installer. The installer will setup the windows_exporter as a Windows service, as well as create an exception in the Windows Firewall.
If the installer is run without any parameters, the exporter will run with default settings for enabled collectors, ports, etc.
The installer provides a configuration file to customize the exporter.
The configuration file
- is located in the same directory as the exporter executable.
- has the YAML format and is provided with the
--config.file
parameter. - can be used to enable or disable collectors, set collector-specific parameters, and set global parameters.
The following parameters are available:
Name | Description |
---|---|
ENABLED_COLLECTORS |
As the --collectors.enabled flag, provide a comma-separated list of enabled collectors |
CONFIG_FILE |
Use the --config.file flag to specify a config file. If empty, no config file will be set. The special value config.yaml set the path to the config.yaml at install dir |
LISTEN_ADDR |
The IP address to bind to. Defaults to an empty string. (any local address) |
LISTEN_PORT |
The port to bind to. Defaults to 9182 . |
METRICS_PATH |
The path at which to serve metrics. Defaults to /metrics |
TEXTFILE_DIRS |
Use the --collector.textfile.directories flag to specify one or more directories, separated by commas, where the collector should read text files containing metrics |
REMOTE_ADDR |
Allows setting comma separated remote IP addresses for the Windows Firewall exception (allow list). Defaults to an empty string (any remote address). |
EXTRA_FLAGS |
Allows passing full CLI flags. Defaults to an empty string. For --collectors.enabled and --config.file , use the specialized properties ENABLED_COLLECTORS and CONFIG_FILE |
ADDLOCAL |
Enables features within the windows_exporter installer. Supported values: FirewallException |
REMOVE |
Disables features within the windows_exporter installer. Supported values: FirewallException |
APPLICATIONFOLDER |
Directory to install windows_exporter. Defaults to C:\Program Files\windows_exporter |
Parameters are sent to the installer via msiexec
.
On PowerShell, the --%
should be passed before defining properties.
Example invocations:
msiexec /i <path-to-msi-file> --% ENABLED_COLLECTORS=os,iis LISTEN_PORT=5000
Example service collector with a custom query.
msiexec /i <path-to-msi-file> --% ENABLED_COLLECTORS=os,service EXTRA_FLAGS="--collectors.exchange.enabled=""ADAccessProcesses"""
Define a config file.
msiexec /i <path-to-msi-file> --% CONFIG_FILE="D:\config.yaml"
Alternative install directory
msiexec /i <path-to-msi-file> --% ADDLOCAL=FirewallException APPLICATIONFOLDER="F:\Program Files\windows_exporter"
On some older versions of Windows,
you may need to surround parameter values with double quotes to get the installation command parsing properly:
msiexec /i C:\Users\Administrator\Downloads\windows_exporter.msi --% ENABLED_COLLECTORS="ad,iis,logon,memory,process,tcp,textfile,thermalzone" TEXTFILE_DIRS="C:\custom_metrics\"
To install the exporter with creating a firewall exception, use the following command:
msiexec /i <path-to-msi-file> --% ADDLOCAL=FirewallException
PowerShell versions 7.3 and above require PSNativeCommandArgumentPassing to be set to Legacy
when using --% EXTRA_FLAGS
:
$PSNativeCommandArgumentPassing = 'Legacy' msiexec /i <path-to-msi-file> ENABLED_COLLECTORS=os,service --% EXTRA_FLAGS="--collectors.exchange.enabled=""ADAccessProcesses"""
Docker Implementation
The windows_exporter can be run as a Docker container. The Docker image is available on
- Docker Hub:
docker.io/prometheuscommunity/windows-exporter
- GitHub Container Registry:
ghcr.io/prometheus-community/windows-exporter
- quay.io Registry:
quay.io/prometheuscommunity/windows-exporter
Tags
The Docker image is tagged with the version of the exporter. The latest
tag is also available and points to the latest release.
Additionally, a flavor hostprocess
with -hostprocess
as suffix is based on the https://github.com/microsoft/windows-host-process-containers-base-image
which is designed to run as a Windows host process container. The size of that images is smaller than the default one.
Kubernetes Implementation
See detailed steps to install on Windows Kubernetes here.
Supported versions
windows_exporter
supports Windows Server versions 2016 and later, and desktop Windows version 10 and 11 (21H2 or later).
Windows Server 2012 and 2012R2 are supported as best-effort only, but not guaranteed to work.
Usage
go get -u github.com/prometheus/promu
go get -u github.com/prometheus-community/windows_exporter
cd $env:GOPATH/src/github.com/prometheus-community/windows_exporter
promu build -v
.\windows_exporter.exe
The prometheus metrics will be exposed on localhost:9182
HTTP Endpoints
windows_exporter provides the following HTTP endpoints:
/metrics
: Exposes metrics in the Prometheus text format./health
: Returns 200 OK when the exporter is running./debug/pprof/
: Exposes the pprof endpoints. Only, if--debug.enabled
is set.
Examples
Enable only service collector and specify a custom query
.\windows_exporter.exe --collectors.enabled "service" --collector.service.include="windows_exporter"
Enable only process collector and specify a custom query
.\windows_exporter.exe --collectors.enabled "process" --collector.process.include="firefox.+"
When there are multiple processes with the same name, WMI represents those after the first instance as process-name#index
. So to get them all, rather than just the first one, the regular expression must use .+
. See process for more information.
Using [defaults] with --collectors.enabled
argument
Using [defaults]
with --collectors.enabled
argument which gets expanded with all default collectors.
.\windows_exporter.exe --collectors.enabled "[defaults],process,container"
This enables the additional process and container collectors on top of the defaults.
Using a configuration file
YAML configuration files can be specified with the --config.file
flag. e.g. .\windows_exporter.exe --config.file=config.yml
. If you are using the absolute path, make sure to quote the path, e.g. .\windows_exporter.exe --config.file="C:\Program Files\windows_exporter\config.yml"
It is also possible to load the configuration from a URL. e.g. .\windows_exporter.exe --config.file="https://example.com/config.yml"
If you need to skip TLS verification, you can use the --config.file.insecure-skip-verify
flag. e.g. .\windows_exporter.exe --config.file="https://example.com/config.yml" --config.file.insecure-skip-verify
collectors: enabled: cpu,net,service collector: service: include: windows_exporter log: level: warn
An example configuration file can be found here.
Configuration file notes
Configuration file values can be mixed with CLI flags. E.G.
.\windows_exporter.exe --collectors.enabled=cpu,logon
CLI flags enjoy a higher priority over values specified in the configuration file.
License
Under MIT
- prometheus
- alertmanager
- blackbox_exporter
- consul_exporter
- graphite_exporter
- memcached_exporter
- mysqld_exporter
- node_exporter
- promlens
- pushgateway
- statsd_exporter
We provide precompiled binaries and Docker images
for most officially maintained Prometheus components. If a component is
not listed here, check the respective repository on Github for further
instructions.
There is also a constantly growing number of independently maintained
exporters listed at Exporters
and integrations.
Operating system
- all
- popular
- aix
- darwin
- dragonfly
- freebsd
- illumos
- linux
- netbsd
- openbsd
- windows
Architecture
- all
- popular
- 386
- amd64
- arm64
- armv5
- armv6
- armv7
- mips
- mips64
- mips64le
- mipsle
- ppc64
- ppc64le
- riscv64
- s390x
prometheus
The Prometheus monitoring system and time series database. prometheus/prometheus
3.4.0-rc.0 / 2025-04-29 Pre-release Release notes |
||||
File name | OS | Arch | Size | SHA256 Checksum |
---|---|---|---|---|
prometheus-3.4.0-rc.0.darwin-amd64.tar.gz | darwin | amd64 | 113.50 MiB | 80d19faab117f56432ee8eaff3a5a9d8905de1ade223abddb59e7437fe9e8a0a |
prometheus-3.4.0-rc.0.darwin-arm64.tar.gz | darwin | arm64 | 109.41 MiB | 473aa78713240f3a2c726138bbd724225b95f5348b10e39072e73c22189fe4d3 |
prometheus-3.4.0-rc.0.dragonfly-amd64.tar.gz | dragonfly | amd64 | 111.63 MiB | 9d538900fab67a89b339b22073011701e1d5c171f7be9ed19b4608dda427a519 |
prometheus-3.4.0-rc.0.freebsd-386.tar.gz | freebsd | 386 | 103.55 MiB | d8ac829f776196a7490adef64b5173ebbdd13d0dfaff59996c5bf27fcb6f5784 |
prometheus-3.4.0-rc.0.freebsd-amd64.tar.gz | freebsd | amd64 | 111.67 MiB | a68f6fd1a9d175f8b668e09a9a3af0d7a9f5257e71efee01df1edd3465863707 |
prometheus-3.4.0-rc.0.freebsd-arm64.tar.gz | freebsd | arm64 | 105.20 MiB | 6d3496e4ab89abd732dc86d216bb385b3bdfa276301211e98428df805838de82 |
prometheus-3.4.0-rc.0.freebsd-armv6.tar.gz | freebsd | armv6 | 101.94 MiB | bd47a1ab0bb82abd4fbd1d7e6473edde6bae19ca2f073850dce1f551a9c91b06 |
prometheus-3.4.0-rc.0.freebsd-armv7.tar.gz | freebsd | armv7 | 101.90 MiB | d78422b9a64250414f2795514ad0ee629f283a70d25c2075fa6667da88e03dd6 |
prometheus-3.4.0-rc.0.illumos-amd64.tar.gz | illumos | amd64 | 111.59 MiB | 61a304ab7e18fb07855c1c5a902e9de93962b60524fe36bac8e40fabc931ebf7 |
prometheus-3.4.0-rc.0.linux-386.tar.gz | linux | 386 | 103.93 MiB | 9c390830cbaaa3a445e8d635c0c3b669913e2b85c9b539f33ddf7ca93b863992 |
prometheus-3.4.0-rc.0.linux-amd64.tar.gz | linux | amd64 | 111.85 MiB | 45470cb2651ee82d323245d7652c9c9e1f4123ab331a8c4dd5ddee09dcf73c2d |
prometheus-3.4.0-rc.0.linux-arm64.tar.gz | linux | arm64 | 105.44 MiB | ba4164995cb4636a0045cfa79dc6db0b6c81da79d41841c529e6a04a85f13602 |
prometheus-3.4.0-rc.0.linux-armv5.tar.gz | linux | armv5 | 102.09 MiB | 19208e49dd26ca3c85bf057547365b18ef45d390532aeaa1592c93df0fb13e73 |
prometheus-3.4.0-rc.0.linux-armv6.tar.gz | linux | armv6 | 102.14 MiB | 6e050348fcbe44c51eb0baba80c3b8dc188b7c1537fa7f40c51215f0c1931341 |
prometheus-3.4.0-rc.0.linux-armv7.tar.gz | linux | armv7 | 102.10 MiB | f0b5f3fe0a62e6a6e12360e2e19aa9b20227b1b6183e0b67d5929298f03d7785 |
prometheus-3.4.0-rc.0.linux-mips.tar.gz | linux | mips | 100.04 MiB | 83dd62fa169e097f692e619a6b909f64799865c38c78a326c5d2ccf42f8fb20c |
prometheus-3.4.0-rc.0.linux-mips64.tar.gz | linux | mips64 | 100.30 MiB | 36e80d61114ab28a97a851054d99a7df6e20cce25d9d9e82b1b1a0419e521abb |
prometheus-3.4.0-rc.0.linux-mips64le.tar.gz | linux | mips64le | 96.48 MiB | dd8d379b234e73e92f00596c87f51b2141bbf860ad04f687f183e9e756fadabf |
prometheus-3.4.0-rc.0.linux-mipsle.tar.gz | linux | mipsle | 97.12 MiB | 84afb154c5fe4e28a04b36a54392e35b8b337102754e90a7c73285ea4878c839 |
prometheus-3.4.0-rc.0.linux-ppc64.tar.gz | linux | ppc64 | 107.28 MiB | 771710a3996434bea87fd9bdedce634fe7398d0ec8c859c3f3105faec819c46b |
prometheus-3.4.0-rc.0.linux-ppc64le.tar.gz | linux | ppc64le | 104.59 MiB | 96fe34bfcc844390ad877209ecc8073f4879460787c4dd523a903756c96ad455 |
prometheus-3.4.0-rc.0.linux-riscv64.tar.gz | linux | riscv64 | 108.48 MiB | 547bdd03492fb4c5c5f6c92c10b771cde911cf9e0074163dabb2dc0f4d1f2210 |
prometheus-3.4.0-rc.0.linux-s390x.tar.gz | linux | s390x | 110.38 MiB | 7bbcf8aad0d880ca57eccfb659b83a206032ede8bf7ba89692ac755555eae0c4 |
prometheus-3.4.0-rc.0.netbsd-386.tar.gz | netbsd | 386 | 103.49 MiB | b60ad721fe038d1bd2e801217aa49c83d5059208de7729015f05a17d15a87123 |
prometheus-3.4.0-rc.0.netbsd-amd64.tar.gz | netbsd | amd64 | 111.60 MiB | 5b4d0dd0d5fdff7230a524d73413757a34e760ee173e07dc6106784390ee3527 |
prometheus-3.4.0-rc.0.netbsd-arm64.tar.gz | netbsd | arm64 | 105.16 MiB | 0d64e6aeadff7fa19065ca335adef4c1f04bff9b2d8f919ecc9422077ac3bb75 |
prometheus-3.4.0-rc.0.netbsd-armv6.tar.gz | netbsd | armv6 | 101.89 MiB | 86bc40d21356fa115dba68ba1e3c9f9836a67e1302be6edbff3cb15076f7ed8a |
prometheus-3.4.0-rc.0.netbsd-armv7.tar.gz | netbsd | armv7 | 101.84 MiB | d98ca1563a8b611371224462b0f9447e296f27fd3cfc72cdc5a44a5962dd4da5 |
prometheus-3.4.0-rc.0.windows-386.zip | windows | 386 | 108.03 MiB | 6d8552b3fad5669357172703e7644a1abde0b9a9467793bf81ea55deebc20c75 |
prometheus-3.4.0-rc.0.windows-amd64.zip | windows | amd64 | 115.54 MiB | 29ce00add383108bed61b72e35a1aea008cf821948a06746aea456449cbc292f |
prometheus-3.4.0-rc.0.windows-arm64.zip | windows | arm64 | 107.82 MiB | 0b6a32b54f1c2d3a24c6f2abb0e5a76053a7b33e82c842f6bc4babd3a0f7d320 |
3.3.1 / 2025-05-02
Release notes |
||||
File name | OS | Arch | Size | SHA256 Checksum |
prometheus-3.3.1.darwin-amd64.tar.gz | darwin | amd64 | 112.98 MiB | 9b248541716ab0d3ca20ca3fa980f5109883d0e07dc9b0a1731997adda203be1 |
prometheus-3.3.1.darwin-arm64.tar.gz | darwin | arm64 | 108.91 MiB | 53da5fec3c0fc5f55a594aea928a42d2a8e112c3639a94ada4d2a44061f0f883 |
prometheus-3.3.1.dragonfly-amd64.tar.gz | dragonfly | amd64 | 111.04 MiB | c6b5cf0b675c69c5dc5d177ad8866b4b7fe6cdd1aea3ad4182c8dec550fcae37 |
prometheus-3.3.1.freebsd-386.tar.gz | freebsd | 386 | 103.04 MiB | dc5770dad8f5867eab0e174a2fa23265efa01d3abd4e479514f170c414fef156 |
prometheus-3.3.1.freebsd-amd64.tar.gz | freebsd | amd64 | 111.08 MiB | f2c41a054dcb3b3c622fcf6e6189283fa85a3a3e2b233d40cbb4ac154a08ee42 |
prometheus-3.3.1.freebsd-arm64.tar.gz | freebsd | arm64 | 104.68 MiB | 1e65b61b4bb939f771602b303b4d3016d31209423659e2b06b9bbbf0c1201bbb |
prometheus-3.3.1.freebsd-armv6.tar.gz | freebsd | armv6 | 101.44 MiB | 1f9ca32e85c4cff990b4d063cd7a85c959fc0e7d9cd13a52072ceb2b9e24c190 |
prometheus-3.3.1.freebsd-armv7.tar.gz | freebsd | armv7 | 101.40 MiB | 4e44d1003a5d5777060bd0d2fc7d890141a08fdee439414d16025cb3537f9406 |
prometheus-3.3.1.illumos-amd64.tar.gz | illumos | amd64 | 111.05 MiB | 1d5cba64ececb3be4000febada21c4af9b962f7ef50e988781b58ae3092817f6 |
prometheus-3.3.1.linux-386.tar.gz | linux | 386 | 103.38 MiB | 62cf3b5d1a03916997f3149362ca28e4cad5ae048331dd37535185b5ab8a3f24 |
prometheus-3.3.1.linux-amd64.tar.gz | linux | amd64 | 111.28 MiB | e22600b314f65fd180fe17c0afeea85ed8484e924fc589c2331b084813699ef0 |
prometheus-3.3.1.linux-arm64.tar.gz | linux | arm64 | 104.87 MiB | 6e3b24c13c55bb2f0e05248327276e6ad6e96ceea4865296a41cbbc092dd45ea |
prometheus-3.3.1.linux-armv5.tar.gz | linux | armv5 | 101.58 MiB | 50a31c5042c08721a72bb0a99a899f0e882bb82f6b02999cecd3ea39f9f3356c |
prometheus-3.3.1.linux-armv6.tar.gz | linux | armv6 | 101.63 MiB | eeb48b69c43b68335d9ab394a0dea9b5ceca8b1d23e272a17934d76a196e59fe |
prometheus-3.3.1.linux-armv7.tar.gz | linux | armv7 | 101.58 MiB | 78c5f6b3a0a5f04a9bbfe7a5396e3826d73082226f4712f8ab2f99eedc0a10ee |
prometheus-3.3.1.linux-mips.tar.gz | linux | mips | 99.54 MiB | b4a36b66952683f8e1e94372f9d75b764d83391910a56f8327e63f87babcad18 |
prometheus-3.3.1.linux-mips64.tar.gz | linux | mips64 | 99.82 MiB | cd3ef7a68b437cb588ee44e7a47781b1dae7376c6e2099a36efd993ba0ff1284 |
prometheus-3.3.1.linux-mips64le.tar.gz | linux | mips64le | 95.96 MiB | b4659e1c0fbe0ffcba1fab774221711f963d2f4fee5a6a411ff71dbad01ab85b |
prometheus-3.3.1.linux-mipsle.tar.gz | linux | mipsle | 96.64 MiB | 7c7bd039ab3c81096278ad6789198aab0b14ac9354016ab62e38a026cb3df31e |
prometheus-3.3.1.linux-ppc64.tar.gz | linux | ppc64 | 106.74 MiB | f1931b3b1300176eb224344a83570407d5b1fbe29e979c13516c2663e75c87c5 |
prometheus-3.3.1.linux-ppc64le.tar.gz | linux | ppc64le | 104.06 MiB | aaa5f2af80877b0e6002b5f3e3232fcfb66e74e05c86a8332a3f6cf988bd42fd |
prometheus-3.3.1.linux-riscv64.tar.gz | linux | riscv64 | 107.93 MiB | d34285b0cffe362eba4bdbb0c7b4ce0ea67f4595bded40505e3b4f6fb0b4059a |
prometheus-3.3.1.linux-s390x.tar.gz | linux | s390x | 109.82 MiB | 4c6583ea784d9adc905331c9327066351a7ba331d0b3a5047fbf95a141facdeb |
prometheus-3.3.1.netbsd-386.tar.gz | netbsd | 386 | 102.97 MiB | e039bd93d0fb9ef508f0f5d451c84b5c7f4a764216d2049ef9bb29accb744d2a |
prometheus-3.3.1.netbsd-amd64.tar.gz | netbsd | amd64 | 111.00 MiB | 4fb54b5a7cca6a19c57481757ba81d5844d62b58793effba7acf8c8455daa074 |
prometheus-3.3.1.netbsd-arm64.tar.gz | netbsd | arm64 | 104.61 MiB | 6080dbdacbbd715d85c102f7efe76449a0beca9b170a8fbb040a2acb34813919 |
prometheus-3.3.1.netbsd-armv6.tar.gz | netbsd | armv6 | 101.37 MiB | a8a42795a5721bec1fdf10ec4cc0dca7fe96de4ade842a4ed03bb12caf779b2f |
prometheus-3.3.1.netbsd-armv7.tar.gz | netbsd | armv7 | 101.34 MiB | d6652955e2782c45ea6210a1da3a3be28f6f0481d85647b296bc7de44c0cf098 |
prometheus-3.3.1.windows-386.zip | windows | 386 | 107.51 MiB | 332f07327818f7fec314e9ef54087cacb4eb7e04b3de02bf8d08b1f4e596b597 |
prometheus-3.3.1.windows-amd64.zip | windows | amd64 | 114.95 MiB | c13479b4df4c943bae1fa3a0159f0db0b3b78d8b281f80a913d81b8f2804f7df |
prometheus-3.3.1.windows-arm64.zip | windows | arm64 | 107.29 MiB | c1bc16094614f9128b16dff97bceb6e2b7033bf7ea5de7923629b6789b5d74f3 |
2.53.4 / 2025-03-18
LTS |
||||
File name | OS | Arch | Size | SHA256 Checksum |
prometheus-2.53.4.darwin-amd64.tar.gz | darwin | amd64 | 99.84 MiB | 10066a1aa21c4ddb8d5e61c31b52e898d8ac42c7e99fd757e2fc4b6c20b8075f |
prometheus-2.53.4.darwin-arm64.tar.gz | darwin | arm64 | 96.00 MiB | cb3e638d8e9b4b27a6aa1f45a4faa3741b548aac67d4649aea7a2fad3c09f0a1 |
prometheus-2.53.4.dragonfly-amd64.tar.gz | dragonfly | amd64 | 98.14 MiB | 4c1aa1d44628e31c3a045353b74fbc3c52358c7f618519e04907884094a4d71e |
prometheus-2.53.4.freebsd-386.tar.gz | freebsd | 386 | 90.62 MiB | 5f567109b020365e6738ab132375e87f94b46cd4c492d282b4e16e3651c70090 |
prometheus-2.53.4.freebsd-amd64.tar.gz | freebsd | amd64 | 98.20 MiB | 805bf2a31bf7259f8863a3da44f4b57567c40c213572680a771a9094de647704 |
prometheus-2.53.4.freebsd-arm64.tar.gz | freebsd | arm64 | 92.39 MiB | db37470715a6e5763e66bc7f6565f0053eae1cbc7c8f7fddf95ea8cb5e3d5e76 |
prometheus-2.53.4.freebsd-armv6.tar.gz | freebsd | armv6 | 89.43 MiB | 51fd43dfa3c095c6a2a935995eec3cb9fbf78a3445d6cd353629d3d6b446d6b9 |
prometheus-2.53.4.freebsd-armv7.tar.gz | freebsd | armv7 | 89.38 MiB | 43208550287e3e0d4fbe9cc3faf9a21ec7fcd055f8283349c51db451bf097be0 |
prometheus-2.53.4.illumos-amd64.tar.gz | illumos | amd64 | 98.14 MiB | f86654084d55a1244b4884910e8d4f42f383a73cbe06c6a43d4cdda817a7f9c9 |
prometheus-2.53.4.linux-386.tar.gz | linux | 386 | 91.89 MiB | 54a8406b721dbe35a124c4fd34b3866542d23143ac422f14f35342dac1e30d7d |
prometheus-2.53.4.linux-amd64.tar.gz | linux | amd64 | 99.37 MiB | b8b497c4610d1b93208252b60c8f20f6b2e78596ae8df43397a2e805aa53d475 |
prometheus-2.53.4.linux-arm64.tar.gz | linux | arm64 | 93.53 MiB | ec7236ecea7154d0bfe142921708b1ae7b5e921e100e0ee85ab92b7c444357e0 |
prometheus-2.53.4.linux-armv5.tar.gz | linux | armv5 | 90.52 MiB | 04c85e41672b245a409a8573425fdd499318fb75ca9e56ccb5ea940a217658d9 |
prometheus-2.53.4.linux-armv6.tar.gz | linux | armv6 | 90.56 MiB | fc17400984a38a554d0123ddae6ed462989297303843aa06ecb70bb03ec9af94 |
prometheus-2.53.4.linux-armv7.tar.gz | linux | armv7 | 90.52 MiB | d7c98efc0b366a82d3dd3556b18fefb1faba52c2d77182e620abd5344e7bdda7 |
prometheus-2.53.4.linux-mips.tar.gz | linux | mips | 88.86 MiB | b44900e8bf00363858104bb3e90f161a7c3ed6ffe4546108174970d22630a834 |
prometheus-2.53.4.linux-mips64.tar.gz | linux | mips64 | 88.91 MiB | 6a1617b12c7db44be7cfbf33d32a5c5f5e3fb1b028af208544e868f621b19565 |
prometheus-2.53.4.linux-mips64le.tar.gz | linux | mips64le | 85.48 MiB | 610dd6d386763c7354afc254b6ea12de20a29ae6620b521fb4a186529c918de0 |
prometheus-2.53.4.linux-mipsle.tar.gz | linux | mipsle | 86.28 MiB | 3ff757d3ff7442f87052c139bde7af016dea8990faf40cd058ad1278eafdd5a6 |
prometheus-2.53.4.linux-ppc64.tar.gz | linux | ppc64 | 95.20 MiB | 2df5233eaf9772663d9f131f64b53c66386b3094cb43a7b5f44369c1c703c8ce |
prometheus-2.53.4.linux-ppc64le.tar.gz | linux | ppc64le | 92.95 MiB | b5205c82a6fd63bee5ad748a68d632b200c41803d2ee3856a889963c9c7fcc81 |
prometheus-2.53.4.linux-riscv64.tar.gz | linux | riscv64 | 95.62 MiB | a810cf2806695c23fed3e2fc3935e6e01ed43de5a21af060784531df06447335 |
prometheus-2.53.4.linux-s390x.tar.gz | linux | s390x | 98.18 MiB | 9dc30219a00cac01a1cbc2c777f0adcb37b36f7bba10a79e6084640a09daeea9 |
prometheus-2.53.4.netbsd-386.tar.gz | netbsd | 386 | 90.58 MiB | 903700ef896e19c2c21251a9f6dd79e49b5e9f5be5e1da9ca63f79d8355c5fcb |
prometheus-2.53.4.netbsd-amd64.tar.gz | netbsd | amd64 | 98.12 MiB | 842f0ecbf77a031c1a42963f0f956bbd969d6ddd190e72d38cd8947a44223bf5 |
prometheus-2.53.4.netbsd-arm64.tar.gz | netbsd | arm64 | 92.32 MiB | 1edd0d73177018db8dd49f8732c3606856319e9dc512fbb7ab8e3371cbfa37b0 |
prometheus-2.53.4.netbsd-armv6.tar.gz | netbsd | armv6 | 89.38 MiB | c48d5e4d526a3766925b3105fb09c2625fdde1fdccb7a3d3e16b004941fb4ec4 |
prometheus-2.53.4.netbsd-armv7.tar.gz | netbsd | armv7 | 89.34 MiB | 5b7f4bb2d33a276a8d189b949b693a03f40d197bce6d4c73dd83cff1fd8d28f5 |
prometheus-2.53.4.windows-386.zip | windows | 386 | 94.68 MiB | 2e90dc434cc7d71fdbb9e53d3fe2d764cf69e753e4295d52d6430dd41d7bc388 |
prometheus-2.53.4.windows-amd64.zip | windows | amd64 | 101.63 MiB | 977b2f055b4a9947c07565a573be3d89c419ccfdc67bdf7c37b06fddd779f315 |
prometheus-2.53.4.windows-arm64.zip | windows | arm64 | 94.70 MiB | 670ee81fe9356d4b33e6a389c5d4e63a6ca63d4dd07ffb536cbac2454874e4f9 |
alertmanager
Prometheus Alertmanager prometheus/alertmanager
0.28.1 / 2025-03-07
Release notes |
||||
File name | OS | Arch | Size | SHA256 Checksum |
---|---|---|---|---|
alertmanager-0.28.1.darwin-amd64.tar.gz | darwin | amd64 | 31.52 MiB | 92c8a0e97d2a5e16952a58192e8316b7af6a03e20906346478724f2f9cf09741 |
alertmanager-0.28.1.darwin-arm64.tar.gz | darwin | arm64 | 30.07 MiB | 6ad077f9de99fe96843a68313f19dd2dbc1e8929135293e48bb10824bd6b4df4 |
alertmanager-0.28.1.dragonfly-amd64.tar.gz | dragonfly | amd64 | 31.53 MiB | b808d5fdca002baf5bdeab4e0cc2f4e240f7b5d677d58811618273e325fd54da |
alertmanager-0.28.1.freebsd-386.tar.gz | freebsd | 386 | 29.92 MiB | 55513a319e7016a4e2f122ce0717343a61b57f04e433ca6a1d8daa00d5dfaff1 |
alertmanager-0.28.1.freebsd-amd64.tar.gz | freebsd | amd64 | 31.56 MiB | eebe7e62342cefa9ba376eb49bf9df4d6dd82dae9334f5167a4bc5a3355a4af4 |
alertmanager-0.28.1.freebsd-arm64.tar.gz | freebsd | arm64 | 29.53 MiB | 47db525628745a09b955383e3d9491591a379fde6a4b03a0869208feeb05ec14 |
alertmanager-0.28.1.freebsd-armv6.tar.gz | freebsd | armv6 | 29.25 MiB | a9633688bd7485d4dad87ef4a438f7ff8846eadccd264e7d45b073e213dd82d2 |
alertmanager-0.28.1.freebsd-armv7.tar.gz | freebsd | armv7 | 29.23 MiB | 5f87479e8e9661f5ec42a0672ebbcf400a713b589a893793d2defb45d565db79 |
alertmanager-0.28.1.illumos-amd64.tar.gz | illumos | amd64 | 31.54 MiB | 77b312b57d16c25020437c73f559af755b6ac8e7d213860338f9c7e18f8c2592 |
alertmanager-0.28.1.linux-386.tar.gz | linux | 386 | 30.26 MiB | 86d755edb5d26d26172355d2f83b1f19d10268d3df3cdedad9ff8335a392d917 |
alertmanager-0.28.1.linux-amd64.tar.gz | linux | amd64 | 31.89 MiB | 5ac7ab5e4b8ee5ce4d8fb0988f9cb275efcc3f181b4b408179fafee121693311 |
alertmanager-0.28.1.linux-arm64.tar.gz | linux | arm64 | 29.84 MiB | d8832540e5b9f613d2fd759e31d603173b9c61cc7bb5e3bc7ae2f12038b1ce4f |
alertmanager-0.28.1.linux-armv5.tar.gz | linux | armv5 | 29.55 MiB | c0dd897cb39ce5d6701eb1c32f816154ba83f91ae1d8a7f0840276ba5739360e |
alertmanager-0.28.1.linux-armv6.tar.gz | linux | armv6 | 29.56 MiB | 5878a78343450aa39c489cfd764f407b35b9d24161aeca86ae402a66bf8e4d9c |
alertmanager-0.28.1.linux-armv7.tar.gz | linux | armv7 | 29.54 MiB | 2953e93c4f9ce5c63b19f64abc0cb175a5936a7302fd34acb2f87fd331d72387 |
alertmanager-0.28.1.linux-mips.tar.gz | linux | mips | 29.06 MiB | b172583d60026ee7446ec2faa8d86264a3cac33012dc960339b0a11fd651269c |
alertmanager-0.28.1.linux-mips64.tar.gz | linux | mips64 | 29.06 MiB | 85e55198bdb971f2ada16fa93df2919a0282d7fa028ac333c8f12665ba4a67ce |
alertmanager-0.28.1.linux-mips64le.tar.gz | linux | mips64le | 28.17 MiB | 030c68998289174d8ad96d4b9b0bd4eea724ef933df1c4e8cac138ca3ef95d63 |
alertmanager-0.28.1.linux-mipsle.tar.gz | linux | mipsle | 28.37 MiB | 47e52375f1a09ca7226f066b7659ae7107f3c23e4c27bd234826d5d1dd101596 |
alertmanager-0.28.1.linux-ppc64.tar.gz | linux | ppc64 | 30.40 MiB | 432738710d1e5c40af0e9b8bdc8e2e5f10860c8898d80db790a360287d96cda4 |
alertmanager-0.28.1.linux-ppc64le.tar.gz | linux | ppc64le | 29.94 MiB | 9ac0c94d5f9fa4ef2e0a2a5116c7aff7f769b2cc7efe8165edf40782acc49811 |
alertmanager-0.28.1.linux-riscv64.tar.gz | linux | riscv64 | 30.46 MiB | dd489361415d619b34cd670a85f099697297a42dee22acbd0285ccd0406c54e4 |
alertmanager-0.28.1.linux-s390x.tar.gz | linux | s390x | 31.12 MiB | 4e185ca997718218b7c5811c959bc0ba68b19582828b71b7653c791bb9be59ed |
alertmanager-0.28.1.netbsd-386.tar.gz | netbsd | 386 | 29.88 MiB | 8f3a950ce8891d83f48bbb6dade837dac0e1c20f95a47bd1df31158d0d979ead |
alertmanager-0.28.1.netbsd-amd64.tar.gz | netbsd | amd64 | 31.52 MiB | 66e1b100dc20f000ff1f4a810c8995cbace792c31e654f83005cdc67e6c254e2 |
alertmanager-0.28.1.netbsd-arm64.tar.gz | netbsd | arm64 | 29.49 MiB | e95cd75755e9baa3d902caea72a3769b56a51839ad0b583e8dfada6ba6e358f3 |
alertmanager-0.28.1.netbsd-armv6.tar.gz | netbsd | armv6 | 29.21 MiB | 9f4e6dfb92e939678bf0c516acfffc51dfdfeb82aedf137c0a64a6de15e1fd49 |
alertmanager-0.28.1.netbsd-armv7.tar.gz | netbsd | armv7 | 29.19 MiB | e8082a96e7fc74178d449ae278460043db0fc2cadf5d1c46870029d1b2c92fe0 |
alertmanager-0.28.1.openbsd-386.tar.gz | openbsd | 386 | 29.91 MiB | 3698460e0bdec0b979871f9e64f55dc27115f8c958fe4c789332ab515b93e61b |
alertmanager-0.28.1.openbsd-amd64.tar.gz | openbsd | amd64 | 31.56 MiB | 319489715e7659312c34acd6474b44a84cfd16c815e04347f10e01b0d95306bc |
alertmanager-0.28.1.openbsd-arm64.tar.gz | openbsd | arm64 | 29.53 MiB | a7ee923c59001ab8c54146b1f10017063e3ca05252f95b5ac185e2064d5a02dd |
alertmanager-0.28.1.openbsd-armv7.tar.gz | openbsd | armv7 | 29.22 MiB | 21ddc111e78623ed9bd3c20362e4318849e5b92325e040c559d500ff1103a93a |
alertmanager-0.28.1.windows-386.zip | windows | 386 | 31.08 MiB | 908a46f7c7f21188a2cd9e5eed078c95e47e76feb6144e62d985232ce4881595 |
alertmanager-0.28.1.windows-amd64.zip | windows | amd64 | 32.59 MiB | 521de9569ab0570845c38889cceb26790696ab04b1cba0b0086994b785013ca8 |
alertmanager-0.28.1.windows-arm64.zip | windows | arm64 | 30.32 MiB | d8dff4d475cf4d72db8384fef47cfbbdbe9ebd019c4c2adda2d8923378dc0a25 |
blackbox_exporter
Blackbox prober exporter prometheus/blackbox_exporter
0.26.0 / 2025-02-26
Release notes |
||||
File name | OS | Arch | Size | SHA256 Checksum |
---|---|---|---|---|
blackbox_exporter-0.26.0.aix-ppc64.tar.gz | aix | ppc64 | 10.64 MiB | 81c2f3698e2a4544d991267517febb5be9a628bbe05bc1dd33b045c2dfbdd3e7 |
blackbox_exporter-0.26.0.darwin-amd64.tar.gz | darwin | amd64 | 11.63 MiB | 9fd703a48e66302cff71561cb7614ece2b32205686e49b28b884ee035b5e4ad6 |
blackbox_exporter-0.26.0.darwin-arm64.tar.gz | darwin | arm64 | 11.09 MiB | 3a02294d4d51508b7748adce7c48d2e3b75c3e31bf5650f2c6c21890eac6e0a1 |
blackbox_exporter-0.26.0.dragonfly-amd64.tar.gz | dragonfly | amd64 | 11.59 MiB | dccfdfb8353ae05e891087fac9a92d9338055d998f790abceafd97beb4a9f3b7 |
blackbox_exporter-0.26.0.freebsd-386.tar.gz | freebsd | 386 | 11.12 MiB | 3ef8d6f0fa3610ffdc4d9e8b0ef2bae122a16b1db4d4aa843d81313a1f941502 |
blackbox_exporter-0.26.0.freebsd-amd64.tar.gz | freebsd | amd64 | 11.61 MiB | 638218aef174701312df926ca7b1e526143db5e31d8b88c611881e3e447e66af |
blackbox_exporter-0.26.0.freebsd-arm64.tar.gz | freebsd | arm64 | 10.88 MiB | 06dd9418bcdf9190cfa5627897df99fc777c861d6e5e8c1edf2919418d513a6f |
blackbox_exporter-0.26.0.freebsd-armv6.tar.gz | freebsd | armv6 | 10.63 MiB | d8e9c007ee5bdae4d0b402424de3652102732951126a4392abcf0256023c7ab2 |
blackbox_exporter-0.26.0.freebsd-armv7.tar.gz | freebsd | armv7 | 10.62 MiB | 348ef0538bf812b84374a3ee56e3a326dfe72b71d245886a8639d33251c44f89 |
blackbox_exporter-0.26.0.illumos-amd64.tar.gz | illumos | amd64 | 11.59 MiB | 0a4257bada5ec959ea20cbfea9afdc51a48d1792c37c2f7cb76e2b2c57c81e30 |
blackbox_exporter-0.26.0.linux-386.tar.gz | linux | 386 | 11.31 MiB | 19f3ba7adbaf518bcd24c920800a49da1e384ea476ecc2608abc6df8cd59b6c1 |
blackbox_exporter-0.26.0.linux-amd64.tar.gz | linux | amd64 | 11.80 MiB | 4b1bb299c685ecff75d41e55e90aae8e02a658395fb14092c7f9c5c9d75016c7 |
blackbox_exporter-0.26.0.linux-arm64.tar.gz | linux | arm64 | 11.07 MiB | afb5581b1d4ea45078eebc96e4f989f912d1144d2cc131db8a6c0963bcc6a654 |
blackbox_exporter-0.26.0.linux-armv5.tar.gz | linux | armv5 | 10.82 MiB | 79568cb413be5228d183cb5a20aa8f45a6edb89cc1212d1acbccd040d73665ef |
blackbox_exporter-0.26.0.linux-armv6.tar.gz | linux | armv6 | 10.81 MiB | 4a721ad66b45536f566a48ce58273aaf4700bbb3e7f95a50fb09a760f168b90f |
blackbox_exporter-0.26.0.linux-armv7.tar.gz | linux | armv7 | 10.81 MiB | 44ae9312c9b466e16ee1a87200e2d188e023de660c8129a974d4ccc0ba72aa6a |
blackbox_exporter-0.26.0.linux-mips.tar.gz | linux | mips | 10.87 MiB | 98fd411c8566a39490213ab9c05c24b1ae93f092cbb48e30d11492beaeaa2399 |
blackbox_exporter-0.26.0.linux-mips64.tar.gz | linux | mips64 | 10.86 MiB | a5a45fc39804a5f930e584c1f0b24b8e1b5b5a12b5fb4ca2bb45ac5a1ea9860a |
blackbox_exporter-0.26.0.linux-mips64le.tar.gz | linux | mips64le | 10.53 MiB | 7593148cf230b2b2aa3415c0a6f833bbab2f355f1a9f0c1b5052f668d336cc5b |
blackbox_exporter-0.26.0.linux-mipsle.tar.gz | linux | mipsle | 10.61 MiB | 71920675defad623d343535f24d7f0bf2a95528489e3ffddf4d16dd039bfbe68 |
blackbox_exporter-0.26.0.linux-ppc64.tar.gz | linux | ppc64 | 11.28 MiB | 01609383e780463a673a1e44ab2ba205a08b724e23605e513965449a6c91cbf1 |
blackbox_exporter-0.26.0.linux-ppc64le.tar.gz | linux | ppc64le | 11.15 MiB | c5408bf04dc20a7ed3f127a41f0adfd2cf89dcfa7a96a590dfd50053d2a32138 |
blackbox_exporter-0.26.0.linux-riscv64.tar.gz | linux | riscv64 | 11.26 MiB | 698a26b0eb9f4261c7445aa1f05651aecb8d1e962ae8cfcd5cb4beaf2b774b73 |
blackbox_exporter-0.26.0.linux-s390x.tar.gz | linux | s390x | 11.55 MiB | 36c42733c87ccbbc6c44e47b758a7290b38ea47885936f6a708406e20046657a |
blackbox_exporter-0.26.0.netbsd-386.tar.gz | netbsd | 386 | 11.10 MiB | 73a4941e4a6d9f6d68d251067ed4ddd36ef48d3b0df16a6edb732811fdcd7475 |
blackbox_exporter-0.26.0.netbsd-amd64.tar.gz | netbsd | amd64 | 11.59 MiB | e4f3fd16a775bbe54fecccb8a84b3df0c69f7d625b087358810d3d00ca3634fb |
blackbox_exporter-0.26.0.netbsd-arm64.tar.gz | netbsd | arm64 | 10.86 MiB | 8ab22d6b4ffada58b8042d1eddfb51dc439ea11a1e40115a0c52c30eb0c38588 |
blackbox_exporter-0.26.0.netbsd-armv6.tar.gz | netbsd | armv6 | 10.61 MiB | 5d8ad707dd4d1250d72d7ab54d9673d5df53c118e2fce338001544dc1753ed81 |
blackbox_exporter-0.26.0.netbsd-armv7.tar.gz | netbsd | armv7 | 10.60 MiB | e3451b219a7ae2528124dc035f25459aaeb94873dd3ce2fd7881bfc878c22c57 |
blackbox_exporter-0.26.0.openbsd-386.tar.gz | openbsd | 386 | 11.11 MiB | 360c5e59ee426d6774bf021e5137a4066e74529c615807cdddca44deacc8596d |
blackbox_exporter-0.26.0.openbsd-amd64.tar.gz | openbsd | amd64 | 11.61 MiB | a92c57d353243616f76b3ae2819cce1780bc5acb0a7b5f411c0c1b3595e315f9 |
blackbox_exporter-0.26.0.openbsd-arm64.tar.gz | openbsd | arm64 | 10.88 MiB | 7cf23792e374eb0ade0301eb9fe47c7149ec275021d42cfe94131f58f7643c93 |
blackbox_exporter-0.26.0.openbsd-armv7.tar.gz | openbsd | armv7 | 10.61 MiB | cd9c8a2907002094cabc2dd290ff92b3f75f98d7956417652cc741dd9c3f4b56 |
blackbox_exporter-0.26.0.windows-386.zip | windows | 386 | 11.51 MiB | 22b7d3c72768ba300a2294d140aa7c89d2603ddc479bbb2238fcec7be9cb7553 |
blackbox_exporter-0.26.0.windows-amd64.zip | windows | amd64 | 11.98 MiB | b154c1beadd60420d7ee843e31b31c96c6baec534b28d2176fda272ca5358fef |
blackbox_exporter-0.26.0.windows-arm64.zip | windows | arm64 | 11.19 MiB | 08357f68756536185d51f0ac5ab5068a7c910849c9db1b379ab1dcf0a37a0224 |
consul_exporter
Exporter for Consul metrics prometheus/consul_exporter
0.13.0 / 2024-11-06
Release notes |
||||
File name | OS | Arch | Size | SHA256 Checksum |
---|---|---|---|---|
consul_exporter-0.13.0.aix-ppc64.tar.gz | aix | ppc64 | 8.59 MiB | f0af6b159e82d8a05317eb9920dec4a7fffcae5de81913164e0fde6904a88d4e |
consul_exporter-0.13.0.darwin-amd64.tar.gz | darwin | amd64 | 9.44 MiB | c60739251dc50cbc9bf3fdeeb9e91a46abd50653d7a5df9091836ce02d7f91e0 |
consul_exporter-0.13.0.darwin-arm64.tar.gz | darwin | arm64 | 8.99 MiB | 7b6d68a2a2222489416b3f1c9c2219956bdded7bdc456808c33c6997854b6920 |
consul_exporter-0.13.0.dragonfly-amd64.tar.gz | dragonfly | amd64 | 9.38 MiB | 7d3b25333018bf3b0dd788b7b2749f523cf79f3318d7739ff1addbe4ae0402ce |
consul_exporter-0.13.0.freebsd-386.tar.gz | freebsd | 386 | 9.06 MiB | 7cf127841412151cf493ae6a548d3cde56edea5fe33a9169a98b0e47b83a8f19 |
consul_exporter-0.13.0.freebsd-amd64.tar.gz | freebsd | amd64 | 9.39 MiB | 135e01e430ccd501eeb5f12d488d41b980a59682ebf7b045ca7e5850bbc80fde |
consul_exporter-0.13.0.freebsd-arm64.tar.gz | freebsd | arm64 | 8.79 MiB | c467fbc9af4ef9ec9d5b3c0de9ee28f5ffe7341ff237d8b92888a4bd91cb5b66 |
consul_exporter-0.13.0.freebsd-armv6.tar.gz | freebsd | armv6 | 8.64 MiB | 13e874af3c5708e3ea0ce0cf5b713989474028833f66b31b089a07c8c8af8722 |
consul_exporter-0.13.0.freebsd-armv7.tar.gz | freebsd | armv7 | 8.63 MiB | a2637257544916df0533ff01996343c117d50e32c8e97038a0a87444c734fd91 |
consul_exporter-0.13.0.illumos-amd64.tar.gz | illumos | amd64 | 9.37 MiB | 1d9f07f71c2cb58aa60bcacbfc4dedc563d44527787c93d830db08c5485abfbc |
consul_exporter-0.13.0.linux-386.tar.gz | linux | 386 | 9.25 MiB | 702370a02ecea3077c6b841450429de2238dbfaed27862b3d01fb2bcb94c8aa0 |
consul_exporter-0.13.0.linux-amd64.tar.gz | linux | amd64 | 9.59 MiB | 2a8da4147330c6e19c9665deca1c419d507e100de6c8b7c58c0715ff25453773 |
consul_exporter-0.13.0.linux-arm64.tar.gz | linux | arm64 | 8.97 MiB | a5ecc969647cc67f171eff13468e25fe713f95a8af4135e1c0cf716a64c5474f |
consul_exporter-0.13.0.linux-armv5.tar.gz | linux | armv5 | 8.82 MiB | 28057aae2dd1330d856949375944139372390e742288449ae8d783875d24196c |
consul_exporter-0.13.0.linux-armv6.tar.gz | linux | armv6 | 8.82 MiB | 9b7674c71453e69b59f0a4d00fb92edee2875b32917e6bfa9ce8a6395e5383b6 |
consul_exporter-0.13.0.linux-armv7.tar.gz | linux | armv7 | 8.81 MiB | 37178397d778c88f4d7f5701bfac5cd943284fa5966eb97c380b3f2108c68ec3 |
consul_exporter-0.13.0.linux-mips.tar.gz | linux | mips | 8.84 MiB | c8f8d56028c66e1bc3c68cfd83687cb1754b2d9a8c8a0268b5c559200e1572e7 |
consul_exporter-0.13.0.linux-mips64.tar.gz | linux | mips64 | 8.79 MiB | b22eb5c42f59145f6b8da69e5ae9e914c7e6131c3e39872032d586554fbc37d6 |
consul_exporter-0.13.0.linux-mips64le.tar.gz | linux | mips64le | 8.52 MiB | 111fb29736bd344a50055f342d8ed6290cbfd82c921a44407e45db62ccec76d5 |
consul_exporter-0.13.0.linux-mipsle.tar.gz | linux | mipsle | 8.62 MiB | d51f37328231f00cc4ce6d84f8b1b89769df0dcd659ddc6c93ac21fe45abfbb9 |
consul_exporter-0.13.0.linux-ppc64.tar.gz | linux | ppc64 | 9.16 MiB | 1d2c4cb9341c261745c0c2ef4509775e9acca76b717c9e4937b4371013a65e0a |
consul_exporter-0.13.0.linux-ppc64le.tar.gz | linux | ppc64le | 9.04 MiB | 85c761b3c31a9950faf2aa648a34a8c69236f86ee59ce1a4454e2e5f073e05d8 |
consul_exporter-0.13.0.linux-riscv64.tar.gz | linux | riscv64 | 9.09 MiB | aeaee5c7ee7fbe0592c097f443e03807e7c5718a532540cacdc838b0fd72d174 |
consul_exporter-0.13.0.linux-s390x.tar.gz | linux | s390x | 9.39 MiB | 2b63e610b4eaf42f968b65aaaa2aac1649d655d4cade979b064ea11a81aff43b |
consul_exporter-0.13.0.netbsd-386.tar.gz | netbsd | 386 | 9.04 MiB | 062e6b5a700b90af8d81c81721e86583141bfa48b95d3946ec6347817a253f8f |
consul_exporter-0.13.0.netbsd-amd64.tar.gz | netbsd | amd64 | 9.37 MiB | 17cffb796baee1e92a98f25401943d103d59c56a787743c4932e580348970dad |
consul_exporter-0.13.0.netbsd-arm64.tar.gz | netbsd | arm64 | 8.76 MiB | 26b2e4d4040b0e638e7578d164eea138ab7b82a8c7f6c05e799d8bcd05f4b953 |
consul_exporter-0.13.0.netbsd-armv6.tar.gz | netbsd | armv6 | 8.62 MiB | c0de5106ac2712d5b6b81cb3975e8d0a2ca5943f0670a835e95b61ea4594734d |
consul_exporter-0.13.0.netbsd-armv7.tar.gz | netbsd | armv7 | 8.61 MiB | 792d57e7994a817e8a709d81fdadbef0406eb020b28bbed669bd8493e6adf1c2 |
consul_exporter-0.13.0.openbsd-386.tar.gz | openbsd | 386 | 9.06 MiB | 2f64652e2d8e81a99bf2fda26dd5381630c3b5f905a54f1fd38d54a1a8326d04 |
consul_exporter-0.13.0.openbsd-amd64.tar.gz | openbsd | amd64 | 9.39 MiB | 3e90cc091c58b89c33efdd10a5291e75b68cb4ecb2c6008628682e4266a4cfcb |
consul_exporter-0.13.0.openbsd-arm64.tar.gz | openbsd | arm64 | 8.78 MiB | 5adf1657e41f610aeff28b3e1d471360ffde611d07a92f2380e5f919f3b14351 |
consul_exporter-0.13.0.openbsd-armv7.tar.gz | openbsd | armv7 | 8.63 MiB | dbdf4faaca472cf0317119189c7fa8ffb8b723b7b3baed3ef690d38e2ad0bf6a |
consul_exporter-0.13.0.windows-386.zip | windows | 386 | 9.45 MiB | f6abc5b05a1841e3796a951b719a540a71abd77202689651a2ad37a1f84375f0 |
consul_exporter-0.13.0.windows-amd64.zip | windows | amd64 | 9.76 MiB | 4c378b2827ba2631b4be6551784deef089527f6d6882dd1bc2976d5f58a3d614 |
consul_exporter-0.13.0.windows-arm64.zip | windows | arm64 | 9.09 MiB | c8ba03fc5baef217aa8540cefaf49b81f50d86ad43e59900a25bed8a40b34b93 |
graphite_exporter
Server that accepts metrics via the Graphite protocol and exports them as Prometheus metrics prometheus/graphite_exporter
0.16.0 / 2024-10-29
Release notes |
||||
File name | OS | Arch | Size | SHA256 Checksum |
---|---|---|---|---|
graphite_exporter-0.16.0.aix-ppc64.tar.gz | aix | ppc64 | 10.69 MiB | 4dc4d4e4276f1795d7357d1622d73b1b00a6e225e13ab8113ba1def21ae89bae |
graphite_exporter-0.16.0.darwin-amd64.tar.gz | darwin | amd64 | 20.93 MiB | b9c1eff6bd5dcb61d4106ab61fd29518561a7b63d5b8c71000f8ad09baaf6e28 |
graphite_exporter-0.16.0.darwin-arm64.tar.gz | darwin | arm64 | 19.92 MiB | acafc449dcdccc795fc3dff8d8832fa90bd6930f5c6a4a2305f5e8ee419f7ffa |
graphite_exporter-0.16.0.dragonfly-amd64.tar.gz | dragonfly | amd64 | 20.92 MiB | 5d37b6618e66011315e583c23d4513a35f59cf52b1e06512ddec60761b4c5964 |
graphite_exporter-0.16.0.freebsd-386.tar.gz | freebsd | 386 | 20.13 MiB | d4a5ec70be1c1e9814d68fbfd23c5fbcb0671088351bafcad982b4457606a89b |
graphite_exporter-0.16.0.freebsd-amd64.tar.gz | freebsd | amd64 | 20.94 MiB | b7e778648aecdd3811b0a3ccdd7bbf00538a64a28d3fae3c914f0c7a4667ac8d |
graphite_exporter-0.16.0.freebsd-arm64.tar.gz | freebsd | arm64 | 19.54 MiB | e765821dfa41973a9fbbc83aa198deacdfdc9e3eb47d4940cbaaa00a09557fd5 |
graphite_exporter-0.16.0.freebsd-armv6.tar.gz | freebsd | armv6 | 19.39 MiB | e6c97c434124e8b6215c1727e0f3d83535b926323032148747b30b4f38a971b7 |
graphite_exporter-0.16.0.freebsd-armv7.tar.gz | freebsd | armv7 | 19.37 MiB | 04205d8c73501775db80c49e33b7a110987f6340897e14242a0d802690354abb |
graphite_exporter-0.16.0.illumos-amd64.tar.gz | illumos | amd64 | 20.90 MiB | 8dc7df38462414442a15a1669f33b38d30bacfebf29b02d461288ef68397c0f6 |
graphite_exporter-0.16.0.linux-386.tar.gz | linux | 386 | 20.42 MiB | d6e9387c24c0e5a242e6aa53a3f600e92a2b7cc0acb7677f76a3e14ce0d45efc |
graphite_exporter-0.16.0.linux-amd64.tar.gz | linux | amd64 | 21.21 MiB | 129acf14bb62dc32596ff8aed40a526a66260b2736801bc546be407436dd32d8 |
graphite_exporter-0.16.0.linux-arm64.tar.gz | linux | arm64 | 19.84 MiB | bcdd1eb0ff0b974c93bc4d5c6b2c92140f63215c98aafb0379dff9bf82c776db |
graphite_exporter-0.16.0.linux-armv5.tar.gz | linux | armv5 | 19.66 MiB | 32969ea4a5302d0f670edbbc3cbbc259bba92f92be2ab1eee043a68432f221c6 |
graphite_exporter-0.16.0.linux-armv6.tar.gz | linux | armv6 | 19.66 MiB | 176ad0e3358e535dba283f2997bb1ab63a8325dd0cc8447c478bcc56af220490 |
graphite_exporter-0.16.0.linux-armv7.tar.gz | linux | armv7 | 19.64 MiB | 7d9bb62179801ea4deb07a15f8bb2c1b5a9107d7c46d7e586637d93fe52f6a76 |
graphite_exporter-0.16.0.linux-mips.tar.gz | linux | mips | 19.50 MiB | 202d2d68cb2b4a04be443dc43411bf39398fbe1c8f968b7b8aecd54424fe8a87 |
graphite_exporter-0.16.0.linux-mips64.tar.gz | linux | mips64 | 19.40 MiB | a881fc10307a3d594c0be5f475cfebf210ab1b1581e841b33b5a23b1af6ac915 |
graphite_exporter-0.16.0.linux-mips64le.tar.gz | linux | mips64le | 18.81 MiB | 477a1f65f6fd4565606579c20ecc0853542ff713a7c9304afa13f4c1b4991362 |
graphite_exporter-0.16.0.linux-mipsle.tar.gz | linux | mipsle | 19.03 MiB | b1e1b3eda983019f93c926b64893bc4327b345c09bfd1e1830293c90805ceaff |
graphite_exporter-0.16.0.linux-ppc64.tar.gz | linux | ppc64 | 20.21 MiB | 3fdbc886feedb82d1f210fd20e338f01cf4ef9224bc1bd61c790700344d581a5 |
graphite_exporter-0.16.0.linux-ppc64le.tar.gz | linux | ppc64le | 19.95 MiB | 7e8957a6cd059de6138cb0eec5dce01ccfb681b73307442a709d89e3b7335137 |
graphite_exporter-0.16.0.linux-riscv64.tar.gz | linux | riscv64 | 20.17 MiB | 2faf113927a4b3a324b2528f675cf9e4aa794f01e65c847cfe25df40696c552b |
graphite_exporter-0.16.0.linux-s390x.tar.gz | linux | s390x | 20.76 MiB | 9cb66e6fca4f53d20fae18788c98308d5cc942419b8c1094443ba128b19ddd24 |
graphite_exporter-0.16.0.netbsd-386.tar.gz | netbsd | 386 | 20.10 MiB | 98c1c7fcb51f6417fd39b06b07fd69b8ccf2e340f0f832b217200039c6c215f4 |
graphite_exporter-0.16.0.netbsd-amd64.tar.gz | netbsd | amd64 | 20.90 MiB | 2be9a54f3f5dd6be28b2fc1f895a74fc91d37c36c5649fe27e5748ffaefd3ead |
graphite_exporter-0.16.0.netbsd-arm64.tar.gz | netbsd | arm64 | 19.53 MiB | 256b847f6915c080bbf4866af2fe7c2c3dc8ce534f87f3a45c9f81e2274ca2c6 |
graphite_exporter-0.16.0.netbsd-armv6.tar.gz | netbsd | armv6 | 19.35 MiB | 2294192d5d58d147c76ae7b72468992174234239493465098dc0694bc2467914 |
graphite_exporter-0.16.0.netbsd-armv7.tar.gz | netbsd | armv7 | 19.34 MiB | c139dc346e23e0d4e418a46d313fe3906a7c340f574dabd902e025c3d79e2cc2 |
graphite_exporter-0.16.0.openbsd-386.tar.gz | openbsd | 386 | 20.13 MiB | b1bdd3902a1b7853ff89d47d6e695318b8ef56f96a3015431a22c78c42d67461 |
graphite_exporter-0.16.0.openbsd-amd64.tar.gz | openbsd | amd64 | 20.93 MiB | 03d6957ea72a5871826f1c329424305044bc07bf4c20723580a17bd91f7f7495 |
graphite_exporter-0.16.0.openbsd-arm64.tar.gz | openbsd | arm64 | 19.55 MiB | 74d2f61beeb720fd0bb39f8bef0b34c5ddb71c6cb5f5299923e95d5bd61e6412 |
graphite_exporter-0.16.0.openbsd-armv7.tar.gz | openbsd | armv7 | 19.37 MiB | 8cb4266417e5bbc05550bdb76cc75108d96dd9de4959ed25fd6c99f3168d2b5b |
graphite_exporter-0.16.0.windows-386.zip | windows | 386 | 11.72 MiB | 9e644526cbeb8ef8c61f0e5db5e2fe334d619f3036ca984605a7f3c16938b7ef |
graphite_exporter-0.16.0.windows-amd64.zip | windows | amd64 | 12.09 MiB | 9a762d1a7a19ed8e369cb590c7faf7555e7290925a919b0b056ef272c23cd254 |
graphite_exporter-0.16.0.windows-arm64.zip | windows | arm64 | 11.27 MiB | de30e02654bdcb4caaf644e5d0c0d8f0d5ae5f9b689f9c96acf535e6edf59b3d |
memcached_exporter
Exports metrics from memcached servers for consumption by Prometheus. prometheus/memcached_exporter
0.15.2 / 2025-03-21
Release notes |
||||
File name | OS | Arch | Size | SHA256 Checksum |
---|---|---|---|---|
memcached_exporter-0.15.2.aix-ppc64.tar.gz | aix | ppc64 | 8.21 MiB | 8124c300a9b8559f1f2ef1534158c644505b00b56573416a3b9feed2d419454b |
memcached_exporter-0.15.2.darwin-amd64.tar.gz | darwin | amd64 | 8.86 MiB | 0b8d6a0f38d6229eea54943eedf0dc1274c160c748a86a5b2ce0b46a50deab59 |
memcached_exporter-0.15.2.darwin-arm64.tar.gz | darwin | arm64 | 8.43 MiB | b3226f70ca6a21aef006cd0e047ebf276f4adbee22b21c71c9326014f9510d24 |
memcached_exporter-0.15.2.dragonfly-amd64.tar.gz | dragonfly | amd64 | 8.89 MiB | 50304f6e8d858e980bc7ee47e0c609af47efa3c33d3426a34915a9db9aa85b5b |
memcached_exporter-0.15.2.freebsd-386.tar.gz | freebsd | 386 | 8.73 MiB | ef5a377411ea3a30b8ec3b6222432543ca00ca305a1df0c541f58ddab57c65c4 |
memcached_exporter-0.15.2.freebsd-amd64.tar.gz | freebsd | amd64 | 8.91 MiB | fa90ea0e7daa43b8880338b64547fa450e498901e05c234fdaeccd296defc291 |
memcached_exporter-0.15.2.freebsd-arm64.tar.gz | freebsd | arm64 | 8.31 MiB | db9428ca304593982ba7e055d269e6643eeed10fdda6aef618aa1882b5100a0e |
memcached_exporter-0.15.2.freebsd-armv6.tar.gz | freebsd | armv6 | 8.32 MiB | 3f055a757ed57c453925c967dd586804d1e2a661469fb5bc3eb66d74d85a543c |
memcached_exporter-0.15.2.freebsd-armv7.tar.gz | freebsd | armv7 | 8.31 MiB | fec2ab57b57d508e30a975b58825b5b2cc37a506efd0deb3e5624a82a0001ea7 |
memcached_exporter-0.15.2.illumos-amd64.tar.gz | illumos | amd64 | 8.89 MiB | adc516a471dd88af9a891e6e8da77c66696868436637e8bc8211a1252753324a |
memcached_exporter-0.15.2.linux-386.tar.gz | linux | 386 | 8.92 MiB | 1883a2b04fb9d34b0b8e3a079ba6a07d1b70190adf228655b4f61a9338a79ce5 |
memcached_exporter-0.15.2.linux-amd64.tar.gz | linux | amd64 | 9.10 MiB | c89b373f988b11c7cf5f878737bacd9ac716f9dad5a8266539d9fbf26479becc |
memcached_exporter-0.15.2.linux-arm64.tar.gz | linux | arm64 | 8.51 MiB | 12e00887a23c1aefe0d1e43e92cd086c7361dc1665e8b69f3d47923a14704415 |
memcached_exporter-0.15.2.linux-armv5.tar.gz | linux | armv5 | 8.50 MiB | 0530c079fc9b337808a427b94b4c69a4488b88da94dafba00842c3a0e228b2ca |
memcached_exporter-0.15.2.linux-armv6.tar.gz | linux | armv6 | 8.50 MiB | 96e07b846abd9057b5ce6bac53ce7f46c1bbfbbcdfca2dd0b345c69bb67a2368 |
memcached_exporter-0.15.2.linux-armv7.tar.gz | linux | armv7 | 8.49 MiB | f379ca793c40193da07aa08a4a1198b337114d0458439182a22d6a4cc565902f |
memcached_exporter-0.15.2.linux-mips.tar.gz | linux | mips | 8.51 MiB | c1091bd06f81d99c85a4723202875cda7c6cf4114bc68e191fd7b2305967aa06 |
memcached_exporter-0.15.2.linux-mips64.tar.gz | linux | mips64 | 8.46 MiB | 78341a53015fb21803dcc026f2b277b943f12ccbcb8d51e4d15e1ce0401b6ae3 |
memcached_exporter-0.15.2.linux-mips64le.tar.gz | linux | mips64le | 8.19 MiB | 3c11798fc7cc3518badf54c72b93671d66ee10c6b4e022beea7b0f368ec92e03 |
memcached_exporter-0.15.2.linux-mipsle.tar.gz | linux | mipsle | 8.30 MiB | 62f18862754ecc8f1a02dc3463f65a7ea5dc2b72343459b26d0bad83d304ad9a |
memcached_exporter-0.15.2.linux-ppc64.tar.gz | linux | ppc64 | 8.78 MiB | 9e474d940d47d708c768acd26eb5757e195058396f4cdb6095a181d5b201c035 |
memcached_exporter-0.15.2.linux-ppc64le.tar.gz | linux | ppc64le | 8.61 MiB | a1f5a8d69e5e32aaea2c2fd311df186525ee735f9af017221669438385bdd229 |
memcached_exporter-0.15.2.linux-riscv64.tar.gz | linux | riscv64 | 8.75 MiB | 4fba6c674a6dcb3fdc7d2a13366d349ecf3bb0c40fcb927bcfd91dfdb8f9b867 |
memcached_exporter-0.15.2.linux-s390x.tar.gz | linux | s390x | 8.95 MiB | 419cd3e049b7993e4a3785d2c6c6a4003426136b6edb33718b779580d7bc0462 |
memcached_exporter-0.15.2.netbsd-386.tar.gz | netbsd | 386 | 8.71 MiB | 1e5ef74bdca96692e8bc4df9fd461faa9289f62f707c4fc95c547bade68c545f |
memcached_exporter-0.15.2.netbsd-amd64.tar.gz | netbsd | amd64 | 8.88 MiB | 96b3e9253f32d466b788afe2cefd5aee3e42e3e75ab5108050291985aa75ffc1 |
memcached_exporter-0.15.2.netbsd-arm64.tar.gz | netbsd | arm64 | 8.29 MiB | 68720224129756d0543c05036baae1d8553195d3b39326233fec093fc2b532da |
memcached_exporter-0.15.2.netbsd-armv6.tar.gz | netbsd | armv6 | 8.29 MiB | 0e0bab35ac5ec9fd8ff61749944f2472b849cd0f4cedcc72ba9ab6cd4685b8e2 |
memcached_exporter-0.15.2.netbsd-armv7.tar.gz | netbsd | armv7 | 8.28 MiB | a13afe1d074974283f9a9eb9ffd981c5c6e98bcd18637a2b9a13a6bfcf4f2797 |
memcached_exporter-0.15.2.openbsd-386.tar.gz | openbsd | 386 | 8.73 MiB | 8681857ea3bf7b7a7f9041d49988d30b9f1c8ab536bd569a197b6ade6d851b28 |
memcached_exporter-0.15.2.openbsd-amd64.tar.gz | openbsd | amd64 | 8.90 MiB | 198741cab72d07e1f307d363409630d0da9ce0db0368cd32f51de8d47fa83987 |
memcached_exporter-0.15.2.openbsd-arm64.tar.gz | openbsd | arm64 | 8.32 MiB | f137dad17f581cb687b29a07b8311300e3b230f36d58f2154028faffc2222cdc |
memcached_exporter-0.15.2.openbsd-armv7.tar.gz | openbsd | armv7 | 8.30 MiB | 724a7c660df70930e5ebbc3670fed374814af7a5174efcb3939c2dc4d6812bc3 |
memcached_exporter-0.15.2.windows-386.zip | windows | 386 | 9.09 MiB | 159f58cc1e298f7867f8d85bacdd8bfd52b4dbb8b14ee6fa349587cbd770e43c |
memcached_exporter-0.15.2.windows-amd64.zip | windows | amd64 | 9.25 MiB | 7fcb42aa282e4d19772dd14d494e7ed5704207834f4248e3e7e0b89badb2ad70 |
memcached_exporter-0.15.2.windows-arm64.zip | windows | arm64 | 8.60 MiB | 0076654936e63c4dffbc0f44743b3499885ef1a2ec3e41ebb7d256206e5be38f |
mysqld_exporter
Exporter for MySQL server metrics prometheus/mysqld_exporter
0.17.2 / 2025-02-25
Release notes |
||||
File name | OS | Arch | Size | SHA256 Checksum |
---|---|---|---|---|
mysqld_exporter-0.17.2.aix-ppc64.tar.gz | aix | ppc64 | 8.21 MiB | 8b7cfeae0ea4c43e979062346f47cb0241db54618929a43d54c13a36a8ab37f8 |
mysqld_exporter-0.17.2.darwin-amd64.tar.gz | darwin | amd64 | 8.94 MiB | c16d12cfff38d6289a374fd9ba7b1bf661de096e79edccfb92ada7f947e586e6 |
mysqld_exporter-0.17.2.darwin-arm64.tar.gz | darwin | arm64 | 8.52 MiB | a55c70f7e2e7c17f9fa388e78174d22739ca5f13f5afd10b674934b11ad451f4 |
mysqld_exporter-0.17.2.dragonfly-amd64.tar.gz | dragonfly | amd64 | 8.94 MiB | f19641bd9d1f10154a92946839486910b0c989174365ff65f45cf08038b19a28 |
mysqld_exporter-0.17.2.freebsd-386.tar.gz | freebsd | 386 | 8.71 MiB | 1ef241c65ab5e9745a85c85067c45f22cd15ce4257527fdefa86df856969dbaa |
mysqld_exporter-0.17.2.freebsd-amd64.tar.gz | freebsd | amd64 | 8.96 MiB | a43fb99fc9f884aca0b94380438d4393a5c28ab19716c7a1f6f07ff832218fc6 |
mysqld_exporter-0.17.2.freebsd-arm64.tar.gz | freebsd | arm64 | 8.39 MiB | 4d2a58b0b1bb2637e80379417f2b1daa0caf50d8d21e8fe810d28c8f77a5ce4d |
mysqld_exporter-0.17.2.freebsd-armv6.tar.gz | freebsd | armv6 | 8.30 MiB | 902e69e3439dfe9ea8dd3f0045dc5b21f36d0268e585e66fb288f773f869b9db |
mysqld_exporter-0.17.2.freebsd-armv7.tar.gz | freebsd | armv7 | 8.29 MiB | 631d68cf6f50eec5c3605de26ab89ed4f6d235ae5e01c57a90ed1e89626b8839 |
mysqld_exporter-0.17.2.illumos-amd64.tar.gz | illumos | amd64 | 8.94 MiB | 401b978b8b7d5c5311507e0f256b20706303c3d232ed1e49f69b48df56a1c5d3 |
mysqld_exporter-0.17.2.linux-386.tar.gz | linux | 386 | 8.91 MiB | a4e53fa4074e34333329a83805875335f2bd9c14f7a6c740a1ab94a922f2cfa9 |
mysqld_exporter-0.17.2.linux-amd64.tar.gz | linux | amd64 | 9.15 MiB | ef6a2322b869d7d3c1ee3493e28a939ff80b367373142b9b2f3f70a6709d00d7 |
mysqld_exporter-0.17.2.linux-arm64.tar.gz | linux | arm64 | 8.59 MiB | 7d7ba18830ca374812a75cca1519b7c2fdea6d14183787bcd1b36900cdf588ee |
mysqld_exporter-0.17.2.linux-armv5.tar.gz | linux | armv5 | 8.48 MiB | e51e5acb11f5252df4147573cb844d04b67df25e5da4e1d6ba11fca1cd53947a |
mysqld_exporter-0.17.2.linux-armv6.tar.gz | linux | armv6 | 8.49 MiB | 344d680499d497eafc51e07e78d912c5714835066784006d10c6aa314620e37b |
mysqld_exporter-0.17.2.linux-armv7.tar.gz | linux | armv7 | 8.48 MiB | 56c5d52f65e593c259d925fc797bf53079cca8c09176b4ba62aeebb2493bb0a9 |
mysqld_exporter-0.17.2.linux-mips.tar.gz | linux | mips | 8.50 MiB | 48ecb2f306899c10b004e0076fe94831f568a56d5cbd39b1d70f09d897eb9fa4 |
mysqld_exporter-0.17.2.linux-mips64.tar.gz | linux | mips64 | 8.45 MiB | 11013efe202951373a350fb9d8496d528811665a398c7396f481f48cbf057c0c |
mysqld_exporter-0.17.2.linux-mips64le.tar.gz | linux | mips64le | 8.18 MiB | fef77522c0d229be58967444b4b12735335156d2c3294864195aac8cf0ffaf6b |
mysqld_exporter-0.17.2.linux-mipsle.tar.gz | linux | mipsle | 8.29 MiB | a3803ce7d96b1b8b9bf6ea3331aad9a510d10ce11386e780f1b2583340f0ced7 |
mysqld_exporter-0.17.2.linux-ppc64.tar.gz | linux | ppc64 | 8.77 MiB | 438c1659f8aff9a70917c9d6f7c632a5ce8ef729d866a81db5376993f71d03e5 |
mysqld_exporter-0.17.2.linux-ppc64le.tar.gz | linux | ppc64le | 8.66 MiB | 1a6f874bae6c9895be4da94f244a16a196fadd9855a8a7949ca9ce12540540e0 |
mysqld_exporter-0.17.2.linux-riscv64.tar.gz | linux | riscv64 | 8.71 MiB | de4615ab30b22f47748ebc9d5792ab4c721ad972ea872acc8b0177ff3b811efb |
mysqld_exporter-0.17.2.linux-s390x.tar.gz | linux | s390x | 9.01 MiB | 3ed7c127439764f822bee474034fa8495866681cb2d45da6c27c5b31adaad4ae |
mysqld_exporter-0.17.2.netbsd-386.tar.gz | netbsd | 386 | 8.69 MiB | 0f716e9fd98ffd6a0cf7878e2cc126b91e818ee2a583ce057505264900ae1484 |
mysqld_exporter-0.17.2.netbsd-amd64.tar.gz | netbsd | amd64 | 8.94 MiB | 17b3aa6e2d9b425ec3a0e23cb22f4372ff5e1b5bf47533cbd44b359aaeb9b7ef |
mysqld_exporter-0.17.2.netbsd-arm64.tar.gz | netbsd | arm64 | 8.38 MiB | f70508c7e28e9d7f17c20de41257e4aa08aefb4691cd8f33c850970941a88e12 |
mysqld_exporter-0.17.2.netbsd-armv6.tar.gz | netbsd | armv6 | 8.28 MiB | fa298a9c1f0f2aa4ae9ea1550687ad9edb1b0ba7ecf286f628d519366c8d444c |
mysqld_exporter-0.17.2.netbsd-armv7.tar.gz | netbsd | armv7 | 8.27 MiB | 94eba338f9ebbacb412ea4543d94e3ac0c8cb33289b8f6e18731497559c836b9 |
mysqld_exporter-0.17.2.openbsd-386.tar.gz | openbsd | 386 | 8.71 MiB | 8a2765cabc83ff302b8fd92ab98aa51ea7a065ab693c09cf6f0cb6cf0640cb21 |
mysqld_exporter-0.17.2.openbsd-amd64.tar.gz | openbsd | amd64 | 8.96 MiB | 787c821eb4dacb2fb8afd9ea5fecaa490b826ab032efe4d4bbf1cc81067a2310 |
mysqld_exporter-0.17.2.openbsd-arm64.tar.gz | openbsd | arm64 | 8.39 MiB | a165bfd0a6cc8b81315a5d321afa0262f12a1f34e4df573f35c7307d063acbf2 |
mysqld_exporter-0.17.2.openbsd-armv7.tar.gz | openbsd | armv7 | 8.29 MiB | 9a25d9252ec99dbcd1c3c1eb379cee542458a14158a4f519f06eb191c5d697a6 |
mysqld_exporter-0.17.2.windows-386.zip | windows | 386 | 9.08 MiB | 85cafe23321960d3d6a780db97e2552d843280e74afc1d3b29af2440e969091e |
mysqld_exporter-0.17.2.windows-amd64.zip | windows | amd64 | 9.32 MiB | b15c4b851236f63c774969670beedca64a344e38c1469e457548cabb831fab20 |
mysqld_exporter-0.17.2.windows-arm64.zip | windows | arm64 | 8.69 MiB | 07da1743f0206445efb8602d148949d3632367292a77e733a8ef7f927dd83cac |
node_exporter
Exporter for machine metrics prometheus/node_exporter
1.9.1 / 2025-04-01
Release notes |
||||
File name | OS | Arch | Size | SHA256 Checksum |
---|---|---|---|---|
node_exporter-1.9.1.darwin-amd64.tar.gz | darwin | amd64 | 5.24 MiB | 1484572dc2845de3278953e3a83fab0db570fcbf3a39357b8e42bfe06aef62a9 |
node_exporter-1.9.1.darwin-arm64.tar.gz | darwin | arm64 | 4.82 MiB | 3cfdcbc73436fdb631a8837ea9b57c846e0aeba66704ce84d6dafb23e84825eb |
node_exporter-1.9.1.linux-386.tar.gz | linux | 386 | 10.65 MiB | 42c8a3853d7ab50b1d9fd1181411452aeefe70eec44923e808c44fb4169e3205 |
node_exporter-1.9.1.linux-amd64.tar.gz | linux | amd64 | 11.05 MiB | becb950ee80daa8ae7331d77966d94a611af79ad0d3307380907e0ec08f5b4e8 |
node_exporter-1.9.1.linux-arm64.tar.gz | linux | arm64 | 10.32 MiB | 848f139986f63232ced83babe3cad1679efdbb26c694737edc1f4fbd27b96203 |
node_exporter-1.9.1.linux-armv5.tar.gz | linux | armv5 | 10.20 MiB | 31350f2cf21916e0602b59e7d03b870e8b9528eec4bbd88fa2e8ce7855b063c2 |
node_exporter-1.9.1.linux-armv6.tar.gz | linux | armv6 | 10.21 MiB | 3fb1de42b4dfd72147574d1c0c3b24077b49c570b71cecb698867f645cd3d8f6 |
node_exporter-1.9.1.linux-armv7.tar.gz | linux | armv7 | 10.20 MiB | f04c95c9c474516b06ab10e34a663992ccad4c9185596e404f02790ec23d83d9 |
node_exporter-1.9.1.linux-mips.tar.gz | linux | mips | 10.18 MiB | b2d7789a9750eb9bc79702e5a2c52bfba24c5449fb255cd7aeae781a01bed09f |
node_exporter-1.9.1.linux-mips64.tar.gz | linux | mips64 | 10.14 MiB | c647dbcb93a7e7d28b60f4d28e6ce7cd6bfd49e21756e03d4862c236095782b4 |
node_exporter-1.9.1.linux-mips64le.tar.gz | linux | mips64le | 9.82 MiB | 729010e4cdc8d345869c6f93e5a4f092f64237be04ad7faa91a077aa6a73a970 |
node_exporter-1.9.1.linux-mipsle.tar.gz | linux | mipsle | 9.93 MiB | 326b5bef89542456ba7916783b65c8d1aef60ed38baad4886d0f001d3d265c56 |
node_exporter-1.9.1.linux-ppc64.tar.gz | linux | ppc64 | 10.54 MiB | d1a1326aa253ac934cbc692a9beaa8cb92913f4593ec7444d6837e9a12752836 |
node_exporter-1.9.1.linux-ppc64le.tar.gz | linux | ppc64le | 10.39 MiB | ebb869058e7730f2e3e3e96be873d39951b2353f188dcdb3e6f1a829ffa2ad00 |
node_exporter-1.9.1.linux-riscv64.tar.gz | linux | riscv64 | 10.50 MiB | 93b079535e60785fc457f9a745c87812ac87d8febc3b044af31931fe1f3b40c9 |
node_exporter-1.9.1.linux-s390x.tar.gz | linux | s390x | 10.83 MiB | 80eddf59704149a0beb545be7f871b30ee0beaa24bd4ecf7da1ab738bee6985c |
node_exporter-1.9.1.netbsd-386.tar.gz | netbsd | 386 | 9.25 MiB | 74124a2bf506a560202d3afbe1e9274f4580f57368a893c388c8b7743a07d412 |
node_exporter-1.9.1.netbsd-amd64.tar.gz | netbsd | amd64 | 9.56 MiB | 0a17f6b7cece1156f472ec2bba29de2bd50e2fa05fd21e57e6df34c414305542 |
node_exporter-1.9.1.openbsd-amd64.tar.gz | openbsd | amd64 | 9.54 MiB | 7316d8f9f912dd404109ddf391676381f102aebd3d452127062e2b4853136e94 |
promlens
PromLens – The query builder, analyzer, and explainer for PromQL prometheus/promlens
0.3.0 / 2022-12-05
Release notes |
||||
File name | OS | Arch | Size | SHA256 Checksum |
---|---|---|---|---|
promlens-0.3.0.darwin-amd64.tar.gz | darwin | amd64 | 16.90 MiB | a9dfe174d57e6ecfb456db2a7161de3d49f72ce8cdc312855497c89f442d02cb |
promlens-0.3.0.darwin-arm64.tar.gz | darwin | arm64 | 16.25 MiB | bff5696e41d11dab37edacb941c70cc879a9e22a484403685bf1c53e2108d29a |
promlens-0.3.0.freebsd-386.tar.gz | freebsd | 386 | 16.80 MiB | 7e26b9460756bce47df33f2a9b1028cbff2703f59c3bd7a1d8a033be9a128b82 |
promlens-0.3.0.freebsd-amd64.tar.gz | freebsd | amd64 | 17.09 MiB | 567a106c02bbf449610e67c245fcf316de529b5062412aeae7082ccf49b488b3 |
promlens-0.3.0.freebsd-arm64.tar.gz | freebsd | arm64 | 15.92 MiB | 05a72dc52a4415d19eb789d1f231142870fc838ffd773986e3b81949ea53a121 |
promlens-0.3.0.freebsd-armv6.tar.gz | freebsd | armv6 | 16.24 MiB | 2c60a57080f88c41949b96b839abbc2a339379ece6f6f8f12139557ae71278cb |
promlens-0.3.0.freebsd-armv7.tar.gz | freebsd | armv7 | 16.23 MiB | 170a760e379e8b818a777dbb2651d9500115d3d31a4c216dcdb1868b36a7331d |
promlens-0.3.0.linux-386.tar.gz | linux | 386 | 16.87 MiB | debf894ba6b38c6b90b46962f1cec4808a46a56c14f9ac6fb4689b9ac0867155 |
promlens-0.3.0.linux-amd64.tar.gz | linux | amd64 | 17.15 MiB | 8fdcc621cf559b7e55c0e3cf334b8662ae8f53cf999cdf5d7d303d2841f62ef0 |
promlens-0.3.0.linux-arm64.tar.gz | linux | arm64 | 16.02 MiB | 7a23434c73b22fb2ca5a9564d3014795a57182c6880a79c9a666504e2a8a3c67 |
promlens-0.3.0.linux-armv5.tar.gz | linux | armv5 | 16.34 MiB | 0bfa7f30cda8766402d444405842e1c06055e4e47d91fef9ffca61fe102e92f9 |
promlens-0.3.0.linux-armv6.tar.gz | linux | armv6 | 16.33 MiB | 0ebcf362db652b8ae8d5b2e88967abc57f3583f5e699ef1885a948e4a0999144 |
promlens-0.3.0.linux-armv7.tar.gz | linux | armv7 | 16.31 MiB | 78ba6d58c8700f837161f7647d6ad79f8e582e56544b802c5900ca95b18d70e4 |
promlens-0.3.0.linux-ppc64le.tar.gz | linux | ppc64le | 15.97 MiB | 2bc1a006a3e0dc03a78802cd828e3e63d6bb2d0501156b17e8f59a34bcce2ab8 |
promlens-0.3.0.linux-s390x.tar.gz | linux | s390x | 17.07 MiB | 0f8dc5c5e5ad8a18b7dc01571be91e2b0ab392369165c352e975023ece125df2 |
promlens-0.3.0.netbsd-amd64.tar.gz | netbsd | amd64 | 17.05 MiB | 58bcfca0d613ed0fcad91fc296c3e2e99c493574f45d01b3d410a6e29ffc1769 |
promlens-0.3.0.windows-amd64.zip | windows | amd64 | 17.69 MiB | daf50de8f0660324dc208105e5b89a2974fdabb037987ed95d963fea94501933 |
promlens-0.3.0.windows-arm64.zip | windows | arm64 | 16.58 MiB | 0948ba991a4501f6f4cfe5186a684ceb3e27a2250ce0ec409dcc0e7dfe95d079 |
pushgateway
Push acceptor for ephemeral and batch jobs. prometheus/pushgateway
1.11.1 / 2025-04-09
Release notes |
||||
File name | OS | Arch | Size | SHA256 Checksum |
---|---|---|---|---|
pushgateway-1.11.1.aix-ppc64.tar.gz | aix | ppc64 | 10.34 MiB | 374cf1baf4713f614c48d1de1fad1be4c551a4581355cec1b3824856fa369798 |
pushgateway-1.11.1.darwin-amd64.tar.gz | darwin | amd64 | 11.07 MiB | 74dd4f71449793977e468fc7fc779a29bcfcc3479373bf6dc75043615fdfdc33 |
pushgateway-1.11.1.darwin-arm64.tar.gz | darwin | arm64 | 10.58 MiB | 8ce3f74a580908ef9c9b6f7a58595cac4edd6ab0df567e292cdd51ed6384060f |
pushgateway-1.11.1.dragonfly-amd64.tar.gz | dragonfly | amd64 | 11.09 MiB | b436ddc934b23a4609ca7634ca0410e476c2ccad3d7427b2a0dd4bb7bdb5663b |
pushgateway-1.11.1.freebsd-386.tar.gz | freebsd | 386 | 10.79 MiB | 9f701a98ce9b595774cc2f339821b82a2a2d8def6b8f7a87d0d677d58fb2a877 |
pushgateway-1.11.1.freebsd-amd64.tar.gz | freebsd | amd64 | 11.12 MiB | 18e70db9616e4b4c3a1fae5d01267b957436489fed9a0ff8690a7dcfe8677fbd |
pushgateway-1.11.1.freebsd-arm64.tar.gz | freebsd | arm64 | 10.45 MiB | 2ea30b404d1a29520c479cec4de264b397d4535cbd7abc320fbf474e99d7a230 |
pushgateway-1.11.1.freebsd-armv6.tar.gz | freebsd | armv6 | 10.43 MiB | f5dacb376acacddc05b1f437dca5bf1a97b97cc56ce96f8367c31ed66e28ca7d |
pushgateway-1.11.1.freebsd-armv7.tar.gz | freebsd | armv7 | 10.42 MiB | 99b185a495118dbaa2cd9abfc067dd7d5bac57524d39f8d0b15164ec872eb702 |
pushgateway-1.11.1.illumos-amd64.tar.gz | illumos | amd64 | 11.09 MiB | e027b5920ed05ada2af4f568b57c2f54fcbf75a70332b5267f8d32050c787e06 |
pushgateway-1.11.1.linux-386.tar.gz | linux | 386 | 10.98 MiB | 55f8c1bb21bcf8159ae2ccac89c27239c468a64fa7d3b0598d25002853e61800 |
pushgateway-1.11.1.linux-amd64.tar.gz | linux | amd64 | 11.30 MiB | 6ce6ffab84d0d71195036326640295c02165462abd12b8092b0fa93188f5ee37 |
pushgateway-1.11.1.linux-arm64.tar.gz | linux | arm64 | 10.65 MiB | b6dc1c1c46d1137e5eda253f6291247e39330d3065a839857b947e59b4f3e64b |
pushgateway-1.11.1.linux-armv5.tar.gz | linux | armv5 | 10.61 MiB | b42ab3d7a09742a33f6d394791dc5eb68bd9289440e737e22d42714d900246c0 |
pushgateway-1.11.1.linux-armv6.tar.gz | linux | armv6 | 10.61 MiB | 768988b1c18293313726dd48a3d9622ebd0edf08457acfd940ecedb15742c636 |
pushgateway-1.11.1.linux-armv7.tar.gz | linux | armv7 | 10.60 MiB | 9febe94fa9d24b6c42403ee6e1d7849b5e7200e0e049b722e1761d10572f1d3d |
pushgateway-1.11.1.linux-mips.tar.gz | linux | mips | 10.60 MiB | 0e4acdeeb31f44ac5e5cb837010241714a861c2b2d7e50777606afe1a94e57dd |
pushgateway-1.11.1.linux-mips64.tar.gz | linux | mips64 | 10.53 MiB | a721e97e54f4da8a359a444582011ce1d61d9db70a3bce7c6011a0ae37c714d5 |
pushgateway-1.11.1.linux-mips64le.tar.gz | linux | mips64le | 10.26 MiB | 647a51d7716e27adab7ed3d63ce6a870cb9efa715fef3d53583a795659df67e6 |
pushgateway-1.11.1.linux-mipsle.tar.gz | linux | mipsle | 10.37 MiB | 40a69f6cdd28db2d3d5bfe425982e18404b3aefc937679c07e4bf676cead5a90 |
pushgateway-1.11.1.linux-ppc64.tar.gz | linux | ppc64 | 10.93 MiB | 5ddc0ba6d1fc81a1e514bb97a1c0729331194723ed3e2560408a7e43be756f84 |
pushgateway-1.11.1.linux-ppc64le.tar.gz | linux | ppc64le | 10.73 MiB | a51db7b2154e301a5184cfa5430f17feca39e7c1f10a3293bfc2d2f508e1ebd0 |
pushgateway-1.11.1.linux-riscv64.tar.gz | linux | riscv64 | 10.88 MiB | 5ff6c37709c89bb02112abe20c7b9af11d228376413c63006754af2de7e28085 |
pushgateway-1.11.1.linux-s390x.tar.gz | linux | s390x | 11.09 MiB | 8b4d5650d41381dceb83acb958a2a643f20a86695e2ce6182a6ba28f7c12715f |
pushgateway-1.11.1.netbsd-386.tar.gz | netbsd | 386 | 10.76 MiB | 2b8677b647f75247e1cfa2333df82fb2336ff043a59afc79a44fb74fb55c4af1 |
pushgateway-1.11.1.netbsd-amd64.tar.gz | netbsd | amd64 | 11.09 MiB | 0c13081912a6a991f8cbf9c3d92d9707ca785c980283db29a063257563894e9a |
pushgateway-1.11.1.netbsd-arm64.tar.gz | netbsd | arm64 | 10.42 MiB | b0005a230b6dd939d5e2df02de378419bb21a4220563f2ce72030a5b3a55a518 |
pushgateway-1.11.1.netbsd-armv6.tar.gz | netbsd | armv6 | 10.41 MiB | a24d50d41893fcddcc0ec902626f71050e1b5c6da3af7f84d4a4c8123851a82d |
pushgateway-1.11.1.netbsd-armv7.tar.gz | netbsd | armv7 | 10.40 MiB | ebdd816580b8c5dfef9ed556c735685835f8e28fc1942ec090f9f86e1941a385 |
pushgateway-1.11.1.openbsd-386.tar.gz | openbsd | 386 | 10.78 MiB | 7cd2acd2fd46c94fdabe581d6b97574d2cab9071b18d8a9e0a79c10359bdcd62 |
pushgateway-1.11.1.openbsd-amd64.tar.gz | openbsd | amd64 | 11.11 MiB | 698680fca769dc185f66086d3d032459d6b3eeb8f4febd78c7ff26ea65efd281 |
pushgateway-1.11.1.openbsd-arm64.tar.gz | openbsd | arm64 | 10.45 MiB | dee87830da52a26ca3691de0f090e14505f75d07988bbd120d13fdbb660999bf |
pushgateway-1.11.1.openbsd-armv7.tar.gz | openbsd | armv7 | 10.42 MiB | d6456c9c02eb80938103720c111e30eed6fb52edbf2dee61f138900b2e9e5daa |
pushgateway-1.11.1.windows-386.zip | windows | 386 | 11.16 MiB | 2a9beb7479aebd1f8b17d64836a5a0dc92cf3f15d081556c551c3523aba4913c |
pushgateway-1.11.1.windows-amd64.zip | windows | amd64 | 11.46 MiB | 930d7a1748ff1cfabdfd489b306a1b1d9c0c1c4fb050c91aa2fd0b932308789e |
pushgateway-1.11.1.windows-arm64.zip | windows | arm64 | 10.75 MiB | 832ccfdd68d1f3431723c3b67c76723eba35a3916f2a29c6aa4dc41921f24d7e |
statsd_exporter
StatsD to Prometheus metrics exporter prometheus/statsd_exporter
0.28.0 / 2024-10-25
Release notes |
||||
File name | OS | Arch | Size | SHA256 Checksum |
---|---|---|---|---|
statsd_exporter-0.28.0.aix-ppc64.tar.gz | aix | ppc64 | 7.87 MiB | c40f45e2cae67d129718fbbf6e7bac6ef8c27d354595963c8e300d5be6cbd858 |
statsd_exporter-0.28.0.darwin-amd64.tar.gz | darwin | amd64 | 8.58 MiB | 341f51d01d3cbadf58c233046c9b4ea8fbb455137c6c19742b96b5c1922b400a |
statsd_exporter-0.28.0.darwin-arm64.tar.gz | darwin | arm64 | 8.17 MiB | c97d3675707aa7d576a44e12941fd771846e9f55842505c10b59a7b34828c659 |
statsd_exporter-0.28.0.dragonfly-amd64.tar.gz | dragonfly | amd64 | 8.59 MiB | 9ada15c2ac5971bab80c6461b7c9a1517d7dc4a17c915e78cd585f2e039ca01e |
statsd_exporter-0.28.0.freebsd-386.tar.gz | freebsd | 386 | 8.36 MiB | c11f1be806d7eb6be4f73464b67ab5a8c2a1e585e7bb85d02e73719f2b65e75f |
statsd_exporter-0.28.0.freebsd-amd64.tar.gz | freebsd | amd64 | 8.61 MiB | bf8f69d5587cde18e8799a0ec0148446793a96a390e1bdb7ea62055064d828c1 |
statsd_exporter-0.28.0.freebsd-arm64.tar.gz | freebsd | arm64 | 8.05 MiB | ea4aa3eebd0307aff9c7f06222c7c72e1a6402d5bc1986f89fc6d4d31bea140a |
statsd_exporter-0.28.0.freebsd-armv6.tar.gz | freebsd | armv6 | 7.96 MiB | d9f80b4d74956e1c4090f296b77cfdca5448ca046b9b793c5ad8519cc1d8d93d |
statsd_exporter-0.28.0.freebsd-armv7.tar.gz | freebsd | armv7 | 7.95 MiB | 377f2081fd9a74527e81d05eaff7d27e4d4740153fc88e15355f0a626ff99259 |
statsd_exporter-0.28.0.illumos-amd64.tar.gz | illumos | amd64 | 8.59 MiB | e493c6942c7df667413cf1f86990227b3211b5b4a012f423e240acfe5a969250 |
statsd_exporter-0.28.0.linux-386.tar.gz | linux | 386 | 8.44 MiB | daac3413aee0e40222cc7171a4ca2bc658fd09151aa719dca3a8b6eaf7ee3752 |
statsd_exporter-0.28.0.linux-amd64.tar.gz | linux | amd64 | 8.68 MiB | 6951081e3115669e4353975f897dda1cefddef5a5d16addc908485d9be16b72b |
statsd_exporter-0.28.0.linux-arm64.tar.gz | linux | arm64 | 8.12 MiB | 7d361ebbd77b8cd51d03ad2e1c6fab727b9ae1b8322a5a855c1072dfd4491088 |
statsd_exporter-0.28.0.linux-armv5.tar.gz | linux | armv5 | 8.04 MiB | 17343f3204359d64f776f3d33b6f194c33f696b69562ea45d83499aa93d4399c |
statsd_exporter-0.28.0.linux-armv6.tar.gz | linux | armv6 | 8.03 MiB | b978f43829fd96cc144e66237f29baf9849f24a07e920f7d051fa37ca238f7a0 |
statsd_exporter-0.28.0.linux-armv7.tar.gz | linux | armv7 | 8.03 MiB | dbce56d15eaf7d70fd420428a31429fe835b282e59c2ec7e562d0c048369a908 |
statsd_exporter-0.28.0.linux-mips.tar.gz | linux | mips | 8.04 MiB | 43da6b58737ea224a9763ad21d0853511470c05e736501a70845e2371f437181 |
statsd_exporter-0.28.0.linux-mips64.tar.gz | linux | mips64 | 7.98 MiB | ac524e0b9b7c7b7df33f4addeb201cb670abfdd61a91bc0e8739d6837a2c790c |
statsd_exporter-0.28.0.linux-mips64le.tar.gz | linux | mips64le | 7.73 MiB | a7e5961b6b17970ab467c54197fe8a7bc125d7f5b591800cf9e9e30923709c52 |
statsd_exporter-0.28.0.linux-mipsle.tar.gz | linux | mipsle | 7.85 MiB | 2692a051bf386623b9e6710b37e2b405bd6942c91b2b4eaeceb53fbd1890aec2 |
statsd_exporter-0.28.0.linux-ppc64.tar.gz | linux | ppc64 | 8.29 MiB | c6c1a6cb670d2626d250de54a4c5318e11c0bb32b07ec79858637a8ea4fe4a38 |
statsd_exporter-0.28.0.linux-ppc64le.tar.gz | linux | ppc64le | 8.20 MiB | 5c12560ea348b7a20df13fb15950e7e95f313d844146acb4889ca8767bc1d686 |
statsd_exporter-0.28.0.linux-riscv64.tar.gz | linux | riscv64 | 8.24 MiB | 2b5ce7eaa70285e02488d4f71323b05ec06229e4b5a3c65dd6de694b79689425 |
statsd_exporter-0.28.0.linux-s390x.tar.gz | linux | s390x | 8.50 MiB | 0c508d7d9a8be8b5963146fb285c25d843c85383dcbe057cd9c2779d889a18b8 |
statsd_exporter-0.28.0.netbsd-386.tar.gz | netbsd | 386 | 8.34 MiB | 5b5a508613d4d9d91e61502f29827d215cd496ab87103216e77358522ae45120 |
statsd_exporter-0.28.0.netbsd-amd64.tar.gz | netbsd | amd64 | 8.58 MiB | a5d8de116ba23bd8eb30570cf00f74cc3cc612e5dec289579c18ae1fb95451c6 |
statsd_exporter-0.28.0.netbsd-arm64.tar.gz | netbsd | arm64 | 8.05 MiB | 4bd78bd732ec253931cfd690263c224d570ab48a0ddfdb50635f35dfe3aa957d |
statsd_exporter-0.28.0.netbsd-armv6.tar.gz | netbsd | armv6 | 7.94 MiB | 3b466549bcc723675242a0bcc7e5f2aec9763f5e56ca7e1dd1cd1f7ff8292f46 |
statsd_exporter-0.28.0.netbsd-armv7.tar.gz | netbsd | armv7 | 7.93 MiB | 8102b467efe7b7a55c38bdeb5e060d0c1741619684f0a8aede5d60c9e3364415 |
statsd_exporter-0.28.0.openbsd-386.tar.gz | openbsd | 386 | 8.35 MiB | f5d1a2550f54b4481ed913d61510695d1d9490f6b17c80e986c26ffb6807779e |
statsd_exporter-0.28.0.openbsd-amd64.tar.gz | openbsd | amd64 | 8.61 MiB | 35d94e0edca47ef15522cfad211267872aa8d5192f3c922bffce4b7d985baf90 |
statsd_exporter-0.28.0.openbsd-arm64.tar.gz | openbsd | arm64 | 8.05 MiB | cb69d48edacfc8a3cf55c256cb721c85cc355e0d0981427449adeed27aaa8d46 |
statsd_exporter-0.28.0.openbsd-armv7.tar.gz | openbsd | armv7 | 7.95 MiB | 21583179b333bfd076da2ba0f8a20e88e52b2a4d7fd66d6a93f10b29aa70be64 |
statsd_exporter-0.28.0.windows-386.zip | windows | 386 | 8.70 MiB | 6b1bbdc04e0d72d7bc5bf1a75e6be1ede788ed0bcf89d1a9a6a2d06152b21ec7 |
statsd_exporter-0.28.0.windows-amd64.zip | windows | amd64 | 8.93 MiB | 2270601d87b78200e485731755c3d99f0aa7c68da92801e56bbfe031ad81e257 |
statsd_exporter-0.28.0.windows-arm64.zip | windows | arm64 | 8.32 MiB | cba60c1cbb618a2654bbe127304e4e5689fc7ce8e79a512043d13203d464516f |
Introduction
Window Node exporter is agent that collect and send the window machine hardware utilization metrics to the Prometheus server by using HTTP protocol metric, It used port 9182 by default.
Prerequisites
Up and running Prometheus server, Grafana Server in your machine / network environment or you can use the given link to setup Prometheus and Grafana on ubuntu machine to perform this window machine monitoring.
To install Prometheus – https://www.devopstricks.in/install-prometheus-on-ubuntu-22-04/
To install Grafana – https://www.devopstricks.in/installing-grafana-10-on-ubuntu-22-04-lts/
In this post, We will show you how to install window exporter on window machine to get enable monitoring like CPU, Memory, Disk Space, processes and bandwidth etc.
Step 1: Download Window Exporter Package
We need to download the window exporter package by using given link.
https://github.com/prometheus-community/windows_exporter/releases
You can choose the package as per your architecture.
Click the download the right package, In my case i am using window 10 Prod 64 bit So then i can download windows_exporter-0.24.0-amd64.msi or windows_exporter-0.24.0-arm64.exe.
While downloading the package we should get pop-up like this, We need to click in Keep button and ignore warning that this time.
Step 2: Installing Window Exporter
After downloaded the window exporter, We need to run the package and allow the installation.
After installation of window exporter package, We need to check the followings endpoint to get window machine metrics like this.
Expose metric URL – localhost:9182/metrics
Step 3: Add Firewall Rules
We need to open the port 9182 port in your window machine and your cloud environment in order to fetch window metrics from Prometheus server.
Step 4: Configure Prometheus
We need to add the window machine endpoint to fetch metrics To do that we need to add the followings configure in Prometheus configuration file.
To open Prometheus configuration file.
sudo vim /etc/prometheus/prometheus.yml
Add the in the last following config.
- job_name: window
# If prometheus-node-exporter is installed, grab stats about the local
# machine by default.
static_configs:
- targets: ['Type-Window-IP-Here:9182']
This is my sample configuration file with window exporter.
# Sample config for Prometheus.
global:
scrape_interval: 15s # Set the scrape interval to every 15 seconds. Default is every 1 minute.
evaluation_interval: 15s # Evaluate rules every 15 seconds. The default is every 1 minute.
# scrape_timeout is set to the global default (10s).
# Attach these labels to any time series or alerts when communicating with
# external systems (federation, remote storage, Alertmanager).
external_labels:
monitor: 'example'
# Alertmanager configuration
alerting:
alertmanagers:
- static_configs:
- targets: ['localhost:9093']
# Load rules once and periodically evaluate them according to the global 'evaluation_interval'.
rule_files:
# - "first_rules.yml"
# - "second_rules.yml"
# A scrape configuration containing exactly one endpoint to scrape:
# Here it's Prometheus itself.
scrape_configs:
# The job name is added as a label `job=<job_name>` to any timeseries scraped from this config.
- job_name: 'prometheus'
# Override the global default and scrape targets from this job every 5 seconds.
scrape_interval: 5s
scrape_timeout: 5s
# metrics_path defaults to '/metrics'
# scheme defaults to 'http'.
static_configs:
- targets: ['localhost:9090']
- job_name: node
# If prometheus-node-exporter is installed, grab stats about the local
# machine by default.
static_configs:
- targets: ['localhost:9100']
- job_name: window
# If prometheus-node-exporter is installed, grab stats about the local
# machine by default.
static_configs:
- targets: ['100.100.100.00:9182']
Save and exit from the vim text editor.
Step 5: Restart Prometheus Service
To get updated and new changes with Prometheus config file, We need to restart the Prometheus service.
To restart.
sudo systemctl restart prometheus.service
To check status.
sudo systemctl status prometheus.service
We are all good to here, Now we need to validate the window target metrics in Prometheus UI.
Step 6: Validate the Window Exporter with Prometheus
To validate the window exporter endpoint with Prometheus to know window Machin’s metric is showing with Prometheus or not.
Access to Prometheus endpoints with http://Prometheus-IP:9090
Click on status > targets
We should get output like this.
Here we can see that 1 window machine is showing that we just configured, Now we are good to use Grafana.
Step 7: Importing Window Node Exporter Grafana Dashboard
We use the following links to get predefine Window Node Exporter Grafana dashboard.
https://grafana.com/grafana/dashboards/14451-windows-exporter-for-prometheus-dashboard-en/ (Recommended )
https://grafana.com/grafana/dashboards/15620-windows-node-exporter/
https://grafana.com/grafana/dashboards/14694-windows-exporter-dashboard/
https://grafana.com/grafana/dashboards/18699-windows-node-exporter-full-1/
https://grafana.com/grafana/dashboards/14499-windows-node/
https://grafana.com/grafana/dashboards/14510-windows-exporter-node/
https://grafana.com/grafana/dashboards/6593-windows-node/
Conclusion
We have done successfully enabled window machine monitoring by using window node exporter, Still you are having any issue, So please leave a comment below.
-
Expertise in Linux, Git, Jenkins, Docker, Ansible, AWS/Azure, K8s, Terraform, and other DevOps tools.
View all posts
This tutorial is going to take you through on how to Monitor Windows system metrics using Prometheus node exporter. Node Exporter is a Prometheus exporter for server and OS level metrics with configurable metric collectors. It lets us keep track of things like RAM, storage space, and CPU utilization. Node exporter is a useful tool for gathering and monitoring all metrics and statistics associated with the operating system.
To utilize the Prometheus Node Exporter, you must first have a Prometheus Server installed and running. Check out our article on how to Install Prometheus on Ubuntu 22.04.
Install Node Exporter on Windows system
- On your windows operating system, download Node exporter for windows from here and install it.
- After installing, node exporter should be running on port 9182. Fire up your favorite browser on your windows and open the following URL
localhost:9182/metrics
. If everything goes well you should see the window below.
Add Windows Exporter to Prometheus
- Start by getting your windows IP. To know your windows IP open CMD and type the following command.
ipconfig
- Then on your Linux system open Prometheus config file.
sudo nano /etc/prometheus/prometheus.yml
- Add the following config at the end of the file, save and close.
- job_name: "WMI Exporter" # metrics_path defaults to '/metrics' # scheme defaults to 'http'. static_configs: - targets: ["YOUR-WINDOWS-IP:9182"]
- Restart the prometheus systemd service using the command below for the changes to take effect.
sudo systemctl restart prometheus.service
- Confirm Prometheus is running.
sudo systemctl status prometheus
Sample output
● prometheus.service - Prometheus Loaded: loaded (/etc/systemd/system/prometheus.s> Active: active (running) since Mon 2022-03-07 18> Docs: https://prometheus.io/docs/introduction/> Main PID: 38909 (prometheus) Tasks: 8 (limit: 4588) Memory: 77.3M CGroup: /system.slice/prometheus.service └─38909 /usr/local/bin/prometheus --conf> Mar 07 18:42:14 chat.itnixpro.com prometheus[38909]: > Mar 07 18:42:14 chat.itnixpro.com prometheus[38909]: > Mar 07 18:42:14 chat.itnixpro.com prometheus[38909]: > Mar 07 18:42:14 chat.itnixpro.com prometheus[38909]: > Mar 07 18:42:14 chat.itnixpro.com prometheus[38909]: > Mar 07 18:42:14 chat.itnixpro.com prometheus[38909]: > Mar 07 18:42:14 chat.itnixpro.com prometheus[38909]: > Mar 07 18:42:14 chat.itnixpro.com prometheus[38909]: > Mar 07 18:42:14 chat.itnixpro.com prometheus[38909]: > Mar 07 18:42:14 chat.itnixpro.com prometheus[38909]: >
- You can now check node exporter status on Prometheus by clicking on Status then Targets as shown below.
- Windows Node exporter should be UP as shown below.
Monitoring Windows with Prometheus
- On your browser and navigate to
localhost:9090/graph
orserver-IP:9090/graph
then on the search bar type windows, a list of windows exporter metrics will appear as shown below.
- Scroll on the metrics and select any that you want to monitor.
- Click the Execute button then Graph tab to visualize.
- You have reached the end of the article, Congratulations. You have learned how to Monitor Windows system metrics using Prometheus node exporter.
Read more about Monitoring using Prometheus.
Other Tutorials
Integrate Prometheus with Grafana for Monitoring
Install Grafana on Ubuntu 22.04
Install Prometheus on Ubuntu 22.04
Tutorial for Setting Up Prometheus Node Exporter on Windows with Docker
This tutorial will guide you through setting up the Prometheus Node Exporter on a Windows system using Docker. We will go through the steps to download the image, run the container, and configure the Node Exporter to collect metrics.
Prerequisites
- Docker installed on your Windows system
- Basic knowledge of Docker and containerization
- A Linux environment (e.g., Ubuntu) installed on your Windows system for the Node Exporter to run
1. Download the Prometheus Node Exporter Docker image
First, download the Docker image for the Prometheus Node Exporter from the official Docker Hub repository:
docker pull quay.io/prometheus/node-exporter:latest
2. Run the Docker container
Create a new directory to store the Docker files and logs:
mkdir docker-node-exporter
Move the downloaded Docker image to the new directory:
mv node-exporter_latest.tar.gz docker-node-exporter/
Then, run the Docker container using the following command:
docker run -d --net="host" --pid="host" -v "/:/host:ro,rslave" quay.io/prometheus/node-exporter:latest --path.rootfs=/host
This command will download the image, create a new container, and run the Node Exporter. The --path.rootfs=/host
flag mounts the root filesystem of the container to the host system.
Configuration
To configure the Node Exporter to collect metrics, you need to edit the configuration file. Open the node_exporter.yml
file in a text editor and add the following configuration:
global:
scrape_interval: 15s
evaluation_interval: 15s
scrape_configs:
- job_name: 'prometheus'
kubernetes_sd_configs:
- role: pod
relabel_configs:
- source_labels: [__meta_kubernetes_pod_label_app_name]
action: keep
regex: prometheus
- source_labels: [__address__]
action: replace
target_label: __address__
This configuration will scrape metrics from the Kubernetes pods labeled with app_name: prometheus
and replace the __address__
label with the pod’s IP address.
Troubleshooting
If you encounter the error docker: Error response from daemon: path / is mounted on / but it is not a shared or slave mount
, it means that the container is trying to mount a local path that is not a shared or slave mount.
To resolve this issue, make sure that the Docker host has the necessary permissions to access the local path. You can try running the container with the --privileged
flag:
docker run -d --net="host" --pid="host" -v "/:/host:ro,rslave" --privileged quay.io/prometheus/node-exporter:latest --path.rootfs=/host
This command will run the container with elevated privileges, allowing it to access the local path.
Conclusion
In this tutorial, you have learned how to set up the Prometheus Node Exporter on a Windows system using Docker. You have downloaded the Docker image, run the container, and configured the Node Exporter to collect metrics. If you encounter any issues, refer to the troubleshooting section for solutions.