Last active
May 13, 2021 18:04
-
-
Save statico/a0c7b27f380a03b3da27006a5a239b37 to your computer and use it in GitHub Desktop.
simple AWS Lambda -> Firehose -> JSON record -> S3
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import { FirehoseClient, PutRecordCommand } from "@aws-sdk/client-firehose" | |
const streamName = process.env.AWS_FIREHOSE_LOG_EVENT_STREAM | |
const client = new FirehoseClient({}) | |
export const logEvent = (type: string, data: Object) => { | |
try { | |
const record = Buffer.from( | |
JSON.stringify({ | |
ts: Math.floor(Date.now() / 1000), | |
type, | |
data, | |
}) + "\n" | |
) | |
if (!streamName) { | |
console.log(`Not logging event:`, record) | |
return | |
} | |
setImmediate(async () => { | |
try { | |
await client.send( | |
new PutRecordCommand({ | |
DeliveryStreamName: streamName, | |
Record: { Data: record }, | |
}) | |
) | |
} catch (err) { | |
console.error(`Error: Failed to log event: ${err}`) | |
console.error(`Not logging event:`, record) | |
} | |
}) | |
} catch (err) { | |
console.error(`Error while logging event: ${err.stack || err}`) | |
console.error(`Not logging event:`, data) | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment