Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add probable causes when no TensorBoard profile data is loaded, including additional guidance for Vertex AI TensorBoard permissions. #822

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 17 additions & 0 deletions frontend/app/components/empty_page/empty_page.ng.html
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,23 @@ <h3>Profiling isn't supported in Colab yet.</h3>
<ng-template #no_profile_data>
<div class="container">
<h3>No profile data was found.</h3>
<p>Probable causes:</p>
<ul>
<li>You haven’t captured or uploaded any profile data.</li>
<li>TensorBoard can’t access your profile data.
<ul>
<li>If using Vertex AI TensorBoard, you must grant "Vertex AI Service Agent" IAM role to the
"cloud-tensorboard-web-app&#64;system.gserviceaccount.com"
<a
href="https://cloud.google.com/iam/docs/create-service-agents#grant-role-to-service-agent-console"
rel="noopener"
target="_blank"
>service account</a
>.
</li>
</ul>
</li>
</ul>
<div class="horizontal-center">
<capture-profile></capture-profile>
</div>
Expand Down
Loading