mirror of
https://github.com/kremalicious/umami.git
synced 2024-12-24 18:26:20 +01:00
Added action to telemetry payload.
This commit is contained in:
parent
7cf0927741
commit
5b1eb8bec2
@ -3,7 +3,7 @@ const { sendTelemetry } = require('./telemetry');
|
||||
|
||||
async function run() {
|
||||
if (!process.env.DISABLE_TELEMETRY) {
|
||||
await sendTelemetry();
|
||||
await sendTelemetry('build');
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -3,7 +3,7 @@ const { sendTelemetry } = require('./telemetry');
|
||||
|
||||
async function run() {
|
||||
if (!process.env.DISABLE_TELEMETRY) {
|
||||
await sendTelemetry();
|
||||
await sendTelemetry('start');
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -8,7 +8,7 @@ const pkg = require('../package.json');
|
||||
const dest = path.resolve(__dirname, '../.next/cache/umami.json');
|
||||
const url = 'https://telemetry.umami.is/api/collect';
|
||||
|
||||
async function sendTelemetry() {
|
||||
async function sendTelemetry(action) {
|
||||
await fs.ensureFile(dest);
|
||||
|
||||
let json = {};
|
||||
@ -19,37 +19,36 @@ async function sendTelemetry() {
|
||||
// Ignore
|
||||
}
|
||||
|
||||
if (json.version !== pkg.version) {
|
||||
const { default: isDocker } = await import('is-docker');
|
||||
const { default: fetch } = await import('node-fetch');
|
||||
await fs.writeJSON(dest, { version: pkg.version });
|
||||
|
||||
await fs.writeJSON(dest, { version: pkg.version });
|
||||
const { default: isDocker } = await import('is-docker');
|
||||
const { default: fetch } = await import('node-fetch');
|
||||
|
||||
const payload = {
|
||||
version: pkg.version,
|
||||
node: process.version,
|
||||
platform: os.platform(),
|
||||
arch: os.arch(),
|
||||
os: `${os.type()} (${os.version()})`,
|
||||
docker: isDocker(),
|
||||
ci: isCI,
|
||||
upgrade: json.version || false,
|
||||
};
|
||||
const payload = {
|
||||
action,
|
||||
version: pkg.version,
|
||||
node: process.version,
|
||||
platform: os.platform(),
|
||||
arch: os.arch(),
|
||||
os: `${os.type()} (${os.version()})`,
|
||||
docker: isDocker(),
|
||||
ci: isCI,
|
||||
upgrade: json.version || false,
|
||||
};
|
||||
|
||||
await retry(
|
||||
async () => {
|
||||
await fetch(url, {
|
||||
method: 'post',
|
||||
cache: 'no-cache',
|
||||
headers: {
|
||||
'Content-Type': 'application/json',
|
||||
},
|
||||
body: JSON.stringify(payload),
|
||||
});
|
||||
},
|
||||
{ minTimeout: 500, retries: 1, factor: 1 },
|
||||
).catch(() => {});
|
||||
}
|
||||
await retry(
|
||||
async () => {
|
||||
await fetch(url, {
|
||||
method: 'post',
|
||||
cache: 'no-cache',
|
||||
headers: {
|
||||
'Content-Type': 'application/json',
|
||||
},
|
||||
body: JSON.stringify(payload),
|
||||
});
|
||||
},
|
||||
{ minTimeout: 500, retries: 1, factor: 1 },
|
||||
).catch(() => {});
|
||||
}
|
||||
|
||||
module.exports = {
|
||||
|
Loading…
Reference in New Issue
Block a user