appmetrics
appmetrics copied to clipboard
Node Application Metrics provides a foundational infrastructure for collecting resource and performance monitoring data for Node.js-based applications.
Given a Mongo search with a regex: Entry.find({content:new RegExp(term, 'i')}) I'm seeing this for the query: {\"content\":{}} It seems to have lost the regular expression.
is this repo being maintained? I would like to use this for Node18 projects but see that there are build issues for Node16 +
**My Dockerfile** ``` FROM node:18.10-bullseye-slim WORKDIR /app RUN apt-get update \ && apt-get install -y g++ gcc make build-essential python \ && apt-get clean RUN npm install node-gyp -g COPY...