mirror of
https://github.com/neondatabase/neon.git
synced 2025-12-22 21:59:59 +00:00
After enabling autoscaling, we faced the issue that customers are not able to get the number of CPUs they use at this moment. Therefore I've added these two options: 1. Postgresql function to allow customers to call it whenever they want 2. `compute_ctl` endpoint to show these number in console
16 lines
269 B
Makefile
16 lines
269 B
Makefile
# pgxs/neon_utils/Makefile
|
|
|
|
|
|
MODULE_big = neon_utils
|
|
OBJS = \
|
|
$(WIN32RES) \
|
|
neon_utils.o
|
|
|
|
EXTENSION = neon_utils
|
|
DATA = neon_utils--1.0.sql
|
|
PGFILEDESC = "neon_utils - small useful functions"
|
|
|
|
PG_CONFIG = pg_config
|
|
PGXS := $(shell $(PG_CONFIG) --pgxs)
|
|
include $(PGXS)
|