AACFlow

Sentry

Управление issues, проектами, событиями и релизами в Sentry

Усильте мониторинг ошибок и надёжность ваших приложений с помощью Sentry — ведущей платформы для отслеживания ошибок в реальном времени, мониторинга производительности и управления релизами. Бесшовно интегрируйте Sentry в свои автоматизированные воркфлоу, чтобы легко отслеживать issues, фиксировать критичные события, управлять проектами и оркестрировать релизы во всех ваших приложениях и сервисах.

Инструмент Sentry позволяет:

  • Мониторинг и сортировка issues: получайте полные списки issues через операцию sentry_issues_list и подробную информацию по конкретным ошибкам и багам через sentry_issues_get. Мгновенно обращайтесь к метаданным, тегам, стек-трейсам и статистике, чтобы сократить среднее время до решения.
  • Отслеживание событий: анализируйте конкретные ошибки и события с помощью sentry_events_list и sentry_events_get, получая глубокое понимание возникновения ошибок и их влияния на пользователей.
  • Управление проектами и командами: используйте sentry_projects_list и sentry_project_get, чтобы получать список и просматривать все ваши проекты Sentry — для удобной командной работы и централизованной настройки.
  • Координация релизов: автоматизируйте отслеживание версий, состояния деплоев и управления изменениями в кодовой базе с помощью таких операций, как sentry_releases_list, sentry_release_get и других.
  • Получение мощных инсайтов о приложениях: используйте расширенные фильтры и запросы, чтобы находить нерешённые или приоритетные issues, агрегировать статистику событий со временем и отслеживать регрессии по мере развития кода.

Интеграция Sentry даёт инженерным и DevOps-командам возможность раньше выявлять проблемы, приоритизировать самые значимые баги и непрерывно улучшать состояние приложений в разных стэках. Программно оркестрируйте автоматизацию для современного observability, реагирования на инциденты и управления жизненным циклом релизов — сокращая простои и повышая удовлетворённость пользователей.

Доступные ключевые операции Sentry:

  • sentry_issues_list: получение списка issues Sentry по организациям и проектам с мощным поиском и фильтрацией.
  • sentry_issues_get: получение подробной информации по конкретному issue Sentry.
  • sentry_events_list: получение списка событий по конкретному issue для анализа первопричин.
  • sentry_events_get: полная информация по отдельному событию, включая стек-трейсы, контекст и метаданные.
  • sentry_projects_list: получение списка всех проектов Sentry в вашей организации.
  • sentry_project_get: получение конфигурации и деталей конкретного проекта.
  • sentry_releases_list: получение списка недавних релизов и их статуса деплоя.
  • sentry_release_get: подробная информация о релизе, включая связанные коммиты и issues.

Проактивно управляете ли вы состоянием приложения, разбираетесь с прод-ошибками или автоматизируете воркфлоу релизов — Sentry даёт вам первоклассный мониторинг, полезные алерты и бесшовную DevOps-интеграцию. Повышайте качество ПО и видимость в поиске, используя Sentry для отслеживания ошибок, observability и управления релизами — прямо из ваших воркфлоу.

Инструкции по использованию

Интегрируйте Sentry в рабочий процесс. Мониторить issues, manage projects, track events, и coordinate releases across your applications.

Инструменты

sentry_issues_list

Список issues from Sentry для a specific organization и optionally a specific project. Returns issue details including status, error counts, и last seen timestamps.

Входные параметры

ПараметрТипОбязательныйОписание
apiKeystringДаSentry API authentication token
organizationSlugstringДаThe slug of the organization (e.g., "my-org")
projectSlugstringНетFilter issues by specific project slug (e.g., "my-project")
querystringНетSearch query to filter issues. Supports Sentry search syntax (e.g., "is:unresolved", "level:error")
statsPeriodstringНетTime period for stats (e.g., "24h", "7d", "30d"). Defaults to 24h if not specified.
cursorstringНетPagination cursor for retrieving next page of results
limitnumberНетNumber of issues to return per page (default: 25, max: 100)
statusstringНетFilter by issue status: unresolved, resolved, ignored, or muted
sortstringНетSort order: date, new, freq, priority, or user (default: date)

