mirror of
https://github.com/matrix-org/mjolnir.git
synced 2024-10-01 01:36:06 -04:00
c3cb22bf36
This PR: - creates an OpenMetrics server that enables collecting performance data from this process by e.g. a Prometheus server; - exposes as metrics the performance of http requests with MatrixBot. Further metrics may of course be added.
33 lines
926 B
JSON
33 lines
926 B
JSON
{
|
|
"compilerOptions": {
|
|
"alwaysStrict": true,
|
|
"esModuleInterop": true,
|
|
"experimentalDecorators": true,
|
|
"emitDecoratorMetadata": true,
|
|
"module": "commonjs",
|
|
"moduleResolution": "node",
|
|
"newLine": "LF",
|
|
"noImplicitReturns": true,
|
|
"noUnusedLocals": true,
|
|
"target": "es2021",
|
|
"noImplicitAny": true,
|
|
"sourceMap": true,
|
|
"strictNullChecks": true,
|
|
"outDir": "./lib",
|
|
"types": [
|
|
"node",
|
|
"mocha"
|
|
]
|
|
},
|
|
"include": [
|
|
"./src/**/*",
|
|
"./test/appservice/**/*",
|
|
"./test/integration/manualLaunchScript.ts",
|
|
"./test/integration/roomMembersTest.ts",
|
|
"./test/integration/banListTest.ts",
|
|
"./test/integration/reportPollingTest",
|
|
"./test/integration/policyConsumptionTest.ts",
|
|
"./test/integration/openMetricsTest.ts",
|
|
]
|
|
}
|