Skip to content

Instantly share code, notes, and snippets.

@Sam-Baxter
Sam-Baxter / webhook.js
Created February 16, 2025 15:36
Splunk Event -> Slack Message
import { WebClient } from "@slack/web-api";
export default async function handler(req, res) {
if (req.method !== "POST") {
return res.status(405).json({ error: "Method not allowed" });
}
const splunkEvent = req.body;
const slackMessage = formatMessage(splunkEvent);