await got()

in source/services/@aws-solutions/utils/metrics/index.ts [34:42]


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