Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.54 KB

File metadata and controls

31 lines (22 loc) · 1.54 KB

AdjustedTimeframe

Time frame provided in API request is slightly adjusted in response for faster API response. For example, In request payload, if timeframe is 08:03 - 14:03, which is a 6 hour window size. It is adjusted to 08:05 - 14:00 Another example, In request payload, if timeframe is 08:20 - 08:20 (next day) which is a 24h window size. It is adjusted to 08:30 - 08:00 (next day)

Properties

Name Type Description Notes
to int end of timeframe expressed as the Unix epoch time in milliseconds. Eg: `ISO 8601` standard time `2024-06-27T05:05:55.615Z` can be represented as `1719464755615` in Unix epoch time in milliseconds.
window_size int windowSize in milliseconds [optional]

Example

from instana_client.models.adjusted_timeframe import AdjustedTimeframe

# TODO update the JSON string below
json = "{}"
# create an instance of AdjustedTimeframe from a JSON string
adjusted_timeframe_instance = AdjustedTimeframe.from_json(json)
# print the JSON string representation of the object
print(AdjustedTimeframe.to_json())

# convert the object into a dict
adjusted_timeframe_dict = adjusted_timeframe_instance.to_dict()
# create an instance of AdjustedTimeframe from a dict
adjusted_timeframe_from_dict = AdjustedTimeframe.from_dict(adjusted_timeframe_dict)

[Back to Model list] [Back to API list] [Back to README]