Send and receive alerts from Datadog to your spreadsheet and back.
Send data to your event stream
from datadog import initialize, api
options = {
"api_key": "<YOUR_API_KEY>",
"app_key": "<YOUR_APP_KEY>",
}
initialize(**options)
title = "Something big happened!"
text = "And let me tell you all about it here!"
tags = ["version:1", "application:web"]
api.Event.create(title=title, text=text, tags=tags)
Need help making this connection? Feel free to reach out to support@quadratichq.com for help.