Package Details: prometheus-bin 2.50.1-1

Git Clone URL: https://aur.archlinux.org/prometheus-bin.git (read-only, click to copy)
Package Base: prometheus-bin
Description: An open-source service monitoring system and time series database (binary, not built from source)
Upstream URL: http://prometheus.io
Licenses: Apache
Conflicts: prometheus, prometheus-git
Provides: prometheus
Submitter: Slash
Maintainer: KingCrunch
Last Packager: KingCrunch
Votes: 5
Popularity: 0.000000
First Submitted: 2016-07-02 21:22 (UTC)
Last Updated: 2024-03-07 12:31 (UTC)

Latest Comments

Slash commented on 2020-03-07 23:50 (UTC)

@mlotysz - Thanks, I updated the PKGBUILD.

mlotysz commented on 2020-03-06 10:38 (UTC) (edited on 2020-03-06 10:44 (UTC) by mlotysz)

I restored, I think missing, source pkg binaries and it worked for me (x86_64). Patch is here: https://gist.github.com/mlotysz/1512d68f9aca5e99002741bce035f654

erkexzcx commented on 2020-02-26 14:18 (UTC)

Hey. Could you please add arm64 (aarch64) support too?

https://github.com/prometheus/prometheus/releases/download/v2.16.0/prometheus-2.16.0.linux-arm64.tar.gz

Slash commented on 2018-07-21 17:19 (UTC)

@uleenucks - Fixed, thanks!

uleenucks commented on 2018-07-21 12:11 (UTC)

Same thing as in alertmanager-bin. systemd service files need not being executable

# Install SystemD Service File
install -D -m0755 "${srcdir}/prometheus.service" \
    "${pkgdir}/usr/lib/systemd/system/prometheus.service"

should read

# Install SystemD Service File
install -D -m0644 "${srcdir}/prometheus.service" \
    "${pkgdir}/usr/lib/systemd/system/prometheus.service"

Slash commented on 2017-11-23 07:07 (UTC)

@lolihunter - Thanks, I updated the service file

lolihunter commented on 2017-11-23 06:16 (UTC)

Lines 9 through 12 need correcting for v2. "storage.local.path" is now "storage.tsdb.path", and all variables need double --, otherwise the system fails to start. This worked for me: --config.file "/etc/prometheus/prometheus.yml" \ --storage.tsdb.path "/var/lib/prometheus" \ --web.console.libraries "/etc/prometheus/console_libraries" \ --web.console.templates "/etc/prometheus/consoles"