You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -148,7 +148,9 @@ Unusual events that prevent an operation from completing successfully include:
148
148
* API usage errors
149
149
* other unexpected events (like out of memory situations)
150
150
151
-
The exact situations and arguments in/with which the callback is invoked are undocumented and may change at any time.
151
+
> *NOTE*: Use this as a development and debugging aid only. Your application should not rely on a calling sequence or any arguments in addition to the
152
+
unicode message being set or passed to the callback.
153
+
152
154
```python
153
155
def_diag_callback(unicode_message):
154
156
print(unicode_message)
@@ -281,7 +283,7 @@ See the documentation for more information:
281
283
<aname="incoming-web-requests"></a>
282
284
### Incoming web requests
283
285
284
-
[Like for database infos](#sql-database-requests), to trace incoming web requests you need a web application info object which stores the
286
+
[Same as with database infos](#sql-database-requests), to trace incoming web requests you need a web application info object which stores the
285
287
information about your web application which does not change:
286
288
287
289
```python
@@ -512,7 +514,7 @@ If you are viewing the [GitHub repository](https://github.com/Dynatrace/OneAgent
512
514
<aname="let-us-help-you"></a>
513
515
### Let us help you
514
516
515
-
Make sure your issue is not already solved in the [available documentation](#documenation) before you ask for help. Especially the
517
+
Make sure your issue is not already solved in the [available documentation](#documentation) before you ask for help. Especially the
516
518
[troubleshooting section in this README](#troubleshooting) may prove helpful.
517
519
518
520
@@ -530,21 +532,6 @@ Make sure your issue is not already solved in the [available documentation](#doc
530
532
Please see the [GitHub releases page](https://github.com/Dynatrace/OneAgent-SDK-for-Python/releases),
531
533
and the [PyPI release history](https://pypi.org/project/oneagent-sdk/#history).
532
534
533
-
### Breaking Changes in 1.1.0
534
-
The SDK initialization has changed. Until now you had the possibility to initialize the SDK using
535
-
two methods:
536
-
-`oneagent.try_init()`
537
-
-`oneagent.sdk.SDK.get()`
538
-
539
-
The latter method implicitly initialized the SDK. This was changed in 1.1.0. Both methods were removed.
540
-
Now it's mandatory to call [`oneagent.initialize()`](https://dynatrace.github.io/OneAgent-SDK-for-Python/docs/sdkref.html#oneagent.initialize)
541
-
to initialize the SDK and [`oneagent.shutdown()`](https://dynatrace.github.io/OneAgent-SDK-for-Python/docs/sdkref.html#oneagent.shutdown)
542
-
to shut the SDK down. For each initialize call there must be a corresponding shutdown call. The
543
-
`oneagent.sdk.SDK.get()` method was replaced by a new [`oneagent.get_sdk()`](https://dynatrace.github.io/OneAgent-SDK-for-Python/docs/sdkref.html#oneagent.get_sdk)
544
-
method which does not implicitly initialize the SDK anymore. If this new method is called without
545
-
previously initializing the SDK then a dummy (non-functional) SDK instance will be returned. This
0 commit comments