-
-
Notifications
You must be signed in to change notification settings - Fork 347
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add option to serve Prometheus metrics #671
- Loading branch information
Florent FAYOLLE
committed
Oct 12, 2023
1 parent
6dfe634
commit 06559da
Showing
6 changed files
with
57 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
import { collectDefaultMetrics, register } from 'prom-client'; | ||
import http from 'http'; | ||
|
||
collectDefaultMetrics(); | ||
|
||
const server = http.createServer((req: http.IncomingMessage, res: http.ServerResponse) => { | ||
register.metrics().then((metrics) => { | ||
res.writeHead(200, { 'Content-Type': register.contentType }); | ||
res.end(metrics); | ||
}).catch((e) => { | ||
res.writeHead(500); | ||
res.end(e.message); | ||
}); | ||
}); | ||
|
||
const port = parseInt(process.env.GRIST_PROMCLIENT_PORT!, 10); | ||
if (isNaN(port)) { | ||
throw new Error(`Invalid port: ${process.env.GRIST_PROMCLIENT_PORT}`); | ||
} | ||
server.listen(port, '0.0.0.0'); | ||
|
||
console.log("---------------------------------------------"); | ||
console.log(`Prometheus exporter listening on port ${port}`); | ||
console.log("---------------------------------------------"); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -1773,6 +1773,11 @@ binary@~0.3.0: | |
buffers "~0.1.1" | ||
chainsaw "~0.1.0" | ||
|
||
[email protected]: | ||
version "1.0.2" | ||
resolved "https://registry.yarnpkg.com/bintrees/-/bintrees-1.0.2.tgz#49f896d6e858a4a499df85c38fb399b9aff840f8" | ||
integrity sha512-VOMgTMwjAaUG580SXn3LacVgjurrbMme7ZZNYGSSV7mmtY6QQRh0Eg3pwIcntQ77DErK1L0NxkbetjcoXzVwKw== | ||
|
||
bl@^4.0.3: | ||
version "4.1.0" | ||
resolved "https://registry.npmjs.org/bl/-/bl-4.1.0.tgz" | ||
|
@@ -6762,6 +6767,13 @@ process@~0.11.0: | |
resolved "https://registry.npmjs.org/process/-/process-0.11.10.tgz" | ||
integrity sha1-czIwDoQBYb2j5podHZGn1LwW8YI= | ||
|
||
[email protected]: | ||
version "14.2.0" | ||
resolved "https://registry.yarnpkg.com/prom-client/-/prom-client-14.2.0.tgz#ca94504e64156f6506574c25fb1c34df7812cf11" | ||
integrity sha512-sF308EhTenb/pDRPakm+WgiN+VdM/T1RaHj1x+MvAuT8UiQP8JmOEbxVqtkbfR4LrvOg5n7ic01kRBDGXjYikA== | ||
dependencies: | ||
tdigest "^0.1.1" | ||
|
||
promise-inflight@^1.0.1: | ||
version "1.0.1" | ||
resolved "https://registry.yarnpkg.com/promise-inflight/-/promise-inflight-1.0.1.tgz#98472870bf228132fcbdd868129bad12c3c029e3" | ||
|
@@ -7960,6 +7972,13 @@ tcp-port-used@^1.0.1: | |
debug "4.3.1" | ||
is2 "^2.0.6" | ||
|
||
tdigest@^0.1.1: | ||
version "0.1.2" | ||
resolved "https://registry.yarnpkg.com/tdigest/-/tdigest-0.1.2.tgz#96c64bac4ff10746b910b0e23b515794e12faced" | ||
integrity sha512-+G0LLgjjo9BZX2MfdvPfH+MKLCrxlXSYec5DaPYP1fe6Iyhf0/fSmJ0bFiZ1F8BT6cGXl2LpltQptzjXKWEkKA== | ||
dependencies: | ||
bintrees "1.0.2" | ||
|
||
term-size@^2.1.0: | ||
version "2.2.0" | ||
resolved "https://registry.npmjs.org/term-size/-/term-size-2.2.0.tgz" | ||
|