diff options
author | mat <github@matdoes.dev> | 2021-12-30 16:06:53 -0600 |
---|---|---|
committer | mat <github@matdoes.dev> | 2021-12-30 16:06:53 -0600 |
commit | 6ef961dffc700af1929ccaa514df75c476485d38 (patch) | |
tree | ef0d1f8249d5d23e4812a7adeb1e567ebf0bc241 /src | |
parent | 454a647a8d80e9308e74768e4b48cc6710d2e748 (diff) | |
download | skyblock-api-6ef961dffc700af1929ccaa514df75c476485d38.tar.gz skyblock-api-6ef961dffc700af1929ccaa514df75c476485d38.tar.bz2 skyblock-api-6ef961dffc700af1929ccaa514df75c476485d38.zip |
Revert "add prom-client"
This reverts commit 454a647a8d80e9308e74768e4b48cc6710d2e748.
Diffstat (limited to 'src')
-rw-r--r-- | src/index.ts | 13 |
1 files changed, 0 insertions, 13 deletions
diff --git a/src/index.ts b/src/index.ts index ffa683e..d0e4fd8 100644 --- a/src/index.ts +++ b/src/index.ts @@ -6,7 +6,6 @@ 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() @@ -186,18 +185,6 @@ 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)) |