diff options
author | mat <github@matdoes.dev> | 2021-12-29 19:06:52 -0600 |
---|---|---|
committer | mat <github@matdoes.dev> | 2021-12-29 19:06:52 -0600 |
commit | 4ead6ecb87aa07d43ade3ab859d2052f3da3fe12 (patch) | |
tree | 5d11cf0338b2be8c219cdc01df02a1453802323a /src | |
parent | 07d92497a362e9a15f6319c9b73b1280d6f39c87 (diff) | |
download | skyblock-api-4ead6ecb87aa07d43ade3ab859d2052f3da3fe12.tar.gz skyblock-api-4ead6ecb87aa07d43ade3ab859d2052f3da3fe12.tar.bz2 skyblock-api-4ead6ecb87aa07d43ade3ab859d2052f3da3fe12.zip |
add prom-client
Diffstat (limited to 'src')
-rw-r--r-- | src/index.ts | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/src/index.ts b/src/index.ts index d0e4fd8..ffa683e 100644 --- a/src/index.ts +++ b/src/index.ts @@ -6,6 +6,7 @@ import * as discord from './discord.js' import express from 'express' import { getKeyUsage } from './hypixelApi.js' import { basicPlayerCache, basicProfilesCache, playerCache, profileCache, profileNameCache, profilesCache, usernameCache } from './hypixelCached.js' +import { collectDefaultMetrics, register } from 'prom-client' const app = express() @@ -185,6 +186,18 @@ app.post('/accounts/update', async (req, res) => { } }) + +// grafana integration +collectDefaultMetrics() +app.get('/metrics', async (_req, res) => { + try { + res.set('Content-Type', register.contentType) + res.end(await register.metrics()) + } catch (err) { + res.status(500).end(err) + } +}) + process.on('uncaughtException', err => console.error(err)) process.on('unhandledRejection', (err, promise) => console.error(promise, err)) |