Skip to content

Commit 7f17ea1

Browse files
authored
feat: Add environment property to SentryOptions (#66)
Add SentryOptions.environment property. Environment is auto-detected for user convenience, and it will be possible to assign it after #60 is merged. Also, change auto-detected environment names to prioritize development environments. Resolves GH-64
1 parent 623b874 commit 7f17ea1

8 files changed

+28
-16
lines changed

CHANGELOG.md

+1
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@
66

77
- Improve & expose `SentryOptions` class ([#56](https://github.com/getsentry/sentry-godot/pull/56))
88
- Create or modify events using `SentryEvent` objects and new SDK methods: `SentrySDK.create_event()`, `SentrySDK.capture_event(event)` ([#51](https://github.com/getsentry/sentry-godot/pull/51))
9+
- New `environment` property in `SentryOptions` and better auto-naming to prioritize development environments ([#66](https://github.com/getsentry/sentry-godot/pull/66))
910
- Configure the SDK via GDScript and filter events using event hooks `before_send` and `on_crash`. The new `SentryConfiguration` class can be extended in a script and assigned in options to configure the SDK during initialization. However, due to the way scripting is initialized in the Godot Engine, this comes with a trade-off: a slightly later initialization. If a configuration script is assigned, initialization must be delayed until ScriptServer is ready to load and run the user script. ([#60](https://github.com/getsentry/sentry-godot/pull/60))
1011

1112
### Dependencies

project/example_configuration.gd

+1
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ func _configure(options: SentryOptions) -> void:
1010

1111
options.debug = true
1212
options.release = "sentry-godot-demo@" + ProjectSettings.get_setting("application/config/version")
13+
options.environment = "demo"
1314

1415
# Set up event callbacks
1516
options.before_send = _before_send

src/sentry/contexts.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -268,7 +268,7 @@ Dictionary make_godot_engine_context() {
268268
godot_context["version_commit"] = version_info.get("hash", "");
269269
godot_context["debug_build"] = OS::get_singleton()->is_debug_build();
270270
godot_context["command_line_arguments"] = OS::get_singleton()->get_cmdline_args();
271-
godot_context["mode"] = String(sentry::environment::get_environment());
271+
godot_context["mode"] = sentry::environment::detect_godot_environment();
272272
godot_context["editor_build"] = OS::get_singleton()->has_feature("editor");
273273
godot_context["godot_sdk_version"] = String(SENTRY_GODOT_SDK_VERSION);
274274

src/sentry/environment.cpp

+7-5
Original file line numberDiff line numberDiff line change
@@ -5,20 +5,22 @@
55

66
namespace sentry::environment {
77

8-
CharString get_environment() {
8+
String detect_godot_environment() {
99
ERR_FAIL_NULL_V(Engine::get_singleton(), "production");
1010
ERR_FAIL_NULL_V(OS::get_singleton(), "production");
1111

12+
// We need to have either "dev" or "debug" in the name to prioritize dev environments:
13+
// https://develop.sentry.dev/application-architecture/dynamic-sampling/fidelity-and-biases/#prioritize-dev-environments
1214
if (OS::get_singleton()->has_feature("dedicated_server")) {
1315
return "dedicated_server";
1416
} else if (Engine::get_singleton()->is_editor_hint()) {
15-
return "editor";
17+
return "editor_dev";
1618
} else if (OS::get_singleton()->has_feature("editor")) {
17-
return "editor-run";
19+
return "editor_dev_run";
1820
} else if (OS::get_singleton()->is_debug_build()) {
19-
return "export-debug";
21+
return "export_debug";
2022
} else {
21-
return "export-release";
23+
return "export_release";
2224
}
2325
}
2426

src/sentry/environment.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,6 @@ using namespace godot;
44

55
namespace sentry::environment {
66

7-
CharString get_environment();
7+
String detect_godot_environment();
88

99
}

src/sentry/native/native_sdk.cpp

+9-9
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@
22

33
#include "sentry.h"
44
#include "sentry/contexts.h"
5-
#include "sentry/environment.h"
65
#include "sentry/level.h"
76
#include "sentry/native/native_event.h"
87
#include "sentry/native/native_util.h"
@@ -219,7 +218,16 @@ void NativeSDK::initialize() {
219218
ERR_FAIL_NULL(ProjectSettings::get_singleton());
220219

221220
sentry_options_t *options = sentry_options_new();
221+
222222
sentry_options_set_dsn(options, SentryOptions::get_singleton()->get_dsn().utf8());
223+
sentry_options_set_database_path(options, (OS::get_singleton()->get_user_data_dir() + "/sentry").utf8());
224+
sentry_options_set_debug(options, SentryOptions::get_singleton()->is_debug_enabled());
225+
sentry_options_set_release(options, SentryOptions::get_singleton()->get_release().utf8());
226+
sentry_options_set_environment(options, SentryOptions::get_singleton()->get_environment().utf8());
227+
// TODO: add dist
228+
sentry_options_set_sample_rate(options, SentryOptions::get_singleton()->get_sample_rate());
229+
sentry_options_set_max_breadcrumbs(options, SentryOptions::get_singleton()->get_max_breadcrumbs());
230+
sentry_options_set_sdk_name(options, "sentry.native.godot");
223231

224232
// Establish handler path.
225233
String handler_fn;
@@ -247,14 +255,6 @@ void NativeSDK::initialize() {
247255
sentry_options_set_backend(options, NULL);
248256
}
249257

250-
sentry_options_set_database_path(options, (OS::get_singleton()->get_user_data_dir() + "/sentry").utf8());
251-
sentry_options_set_sample_rate(options, SentryOptions::get_singleton()->get_sample_rate());
252-
sentry_options_set_release(options, SentryOptions::get_singleton()->get_release().utf8());
253-
sentry_options_set_debug(options, SentryOptions::get_singleton()->is_debug_enabled());
254-
sentry_options_set_environment(options, sentry::environment::get_environment());
255-
sentry_options_set_sdk_name(options, "sentry.native.godot");
256-
sentry_options_set_max_breadcrumbs(options, SentryOptions::get_singleton()->get_max_breadcrumbs());
257-
258258
// Attach LOG file.
259259
// TODO: Decide whether log-file must be trimmed before send.
260260
if (SentryOptions::get_singleton()->is_attach_log_enabled()) {

src/sentry_options.cpp

+4
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
11
#include "sentry_options.h"
2+
3+
#include "sentry/environment.h"
24
#include "sentry/simple_bind.h"
35

46
#include <godot_cpp/classes/project_settings.hpp>
@@ -135,6 +137,7 @@ void SentryOptions::_bind_methods() {
135137
BIND_PROPERTY(SentryOptions, PropertyInfo(Variant::BOOL, "disabled_in_editor"), set_disabled_in_editor, is_disabled_in_editor);
136138
BIND_PROPERTY(SentryOptions, PropertyInfo(Variant::STRING, "dsn"), set_dsn, get_dsn);
137139
BIND_PROPERTY(SentryOptions, PropertyInfo(Variant::STRING, "release"), set_release, get_release);
140+
BIND_PROPERTY(SentryOptions, PropertyInfo(Variant::STRING, "environment"), set_environment, get_environment);
138141
BIND_PROPERTY(SentryOptions, PropertyInfo(Variant::BOOL, "debug"), set_debug_enabled, is_debug_enabled);
139142
BIND_PROPERTY(SentryOptions, PropertyInfo(Variant::FLOAT, "sample_rate"), set_sample_rate, get_sample_rate);
140143
BIND_PROPERTY(SentryOptions, PropertyInfo(Variant::BOOL, "attach_log"), set_attach_log, is_attach_log_enabled);
@@ -163,6 +166,7 @@ void SentryOptions::_bind_methods() {
163166

164167
SentryOptions::SentryOptions() {
165168
error_logger_limits.instantiate(); // Ensure limits are initialized.
169+
environment = sentry::environment::detect_godot_environment();
166170
}
167171

168172
SentryOptions::~SentryOptions() {

src/sentry_options.h

+4
Original file line numberDiff line numberDiff line change
@@ -44,6 +44,7 @@ class SentryOptions : public RefCounted {
4444
bool disabled_in_editor = true;
4545
String dsn = "";
4646
String release = "{app_name}@{app_version}";
47+
String environment;
4748
bool debug = false;
4849
double sample_rate = 1.0;
4950
bool attach_log = true;
@@ -83,6 +84,9 @@ class SentryOptions : public RefCounted {
8384
_FORCE_INLINE_ String get_release() const { return release; }
8485
_FORCE_INLINE_ void set_release(const String &p_release) { release = p_release; }
8586

87+
_FORCE_INLINE_ String get_environment() const { return environment; }
88+
_FORCE_INLINE_ void set_environment(const String &p_environment) { environment = p_environment; }
89+
8690
_FORCE_INLINE_ bool is_debug_enabled() const { return debug; }
8791
_FORCE_INLINE_ void set_debug_enabled(bool p_debug) { debug = p_debug; }
8892

0 commit comments

Comments
 (0)