Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions dynatrace/environment_v2/problems.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
from dynatrace.environment_v2.custom_tags import METag
from dynatrace.configuration_v1.alerting_profiles import AlertingProfileStub
from dynatrace.pagination import PaginatedList
from dynatrace.utils import int64_to_datetime
from dynatrace.utils import int64_to_datetime, timestamp_to_string


class ProblemService:
Expand All @@ -55,8 +55,8 @@ def list(
"problemSelector": problem_selector,
"entitySelector": entity_selector,
"fields": fields,
"from": time_from,
"to": time_to,
"from": timestamp_to_string(time_from),
"to": timestamp_to_string(time_to),
"sort": sort,
"pageSize": page_size,
}
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "dt"
version = "1.1.72"
version = "1.1.73"
description = "Dynatrace API Python client"
readme = "README.md"
authors = ["David Lopes <[email protected]>"]
Expand Down