Embedding a dashboard in Databricks

vvanag
New Contributor III

Hi,

 

I try to embed my dashboard in Databricks Notebook as

 

some_html = """
<iframe
  src="...."
  width="100%"
  height="600"
  frameborder="0">
</iframe>
"""

displayHTML(some_html)

 

then I get an error of the form:

 

This dashboard is unavailable
Please try again later. Show details
 
And the details says:
 
"""
RPC has already been initialized in the current window. To minimize the opportunities for incompatible changes, only one RPC host can be initialized inside a global context
"""
 
How can I embed the dashboard? The above is not making sense to me.