이 페이지는 아직 영어로 제공되지 않습니다. 번역 작업 중입니다.
현재 번역 프로젝트에 대한 질문이나 피드백이 있으신 경우 언제든지 연락주시기 바랍니다.

Submission

After installing DogStatsD, you can emit events to your Datadog event explorer with the following function:

event(<title>, <message>, <alert_type>, <aggregation_key>, <source_type_name>, <date_happened>, <priority>, <tags>, <hostname>)

Definitions:

ParameterTypeRequiredDescription
<title>StringYesThe title of the event
<message>StringYesThe text body of the event
<alert_type>StringNoerror, warning, success, or info (defaults to info)
<aggregation_key>StringNoA key to use for aggregating events
<source_type_name>StringNoThe source type name (defaults to my_apps)
<date_happened>IntegerNoThe epoch timestamp for the event (defaults to the current time from the DogStatsD server)
<priority>StringNoSpecifies the priority of the event (normal or low)
<tags>List of stringsNoA list of tags associated with this event
<hostname>StringNoThe name of the host

Examples

Run the following code to view errors and exceptions in Datadog with a DogStatsD event. Remember to flush/close the client when it is no longer needed.

from datadog import initialize, statsd

options = {
    'statsd_host':'127.0.0.1',
    'statsd_port':8125
}

initialize(**options)

statsd.event('An error occurred', 'Error message', alert_type='error', tags=['env:dev'])

Note:

  • Sending events with this method uses cURL for API requests.
  • You should use a try/catch code block to avoid warnings or errors on communication issues with the Datadog API.

Further reading

PREVIEWING: aaron.hoffman/SDCD-952_write-rollback-cd-docs