Выходные данные

ПараметрТипОписание
issuesarrayList of Sentry issues
idstringUnique issue ID
shortIdstringShort issue identifier
titlestringIssue title
culpritstringFunction or location that caused the issue
permalinkstringDirect link to the issue in Sentry
loggerstringLogger name that reported the issue
levelstringSeverity level (error, warning, info, etc.)
statusstringCurrent issue status
statusDetailsobjectAdditional details about the status
isPublicbooleanПроизошла ли issue is publicly visible
platformstringPlatform where the issue occurred
projectobjectProject information
idstringProject ID
namestringProject name
slugstringProject slug
platformstringProject platform
typestringIssue type
metadataobjectError metadata
typestringType of error (e.g., TypeError)
valuestringError message or value
functionstringFunction where the error occurred
numCommentsnumberNumber of comments on the issue
assignedToobjectUser assigned to the issue
idstringUser ID
namestringUser name
emailstringUser email
isBookmarkedbooleanПроизошла ли issue is bookmarked
isSubscribedbooleanWhether subscribed to updates
hasSeenbooleanПроизошла ли user has seen this issue
annotationsarrayIssue annotations
isUnhandledbooleanПроизошла ли issue is unhandled
countstringTotal number of occurrences
userCountnumberNumber of unique users affected
firstSeenstringWhen the issue was first seen (ISO timestamp)
lastSeenstringWhen the issue was last seen (ISO timestamp)
statsobjectStatistical information about the issue
metadataobjectPagination metadata
nextCursorstringCursor for the next page of results (if available)
hasMorebooleanПроизошла лиre are more results available

sentry_issues_get

Получить подробную информацию about a specific Sentry issue by its ID. Returns complete issue details including metadata, tags, и statistics.

Входные параметры

ПараметрТипОбязательныйОписание
apiKeystringДаSentry API authentication token
organizationSlugstringДаThe slug of the organization (e.g., "my-org")
issueIdstringДаThe unique ID of the issue to retrieve (e.g., "12345")

Выходные данные

ПараметрТипОписание
issueobjectDetailed information about the Sentry issue
idstringUnique issue ID
shortIdstringShort issue identifier
titlestringIssue title
culpritstringFunction or location that caused the issue
permalinkstringDirect link to the issue in Sentry
loggerstringLogger name that reported the issue
levelstringSeverity level (error, warning, info, etc.)
statusstringCurrent issue status
statusDetailsobjectAdditional details about the status
isPublicbooleanПроизошла ли issue is publicly visible
platformstringPlatform where the issue occurred
projectobjectProject information
idstringProject ID
namestringProject name
slugstringProject slug
platformstringProject platform
typestringIssue type
metadataobjectError metadata
typestringType of error (e.g., TypeError, ValueError)
valuestringError message or value
functionstringFunction where the error occurred
numCommentsnumberNumber of comments on the issue
assignedToobjectUser assigned to the issue (if any)
idstringUser ID
namestringUser name
emailstringUser email
isBookmarkedbooleanПроизошла ли issue is bookmarked
isSubscribedbooleanПроизошла ли user is subscribed to updates
hasSeenbooleanПроизошла ли user has seen this issue
annotationsarrayIssue annotations
isUnhandledbooleanПроизошла ли issue is unhandled
countstringTotal number of occurrences
userCountnumberNumber of unique users affected
firstSeenstringWhen the issue was first seen (ISO timestamp)
lastSeenstringWhen the issue was last seen (ISO timestamp)
statsobjectStatistical information about the issue

sentry_issues_update

Обновить Sentry issue by changing its status, assignment, bookmark state, или other properties. Returns the updated issue details.

Входные параметры

ПараметрТипОбязательныйОписание
apiKeystringДаSentry API authentication token
organizationSlugstringДаThe slug of the organization (e.g., "my-org")
issueIdstringДаThe unique ID of the issue to update (e.g., "12345")
statusstringНетNew status for the issue: resolved, unresolved, ignored, or resolvedInNextRelease
assignedTostringНетUser ID or email to assign the issue to. Use empty string to unassign.
isBookmarkedbooleanНетWhether to bookmark the issue
isSubscribedbooleanНетWhether to subscribe to issue updates
isPublicbooleanНетПроизошла ли issue should be publicly visible

