Skip to content

Commit

Permalink
Add pg_prometheus (#283)
Browse files Browse the repository at this point in the history
Co-authored-by: Evan Stanton <evanstanton@Evans-MBP.fritz.box>
Co-authored-by: Ian Stanton <ian@coredb.io>
  • Loading branch information
3 people authored Jul 26, 2023
1 parent c58f1aa commit b17665b
Show file tree
Hide file tree
Showing 2 changed files with 34 additions and 0 deletions.
15 changes: 15 additions & 0 deletions contrib/pg_prometheus/Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
# Set PostgreSQL version
ARG PG_VERSION=15
FROM quay.io/coredb/c-builder:pg${PG_VERSION}

# Clone repository
RUN git clone https://github.com/timescale/pg_prometheus.git

# Set project version
ARG RELEASE=0.2.2

# Build extension
RUN cd pg_prometheus && \
git fetch origin ${RELEASE} && \
git checkout ${RELEASE} && \
make
19 changes: 19 additions & 0 deletions contrib/pg_prometheus/Trunk.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
[extension]
name = "pg_prometheus"
version = "0.2.2"
repository = "https://github.com/timescale/pg_prometheus"
license = "Apache-2.0"
description = "PostgreSQL extension for Prometheus data."
documentation = "https://github.com/timescale/pg_prometheus"
categories = ["metrics"]

[build]
postgres_version = "15"
platform = "linux/amd64"
dockerfile = "Dockerfile"
install_command = """
cd pg_prometheus && make install
set -x
mv /usr/local/pgsql/share/extension/* /usr/share/postgresql/15/extension
mv /usr/local/pgsql/lib/* /usr/lib/postgresql/15/lib
"""

0 comments on commit b17665b

Please sign in to comment.