Skip to content

WIP - Add links to useful dashboard locations #6248

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

Open
wants to merge 2 commits into
base: develop
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
29 changes: 29 additions & 0 deletions vip-dashboard/components/widget-welcome.php
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,35 @@ function render_vip_dashboard_widget_welcome() {

<p>WordPress VIP is a partnership between Automattic and the most high-profile, innovative and smart WordPress websites out there. We’re excited to have you here.</p>

<h3 class="widget__subtitle">WPVIP Dashboard Links</h3>

<a href="https://dashboard.wpvip.com/apps/<?= VIP_GO_APP_ID . "/" . VIP_GO_APP_ENVIRONMENT ?>" target="_blank">WPVIP Dashboard</a>
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I don't think this will work as intended for child sites since VIP_GO_APP_ID doesn't translate to the parent ID.


<div class="widget__col-2">
<ul class="widget__list">
<li>
<a href="https://dashboard.wpvip.com/apps/<?= VIP_GO_APP_ID . "/" . VIP_GO_APP_ENVIRONMENT ?>/perfomance/insights/http" target"_blank">HTTP Performance metrics</a>
<span>Origin and Edge http performance metrics</span>
</li>
<li>
<a href="https://dashboard.wpvip.com/apps/<?= VIP_GO_APP_ID . "/" . VIP_GO_APP_ENVIRONMENT ?>/perfomance/insights/database" target"_blank">Database Performance metrics</a>
<span>Database performance metrics</span>
</li>
</ul>
</div>
<div class="widget__col-2">
<ul class="widget__list">
<li>
<a href="https://dashboard.wpvip.com/apps/<?= VIP_GO_APP_ID . "/" . VIP_GO_APP_ENVIRONMENT ?>/perfomance/insights/resource-usage" target"_blank">Resource Usage</a>
<span>Application Resource Usage</span>
</li>
<li>
<a href="https://dashboard.wpvip.com/apps/<?= VIP_GO_APP_ID . "/" . VIP_GO_APP_ENVIRONMENT ?>/perfomance/insights/cache" target"_blank">Cache Performance metrics</a>
<span>Cache performance metrics</span>
</li>
</ul>
</div>

<h3 class="widget__subtitle">Helpful Links</h3>

<div class="widget__col-2">
Expand Down
Loading