-
Notifications
You must be signed in to change notification settings - Fork 28
Link Bugsink to GitLab fails due to missing endpoint #90
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Comments
I can confirm that the endpoint at the moment does not exist. It sure could be added (although time would not to be allotted to it). Do you happen to have a link to specs/documentation/reverse-engineered behaviors? |
Sadly not. I just tried to see if it is possible to connect Bugsink and GitLab. |
The sentry docs have some specs for this endpoint: {
"type": "array",
"items": {
"required": [
"avatar",
"color",
"dateCreated",
"features",
"firstEvent",
"hasAccess",
"id",
"isBookmarked",
"isInternal",
"isMember",
"isPublic",
"name",
"organization",
"platform",
"slug",
"status"
],
"properties": {
"avatar": {
"type": "object",
"properties": {
"avatarType": {
"type": "string"
},
"avatarUuid": {
"type": "string",
"nullable": true
}
}
},
"color": {
"type": "string"
},
"dateCreated": {
"type": "string",
"format": "date-time"
},
"features": {
"type": "array",
"items": {
"type": "string"
}
},
"firstEvent": {
"type": "string",
"nullable": true
},
"hasAccess": {
"type": "boolean"
},
"id": {
"type": "string"
},
"isBookmarked": {
"type": "boolean"
},
"isInternal": {
"type": "boolean"
},
"isMember": {
"type": "boolean"
},
"isPublic": {
"type": "boolean"
},
"name": {
"type": "string"
},
"organization": {
"type": "object",
"required": [
"avatar",
"dateCreated",
"id",
"isEarlyAdopter",
"name",
"require2FA",
"slug",
"status"
],
"properties": {
"avatar": {
"type": "object",
"properties": {
"avatarType": {
"type": "string"
},
"avatarUuid": {
"type": "string",
"nullable": true
}
}
},
"dateCreated": {
"type": "string",
"format": "date-time"
},
"id": {
"type": "string"
},
"isEarlyAdopter": {
"type": "boolean"
},
"name": {
"type": "string"
},
"require2FA": {
"type": "boolean"
},
"slug": {
"type": "string"
},
"status": {
"type": "object",
"required": [
"id",
"name"
],
"properties": {
"id": {
"type": "string"
},
"name": {
"type": "string"
}
}
}
}
},
"platform": {
"type": "string",
"nullable": true
},
"slug": {
"type": "string"
},
"status": {
"type": "string",
"enum": [
"active",
"disabled",
"pending_deletion",
"deletion_in_progress"
]
}
}
}
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
GitLab allows me to link Sentry to GitLab to discover and view the errors my application generates via the "Settings > Monitoring > Error tracking" configuration. I tried passing my Bugsink URL and the auth token I generated previously. See the screenshot below:
When clicking the "Connect" button, GitLab responds with "Connection failed. Check Auth Token and try again."
Checking the logs, GitLab tries to request this URL, which does not seem to exist in Bugsink
/api/0/projects/
Can the endpoint be added?
The text was updated successfully, but these errors were encountered: