org.apache.spark.dataflint.api.DataFlintTab.scala Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of spark_2.13 Show documentation
Show all versions of spark_2.13 Show documentation
Open Source Data-Application Performance Monitoring for Apache Spark
The newest version!
package org.apache.spark.dataflint.api
import org.apache.spark.ui.{SparkUI, UIUtils, WebUITab}
import javax.servlet.http.HttpServletRequest
import scala.xml.Node
class DataFlintTab(parent: SparkUI) extends WebUITab(parent,"dataflint") {
override val name: String = "DataFlint"
def render(request: HttpServletRequest): Seq[Node] = {
val content =
UIUtils.basicSparkPage(request, content, "DataFlint", true)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy