Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

cherry-pick the changes from the fork branch #28

Closed
wants to merge 22 commits into from
Closed
Changes from 1 commit
Commits
Show all changes
22 commits
Select commit Hold shift + click to select a range
de4cec9
feat: Type conversion for custom port
cobolbaby Jul 25, 2021
e7957b8
feat: Rename the up metric #27
cobolbaby Jul 25, 2021
55122a8
fix: remove TODO
cobolbaby Jul 25, 2021
45dfe95
fix: support the db larger than 1T
cobolbaby Jul 25, 2021
2a743b4
feat: support the metric related to db replication
cobolbaby Jul 25, 2021
885b7ce
chore: optimize the container build
cobolbaby Jul 25, 2021
f4f6b0f
chore: bump node.js 14.17.3
cobolbaby Jul 25, 2021
14b01ec
feat: redirect root path by default
cobolbaby Jul 25, 2021
e555b89
fix: client.Guage typo error
cobolbaby Jul 26, 2021
ff7efc0
fix: Invalid object name 'distribution.dbo.MSdistribution_agents'.
cobolbaby Jul 26, 2021
6ac8550
docs: fix the container build instruction
cobolbaby Jul 26, 2021
9e97232
fix: DB_NAME() maybe return null #29
cobolbaby Jul 26, 2021
acc1f30
0.5.1
cobolbaby Jul 26, 2021
9fdc27d
chore: npm script
cobolbaby Jul 26, 2021
5c50f4a
feat: add metrics mssql_connections_per_client && mssql_transactions
cobolbaby Jul 26, 2021
4aeefcf
fix: Dockerfile maintainer Label
cobolbaby Jul 27, 2021
38c32db
optimize: rename the metrics mssql_client_connections && mssql_trans…
cobolbaby Jul 27, 2021
c4a1a20
feat: recommend mssql_client_connections instead of mssql_connections
cobolbaby Jul 27, 2021
948426c
fix: mssql_transactions_total divided by database
cobolbaby Jul 28, 2021
d6d2281
feat: add buffer io metric; unified the connection metrics
cobolbaby Jul 28, 2021
6cc0e12
feat: add metrics mssql_lazy_write_total and mssql_page_checkpoint_t…
cobolbaby Jul 29, 2021
957e129
fix: exporter crashes with ConnectionError: Connection lost - read EC…
cobolbaby Aug 4, 2021
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
chore: optimize the container build
cobolbaby committed Jul 25, 2021
commit 885b7ce21b90e06d18d7e20619546d533a14a0dd
5 changes: 4 additions & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -8,11 +8,14 @@ RUN mkdir -p /usr/src/app
WORKDIR /usr/src/app

# Copy dependency definitions
COPY package.json *.js /usr/src/app/
COPY package.json .

# Install dependecies
RUN npm install --production

# Copy application
COPY *.js .

# Expose the port the app runs in
EXPOSE 4000