View on GitHub

lakeFS

lakeFS - Data version control for your data lake | Git for data

StatsEvent

Properties

Name Type Description Notes
var_class str stats event class (e.g. \"s3_gateway\", \"openapi_request\", \"experimental-feature\", \"ui-event\")  
name str stats event name (e.g. \"put_object\", \"create_repository\", \"<experimental-feature-name>\")  
count int number of events of the class and name  

Example

from lakefs_sdk.models.stats_event import StatsEvent

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

# convert the object into a dict
stats_event_dict = stats_event_instance.to_dict()
# create an instance of StatsEvent from a dict
stats_event_form_dict = stats_event.from_dict(stats_event_dict)

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