Skip to content

Commit

Permalink
Merge branch 'main' into tembo-pg-versions
Browse files Browse the repository at this point in the history
  • Loading branch information
vrmiguel authored Jan 29, 2024
2 parents b8fe16b + 39c7870 commit 9c7fb62
Show file tree
Hide file tree
Showing 3 changed files with 37 additions and 1 deletion.
12 changes: 12 additions & 0 deletions contrib/pg-telemetry/Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
ARG PG_VERSION=15
FROM quay.io/coredb/c-builder:pg${PG_VERSION}
USER root

# Extension build dependencies
RUN apt-get update && apt-get install -y \
build-essential

# Clone repository
RUN git clone https://github.com/adjust/pg-telemetry.git

RUN cd pg-telemetry && make
24 changes: 24 additions & 0 deletions contrib/pg-telemetry/Trunk.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
[extension]
name = "pg-telemetry"
extension_name = "pgtelemetry"
version = "1.6.0"
repository = "https://github.com/adjust/pg-telemetry"
license = "PostgreSQL"
description = "Useful monitoring views for PostgreSQL. Monitors replication, disk usage, sources of concurrent queries and WAL throughput."
homepage = "https://github.com/adjust/pg-telemetry"
documentation = "https://github.com/adjust/pg-telemetry/blob/master/doc/pgtelemetry.html"
categories = ["tooling_admin", "metrics"]

[dependencies]
apt = ["libc6"]

[build]
postgres_version = "15"
platform = "linux/amd64"
dockerfile = "Dockerfile"
install_command = """
cd pg-telemetry && 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
"""
2 changes: 1 addition & 1 deletion contrib/pgvector/Trunk.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[extension]
name = "pgvector"
version = "0.5.1"
version = "0.6.0"
repository = "https://github.com/pgvector/pgvector"
license = "PostgreSQL"
description = "Open-source vector similarity search for Postgres"
Expand Down

0 comments on commit 9c7fb62

Please sign in to comment.