reisei
1
HI!
I wanted take a look at new sentry integrations after this blog post: https://blog.sentry.io/2019/02/05/jira-server-integration and setup test sentry with docker-compose, here is my configuration:
version: ‘3’
services:
sentry:
image: sentry
container_name: sentry
ports:
- ‘9000:9000’
links:
- redis
- postgres
environment:
SENTRY_REDIS_HOST: redis
SENTRY_POSTGRES_HOST: postgres
SENTRY_SECRET_KEY:
redis:
image: redis
container_name: redis
postgres:
image: postgres
container_name: postgres
But I don’t see Integrations in my organisation settings, what am I doing wrong?
1 Like
You have to create a project and switch to it to see the tab.
reisei
3
But it would be project integrations, in the article global jira integration is mentioned.
You need to build your own docker image to get the latest features. The last tagged 9.0.0 release is quite dated. See When will a new version be tagged for Sentry Open Source?
1 Like
FROM sentry:9.0-onbuild
But still aren’t showing Integrations in my org settings.
reisei
7
Cool! That might help, thanks!
I’ll try that.
reisei
10
I tried solutions by @tkuther and @zeeg and now got everything working: so much new features! 
Thanks again.
Dude , Integration area still not showing.
follow sentry list plugins bellow
root@206bff32c1f6:/# sentry plugins list
jira: sentry-plugins 9.0.0rc1 (/usr/local/lib/python2.7/site-packages)
clubhouse: sentry-plugins 9.0.0rc1 (/usr/local/lib/python2.7/site-packages)
bitbucket: sentry-plugins 9.0.0rc1 (/usr/local/lib/python2.7/site-packages)
github: sentry-plugins 9.0.0rc1 (/usr/local/lib/python2.7/site-packages)
amazon_sqs: sentry-plugins 9.0.0rc1 (/usr/local/lib/python2.7/site-packages)
slack: sentry-plugins 9.0.0rc1 (/usr/local/lib/python2.7/site-packages)
pushover: sentry-plugins 9.0.0rc1 (/usr/local/lib/python2.7/site-packages)
gitlab: sentry-plugins 9.0.0rc1 (/usr/local/lib/python2.7/site-packages)
jira_ac: sentry-plugins 9.0.0rc1 (/usr/local/lib/python2.7/site-packages)
hipchat_ac: sentry-plugins 9.0.0rc1 (/usr/local/lib/python2.7/site-packages)
victorops: sentry-plugins 9.0.0rc1 (/usr/local/lib/python2.7/site-packages)
sessionstack: sentry-plugins 9.0.0rc1 (/usr/local/lib/python2.7/site-packages)
heroku: sentry-plugins 9.0.0rc1 (/usr/local/lib/python2.7/site-packages)
asana: sentry-plugins 9.0.0rc1 (/usr/local/lib/python2.7/site-packages)
pivotal: sentry-plugins 9.0.0rc1 (/usr/local/lib/python2.7/site-packages)
splunk: sentry-plugins 9.0.0rc1 (/usr/local/lib/python2.7/site-packages)
pagerduty: sentry-plugins 9.0.0rc1 (/usr/local/lib/python2.7/site-packages)
vsts: sentry-plugins 9.0.0rc1 (/usr/local/lib/python2.7/site-packages)
segment: sentry-plugins 9.0.0rc1 (/usr/local/lib/python2.7/site-packages)
zeeg
12
The new integrations are not from plugins.
And that’s definately not an image built from recent git master, more like ancient git master (9.0.0rc1)