{% extends 'base.html' %} {% block content %}

Services

{% if context_found %}
{{ services | length }} services found in context {{ session['context_uuid'] }}
{% else %}
Context {{ session['context_uuid'] }} not found.
{% endif %}
{% if services %} {% for service in services %} {% endfor %} {% else %} {% endif %}
# Type End points Constraints Status Configuration
{{ service.service_id.service_uuid.uuid }} {{ ste.Name(service.service_type).replace('SERVICETYPE_', '') }}
    {% for end_point in service.service_endpoint_ids %}
  • {{ end_point.device_id.device_uuid.uuid }} / {{ end_point.endpoint_uuid.uuid }}
  • {% endfor %}
    {% for constraint in service.service_constraints %}
  • {{ constraint.constraint_type }}: {{ constraint.constraint_value }}
  • {% endfor %}
{{ sse.Name(service.service_status.service_status).replace('SERVICESTATUS_', '') }}
    {% for rule in service.service_config.config_rules %}
  • Key: {{ rule.resource_key }}
    Value: {{ rule.resource_value }}
  • {% endfor %}
No services found
{% endblock %}