Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
GÉANT Service Orchestrator
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Jira
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
GÉANT Orchestration and Automation Team
GAP
GÉANT Service Orchestrator
Merge requests
!237
Added sentry SDK
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Added sentry SDK
feature/add-sentry-sdk
into
develop
Overview
2
Commits
6
Pipelines
8
Changes
1
Merged
Neda Moeini
requested to merge
feature/add-sentry-sdk
into
develop
10 months ago
Overview
2
Commits
6
Pipelines
8
Changes
1
Expand
0
0
Merge request reports
Compare
develop
version 7
23370f8f
10 months ago
version 6
058cc6db
10 months ago
version 5
a0ecd181
10 months ago
version 4
dc9a876f
10 months ago
version 3
30d1862f
10 months ago
version 2
3d5b0a83
10 months ago
version 1
79a27c13
10 months ago
develop (base)
and
version 3
latest version
f35b7852
6 commits,
10 months ago
version 7
23370f8f
5 commits,
10 months ago
version 6
058cc6db
5 commits,
10 months ago
version 5
a0ecd181
4 commits,
10 months ago
version 4
dc9a876f
4 commits,
10 months ago
version 3
30d1862f
3 commits,
10 months ago
version 2
3d5b0a83
2 commits,
10 months ago
version 1
79a27c13
1 commit,
10 months ago
1 file
+
8
−
0
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
gso/__init__.py
+
8
−
0
Options
"""
The main entrypoint for :term:`GSO`, and the different ways in which it can be run.
"""
import
sentry_sdk
import
typer
from
orchestrator
import
OrchestratorCore
,
app_settings
from
orchestrator.cli.main
import
app
as
cli_app
@@ -15,6 +16,13 @@ from gso.graphql_api.types import GSO_SCALAR_OVERRIDES
SCALAR_OVERRIDES
.
update
(
GSO_SCALAR_OVERRIDES
)
sentry_sdk
.
init
(
dsn
=
"
https://2b0b82245bfa6631041802c997ed8b58@test-observer01.geant.org/3
"
,
# Set traces_sample_rate to 1.0 to capture 100%
# of transactions for performance monitoring.
traces_sample_rate
=
1.0
,
)
def
init_gso_app
()
->
OrchestratorCore
:
"""
Initialise the :term:`GSO` app.
"""
Loading