Выходные данные

ПараметрТипОписание
issueobjectThe updated Sentry issue
idstringUnique issue ID
shortIdstringShort issue identifier
titlestringIssue title
statusstringUpdated issue status
assignedToobjectUser assigned to the issue (if any)
idstringUser ID
namestringUser name
emailstringUser email
isBookmarkedbooleanПроизошла ли issue is bookmarked
isSubscribedbooleanПроизошла ли user is subscribed to updates
isPublicbooleanПроизошла ли issue is publicly visible
permalinkstringDirect link to the issue in Sentry

sentry_projects_list

Список всех projects in a Sentry organization. Returns project details including name, platform, teams, и configuration.

Входные параметры

ПараметрТипОбязательныйОписание
apiKeystringДаSentry API authentication token
organizationSlugstringДаThe slug of the organization (e.g., "my-org")
cursorstringНетPagination cursor for retrieving next page of results
limitnumberНетNumber of projects to return per page (default: 25, max: 100)

Выходные данные

ПараметрТипОписание
projectsarrayList of Sentry projects
idstringUnique project ID
slugstringURL-friendly project identifier
namestringProject name
platformstringPlatform/language (e.g., javascript, python)
dateCreatedstringWhen the project was created (ISO timestamp)
isBookmarkedbooleanПроизошла ли project is bookmarked
isMemberbooleanПроизошла ли user is a member of the project
featuresarrayEnabled features for the project
organizationobjectOrganization information
idstringOrganization ID
slugstringOrganization slug
namestringOrganization name
teamsarrayTeams associated С помощью project
idstringTeam ID
namestringTeam name
slugstringTeam slug
statusstringProject status
isPublicbooleanПроизошла ли project is publicly visible
metadataobjectPagination metadata
nextCursorstringCursor for the next page of results (if available)
hasMorebooleanПроизошла лиre are more results available

sentry_projects_get

Получить подробную информацию about a specific Sentry project by its slug. Returns complete project details including teams, features, и configuration.

Входные параметры

ПараметрТипОбязательныйОписание
apiKeystringДаSentry API authentication token
organizationSlugstringДаThe slug of the organization (e.g., "my-org")
projectSlugstringДаThe slug of the project to retrieve (e.g., "my-project")

Выходные данные

ПараметрТипОписание
projectobjectDetailed information about the Sentry project
idstringUnique project ID
slugstringURL-friendly project identifier
namestringProject name
platformstringPlatform/language (e.g., javascript, python)
dateCreatedstringWhen the project was created (ISO timestamp)
isBookmarkedbooleanПроизошла ли project is bookmarked
isMemberbooleanПроизошла ли user is a member of the project
featuresarrayEnabled features for the project
firstEventstringWhen the first event was received (ISO timestamp)
firstTransactionEventstringWhen the first transaction event was received
accessarrayAccess permissions
organizationobjectOrganization information
idstringOrganization ID
slugstringOrganization slug
namestringOrganization name
teamobjectPrimary team for the project
idstringTeam ID
namestringTeam name
slugstringTeam slug
teamsarrayTeams associated С помощью project
idstringTeam ID
namestringTeam name
slugstringTeam slug
statusstringProject status
colorstringProject color code
isPublicbooleanПроизошла ли project is publicly visible
isInternalbooleanПроизошла ли project is internal
hasAccessbooleanПроизошла ли user has access to this project
hasMinifiedStackTracebooleanWhether minified stack traces are available
hasMonitorsbooleanПроизошла ли project has monitors configured
hasProfilesbooleanПроизошла ли project has profiling enabled
hasReplaysbooleanПроизошла ли project has session replays enabled
hasSessionsbooleanПроизошла ли project has sessions enabled

sentry_projects_create

Создать новый Sentry project in an organization. Требуется team to associate the project with. Returns the created project details.

Входные параметры

ПараметрТипОбязательныйОписание
apiKeystringДаSentry API authentication token
organizationSlugstringДаThe slug of the organization (e.g., "my-org")
namestringДаThe name of the project
teamSlugstringДаThe slug of the team that will own this project
slugstringНетURL-friendly project identifier (auto-generated from name if not provided)
platformstringНетPlatform/language for the project (e.g., javascript, python, node, react-native). If not specified, defaults to "other"
defaultRulesbooleanНетWhether to create default alert rules (default: true)

Выходные данные

ПараметрТипОписание
projectobjectThe newly created Sentry project
idstringUnique project ID
slugstringURL-friendly project identifier
namestringProject name
platformstringPlatform/language
dateCreatedstringWhen the project was created (ISO timestamp)
isBookmarkedbooleanПроизошла ли project is bookmarked
isMemberbooleanПроизошла ли user is a member
hasAccessbooleanПроизошла ли user has access
featuresarrayEnabled features
firstEventstringFirst event timestamp
organizationobjectOrganization information
idstringOrganization ID
slugstringOrganization slug
namestringOrganization name
teamobjectPrimary team for the project
idstringTeam ID
namestringTeam name
slugstringTeam slug
teamsarrayTeams associated С помощью project
idstringTeam ID
namestringTeam name
slugstringTeam slug
statusstringProject status
colorstringProject color code
isPublicbooleanПроизошла ли project is public

sentry_projects_update

Обновить Sentry project by changing its name, slug, platform, или other settings. Returns the updated project details.

Входные параметры

ПараметрТипОбязательныйОписание
apiKeystringДаSentry API authentication token
organizationSlugstringДаThe slug of the organization (e.g., "my-org")
projectSlugstringДаThe slug of the project to update (e.g., "my-project")
namestringНетNew name for the project
slugstringНетNew URL-friendly project identifier
platformstringНетNew platform/language for the project (e.g., javascript, python, node)
isBookmarkedbooleanНетWhether to bookmark the project
digestsMinDelaynumberНетMinimum delay (in seconds) for digest notifications
digestsMaxDelaynumberНетMaximum delay (in seconds) for digest notifications

Выходные данные

ПараметрТипОписание
projectobjectThe updated Sentry project
idstringUnique project ID
slugstringURL-friendly project identifier
namestringProject name
platformstringPlatform/language
isBookmarkedbooleanПроизошла ли project is bookmarked
organizationobjectOrganization information
idstringOrganization ID
slugstringOrganization slug
namestringOrganization name
teamsarrayTeams associated С помощью project
idstringTeam ID
namestringTeam name
slugstringTeam slug

sentry_events_list

Список events from a Sentry project. Can be filtered by issue ID, запрос, или time period. Returns event details including context, tags, и user information.

Входные параметры

ПараметрТипОбязательныйОписание
apiKeystringДаSentry API authentication token
organizationSlugstringДаThe slug of the organization (e.g., "my-org")
projectSlugstringДаThe slug of the project to list events from (e.g., "my-project")
issueIdstringНетFilter events by a specific issue ID (e.g., "12345")
querystringНетSearch query to filter events. Supports Sentry search syntax (e.g., "user.email:*@example.com")
cursorstringНетPagination cursor for retrieving next page of results
limitnumberНетNumber of events to return per page (default: 50, max: 100)
statsPeriodstringНетTime period to query (e.g., "24h", "7d", "30d"). Defaults to 90d if not specified.

Выходные данные

ПараметрТипОписание
eventsarrayList of Sentry events
idstringUnique event ID
eventIDstringEvent identifier
projectIDstringProject ID
groupIDstringIssue group ID
messagestringEvent message
titlestringEvent title
locationstringLocation information
culpritstringFunction or location that caused the event
dateCreatedstringWhen the event was created (ISO timestamp)
dateReceivedstringWhen Sentry received the event (ISO timestamp)
userobjectUser information associated С помощью event
idstringUser ID
emailstringUser email
usernamestringUsername
ipAddressstringIP address
namestringUser display name
tagsarrayTags associated С помощью event
keystringTag key
valuestringTag value
contextsobjectAdditional context data (device, OS, etc.)
platformstringPlatform where the event occurred
typestringEvent type
metadataobjectError metadata
typestringType of error (e.g., TypeError)
valuestringError message or value
functionstringFunction where the error occurred
entriesarrayEvent entries (exception, breadcrumbs, etc.)
errorsarrayProcessing errors
diststringDistribution identifier
fingerprintsarrayFingerprints for grouping
sdkobjectSDK information
namestringSDK name
versionstringSDK version
metadataobjectPagination metadata
nextCursorstringCursor for the next page of results (if available)
hasMorebooleanПроизошла лиre are more results available

