Application Info

Tornado

Version: {{ tornado_version }}

iFlux

Root Path: {{ iflux_conf.ROOT }}
Version: {{ iflux.__version__ }}

Data

Connection Handlers

{% for type, value in iflux_conf.data['connection']['handlers'].items() %} {% end %}
Type Handler
{{ type }} {{ value['module'] }}.{{ value['handler'] }}

Connection Instances

{% for name, value in iflux_conf.data['connection']['instances'].items() %} {% end %}
Name Type Configuration
{{ name }} {{ value['type'] }} {{ value }}

Session

session.enabled: {{ iflux_conf.session['enabled'] }}
{% if iflux_conf.session['enabled'] %} session.type: {{ iflux_conf.session['type'] }}
session.path: {{ iflux_conf.session['path'] }}

Session Handlers

{% for type, value in iflux_conf.session['handlers'].items() %} {% end %}
Type Module Handler
{{ type }} {{ value['module'] }} {{ value['handler'] }}
{% end %}

Handlers

{% for handler in handlers %} {% end %}
Pattern Handler kargs
{{ handler.regex.pattern.replace('$', '') }} {{ handler.handler_class.__module__ }}.{{ handler.handler_class.__name__ }} {{ handler.kwargs }}