Skip to content

Releases: dynatrace-extensions/dt-extensions-python-sdk

v1.2.7

08 Jul 12:59
Compare
Choose a tag to compare

CHANGELOG

Release: dt-cli (v1.2.7)

Changes

2024-07-08: Fix an issue with the new name argument in init

v1.2.6

03 Jul 20:41
Compare
Choose a tag to compare

CHANGELOG

Release: dt-cli (v1.2.6)

Changes

2024-07-03: Make python 3.10 required to install the SDK

v1.2.5

28 Jun 16:39
Compare
Choose a tag to compare

CHANGELOG

Release: dt-cli (v1.2.5)

Changes

2024-06-28: Return None if an attribute is not present in the snapshot

v1.2.3

22 Jun 23:08
Compare
Choose a tag to compare

CHANGELOG

Release: dt-cli (v1.2.3)

Changes

2024-06-22: #69 - Fix an issue with the callback iteration timestamp drifting

v1.2.2

20 Jun 16:09
Compare
Choose a tag to compare

CHANGELOG

Release: dt-cli (v1.2.2)

Changes

  • Only keep track of the original timestamp of scheduled methods, don't update that timestamp

v1.2.1

11 Jun 00:14
Compare
Choose a tag to compare

CHANGELOG

Release: dt-cli (v1.2.1)

Changes

2024-06-10: fmt again

v1.2.0

08 Jun 14:59
Compare
Choose a tag to compare

CHANGELOG

Release: dt-cli (v1.2.0)

Changes

New Features

Support for get_snapshot

Add support for snapshots from the OneAgent

  • Users can use self.get_snapshot() when running OneAgent extensions
  • Users can also provide a snapshot file when running from dt-sdk, by default snapshot.json
process_snapshot = self.get_snapshot()
for entry in process_snapshot.entries:
    for process in entry.processes:
        if process.process_name in ("squid", "squid.exe")
            print(process_snapshot.host_id)  # "HOST-524E3E2974F9AC2A"
            print(process.pid)  # 2245656
            print(process.properties.listening_ports)  # [3128]

v1.1.24

07 Jun 03:40
Compare
Choose a tag to compare

CHANGELOG

Release: dt-cli (v1.1.24)

Changes

2024-06-06: merge

v1.1.22

06 Jun 21:21
Compare
Choose a tag to compare

CHANGELOG

Release: dt-cli (v1.1.22)

Changes

2024-06-06: merge

v1.1.17

30 May 19:00
Compare
Choose a tag to compare

CHANGELOG

Release: dt-cli (v1.1.17)

Changes

2024-05-30: Merge branch 'fix-events' of github.com:dynatrace-extensions/dt-extensions-python-sdk into fix-events