{% extends 'layout/base.html' %} {% block title %} Openmetadata - Dataset list{% endblock title %} {% block content %}

OpenMetadata

Explore Assets

OpenMetadata has 28 Assets. Click Explore on top menu to search, claim or follow your Data Assets

Register Services

Create a service to bring in metadata. Click Settings -> Services to explore available services.

Knowledgebase

Check our docs for documentation and try out the APIs here.

{% for dataset in datasets %}

{{dataset.description}}

Owner : {{dataset.owner.name|default:"--"}} Service : {{dataset.service|default:"--"}} Usage : {% if dataset.usageSummary.weeklyStats.percentileRank %}{% cycle 'Medium - ' 'Low - ' %} {% endif %}{{dataset.usageSummary.weeklyStats.percentileRank|default:"--"}}{% if dataset.usageSummary.weeklyStats.percentileRank %}th pctile {% endif %} Tier : {% if dataset.tags %} Tier2 {% else %} {{dataset.tier|default:"No Tier"}} {% endif %}

{% if dataset.tags %}
#Tier2#PersonalData.Personal
{% endif %}
{% endfor %}
{% endblock content %}