diff --git a/python/pyspark/context.py b/python/pyspark/context.py index 6e9f24ef1026b..dfb4cc624b285 100644 --- a/python/pyspark/context.py +++ b/python/pyspark/context.py @@ -332,6 +332,11 @@ def applicationId(self): """ return self._jsc.sc().applicationId() + @property + def uiWebUrl(self): + """Return the URL of the SparkUI instance started by this SparkContext""" + return self._jsc.sc().uiWebUrl().get() + @property def startTime(self): """Return the epoch time when the Spark Context was started."""