Event data stored in both the Message Cache and Time Series Database. Keys of these measurements become a Metric for the resource.
Name | Type | Description | Notes |
---|
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)