sentry_events_get

Получить подробную информацию about a specific Sentry event by its ID. Returns complete event details including stack traces, breadcrumbs, context, и user information.

Входные параметры

ПараметрТипОбязательныйОписание
apiKeystringДаSentry API authentication token
organizationSlugstringДаThe slug of the organization (e.g., "my-org")
projectSlugstringДаThe slug of the project (e.g., "my-project")
eventIdstringДаThe unique ID of the event to retrieve (e.g., "abc123def456")

Выходные данные

ПараметрТипОписание
eventobjectDetailed information about the Sentry event
idstringUnique event ID
eventIDstringEvent identifier
projectIDstringProject ID
groupIDstringIssue group ID this event belongs to
messagestringEvent message
titlestringEvent title
locationstringLocation information
culpritstringFunction or location that caused the event
dateCreatedstringWhen the event was created (ISO timestamp)
dateReceivedstringWhen Sentry received the event (ISO timestamp)
userobjectUser information associated С помощью event
idstringUser ID
emailstringUser email
usernamestringUsername
ipAddressstringIP address
namestringUser display name
tagsarrayTags associated С помощью event
keystringTag key
valuestringTag value
contextsobjectAdditional context data (device, OS, browser, etc.)
platformstringPlatform where the event occurred
typestringEvent type (error, transaction, etc.)
metadataobjectError metadata
typestringType of error (e.g., TypeError, ValueError)
valuestringError message or value
functionstringFunction where the error occurred
entriesarrayEvent entries including exception, breadcrumbs, and request data
errorsarrayProcessing errors that occurred
diststringDistribution identifier
fingerprintsarrayFingerprints used for grouping events
sdkobjectSDK information
namestringSDK name
versionstringSDK version

sentry_releases_list

Список releases для a Sentry organization или project. Returns release details including version, commits, deploy information, и associated projects.

Входные параметры

ПараметрТипОбязательныйОписание
apiKeystringДаSentry API authentication token
organizationSlugstringДаThe slug of the organization (e.g., "my-org")
projectSlugstringНетFilter releases by specific project slug (e.g., "my-project")
querystringНетSearch query to filter releases (e.g., "1.0" to match version patterns)
cursorstringНетPagination cursor for retrieving next page of results
limitnumberНетNumber of releases to return per page (default: 25, max: 100)

Выходные данные

ПараметрТипОписание
releasesarrayList of Sentry releases
idstringUnique release ID
versionstringRelease version identifier
shortVersionstringShortened version identifier
refstringGit reference (commit SHA, tag, or branch)
urlstringURL to the release (e.g., GitHub release page)
dateReleasedstringWhen the release was deployed (ISO timestamp)
dateCreatedstringWhen the release was created (ISO timestamp)
dateStartedstringWhen the release started (ISO timestamp)
newGroupsnumberNumber of new issues introduced in this release
ownerobjectOwner of the release
idstringUser ID
namestringUser name
emailstringUser email
commitCountnumberNumber of commits in this release
deployCountnumberNumber of deploys for this release
lastCommitobjectLast commit in the release
idstringCommit SHA
messagestringCommit message
dateCreatedstringCommit timestamp
lastDeployobjectLast deploy of the release
idstringDeploy ID
environmentstringDeploy environment
dateStartedstringDeploy start timestamp
dateFinishedstringDeploy finish timestamp
authorsarrayAuthors of commits in the release
idstringAuthor ID
namestringAuthor name
emailstringAuthor email
projectsarrayProjects associated with this release
idstringProject ID
namestringProject name
slugstringProject slug
platformstringProject platform
firstEventstringFirst event timestamp
lastEventstringLast event timestamp
versionInfoobjectVersion metadata
buildHashstringBuild hash
versionobjectVersion details
rawstringRaw version string
packagestringPackage name
metadataobjectPagination metadata
nextCursorstringCursor for the next page of results (if available)
hasMorebooleanПроизошла лиre are more results available

