@(state: spark.deploy.MasterState) @import spark.deploy.master._ @import spark.Utils @spark.common.html.layout(title = "Spark Master on " + state.host) {

Workers


@worker_table(state.workers.sortBy(_.id))

Running Applications


@app_table(state.activeApps.sortBy(_.startTime).reverse)

Completed Applications


@app_table(state.completedApps.sortBy(_.endTime).reverse)
}