Extra Stat collection (#407)

* Cleaned up error interceptor to avoid sending auth errors (when a 500 occurs) to sentry as auth errors aren't issues.

* Added extra stat collection

* Fixed a bad gitignore which ignored anything in a stats directory
This commit is contained in:
Joseph Milazzo 2021-07-20 11:32:37 -05:00 committed by GitHub
parent b9a06d3586
commit b11bb0e3b5
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
18 changed files with 64 additions and 57 deletions

View file

@ -0,0 +1,13 @@
import { DetailsVersion } from "./details-version";
export interface ClientInfo {
os: DetailsVersion,
browser: DetailsVersion,
platformType: string,
kavitaUiVersion: string,
screenResolution: string;
usingDarkTheme: boolean;
collectedAt?: Date;
}

View file

@ -0,0 +1,4 @@
export interface DetailsVersion {
name: string;
version: string;
}