Choices

All the choices.

class controller.sentry.choices.EventType(value)[source]

Bases: TextChoices

This enum is for the event types.

FIRING

Mark the start of a new event

Type:

str

DISCARD

Mark the end of an event

Type:

str

DISCARD = 'DISCARD'
FIRING = 'FIRING'
class controller.sentry.choices.MetricType(value)[source]

Bases: TextChoices

This enum is for the metric types.

WSGI

type for all app using a wsgi

Type:

str

CELERY

type for all app celery worker

Type:

str

CELERY = 'CELERY'
WSGI = 'WSGI'