sentry_releases_create

Создать новый release in Sentry. A release — это version of your code deployed to an environment. Can include commit information и associated projects. Returns the created release details.

Входные параметры

ПараметрТипОбязательныйОписание
apiKeystringДаSentry API authentication token
organizationSlugstringДаThe slug of the organization (e.g., "my-org")
versionstringДаVersion identifier for the release (e.g., "2.0.0", "my-app@1.0.0", or a git commit SHA)
projectsstringДаComma-separated list of project slugs to associate with this release
refstringНетGit reference (commit SHA, tag, or branch) for this release
urlstringНетURL pointing to the release (e.g., GitHub release page)
dateReleasedstringНетISO 8601 timestamp for when the release was deployed (defaults to current time)
commitsstringНетJSON array of commit objects with id, repository (optional), and message (optional). Example: [{"id":"abc123","message":"Fix bug"}]

Выходные данные

ПараметрТипОписание
releaseobjectThe newly created Sentry release
idstringUnique release ID
versionstringRelease version identifier
shortVersionstringShortened version identifier
refstringGit reference (commit SHA, tag, or branch)
urlstringURL to the release
dateReleasedstringWhen the release was deployed (ISO timestamp)
dateCreatedstringWhen the release was created (ISO timestamp)
dateStartedstringWhen the release started (ISO timestamp)
newGroupsnumberNumber of new issues introduced
commitCountnumberNumber of commits in this release
deployCountnumberNumber of deploys for this release
ownerobjectRelease owner
idstringOwner ID
namestringOwner name
emailstringOwner email
lastCommitobjectLast commit in the release
idstringCommit SHA
messagestringCommit message
dateCreatedstringCommit timestamp
lastDeployobjectLast deploy of the release
idstringDeploy ID
environmentstringDeploy environment
dateStartedstringDeploy start timestamp
dateFinishedstringDeploy finish timestamp
authorsarrayAuthors of commits in the release
idstringAuthor ID
namestringAuthor name
emailstringAuthor email
projectsarrayProjects associated with this release
idstringProject ID
namestringProject name
slugstringProject slug
platformstringProject platform
firstEventstringFirst event timestamp
lastEventstringLast event timestamp
versionInfoobjectVersion metadata
buildHashstringBuild hash
versionobjectVersion details
rawstringRaw version string
packagestringPackage name

sentry_releases_deploy

Создать a deploy record для a Sentry release in a specific environment. Deploys track when и where releases are deployed. Returns the created deploy details.

Входные параметры

ПараметрТипОбязательныйОписание
apiKeystringДаSentry API authentication token
organizationSlugstringДаThe slug of the organization (e.g., "my-org")
versionstringДаVersion identifier of the release being deployed (e.g., "1.0.0" or "abc123")
environmentstringДаEnvironment name where the release is being deployed (e.g., "production", "staging")
namestringНетOptional name for this deploy (e.g., "Deploy v2.0 to Production")
urlstringНетURL pointing to the deploy (e.g., CI/CD pipeline URL)
dateStartedstringНетISO 8601 timestamp for when the deploy started (defaults to current time)
dateFinishedstringНетISO 8601 timestamp for when the deploy finished

Выходные данные

ПараметрТипОписание
deployobjectThe newly created deploy record
idstringUnique deploy ID
environmentstringEnvironment name where the release was deployed
namestringName of the deploy
urlstringURL pointing to the deploy
dateStartedstringWhen the deploy started (ISO timestamp)
dateFinishedstringWhen the deploy finished (ISO timestamp)

On this page

Начните создавать сегодня
Нам доверяют более 100 000 разработчиков.
SaaS-платформа для создания AI-агентов и управления агентным workforce.
Начать