await got()

in source/services/metricsManager/index.ts [52:60]


    await got(endpoint, {
      port: 443,
      method: "POST",
      headers: {
        "Content-Type": "application/json",
        "Content-Length": "" + JSON.stringify(_message).length,
      },
      body: JSON.stringify(_message),
    });