Esempio n. 1
0
get('/', function() {
    return this.render('index.html.haml', {
        locals: {
            title: 'Insight',
            config: insight.config().load()
        }
    });
});
Esempio n. 2
0
get('/status/:environment', function(environment) {
    var config = insight.config().load();
    insight.appStatusAggregator(config, eventBroker, this).aggregate(environment);
});