We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5bf3663 commit 17f384bCopy full SHA for 17f384b
spark-ui-proxy.py
@@ -89,6 +89,11 @@ def do_POST(self):
89
postData = self.rfile.read(length)
90
self.proxyRequest(postData)
91
92
+ def log_request(self, code='-', size='-'):
93
+ if "GET /healthz" in self.requestline and 200 == code:
94
+ return
95
+ super(ProxyHandler, self).log_request(code, size)
96
+
97
def proxyRequest(self, data):
98
targetHost, path = self.extractUrlDetails(self.path)
99
targetUrl = "http://" + targetHost + path
0 commit comments