Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 944 Bytes

ScalarData.md

File metadata and controls

29 lines (20 loc) · 944 Bytes

ScalarData

Event data stored in both the Message Cache and Time Series Database. Keys of these measurements become a Metric for the resource.

Properties

Name Type Description Notes

Example

from waylay.services.data.models.scalar_data import ScalarData

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

# convert the object into a dict
scalar_data_dict = scalar_data_instance.to_dict()
# create an instance of ScalarData from a dict
scalar_data_form_dict = scalar_data.from_dict(scalar_data_dict)

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