Skip to content
Merged
Show file tree
Hide file tree
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
2 changes: 2 additions & 0 deletions dev/find_missing_docs_links.py
Original file line number Diff line number Diff line change
Expand Up @@ -118,6 +118,8 @@ async def check_all_http_links(http_link_infos, errors):
src_file, line_num, link, _, _ = link_info
if link in links:
continue
if "://localhost:" in link:
continue
links.add(link)
tasks.append(
asyncio.ensure_future(check_http_link(session, src_file, line_num, link, errors))
Expand Down
6 changes: 6 additions & 0 deletions docs/workloads/realtime/metrics.md
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,12 @@ URL:
cortex env list
```

If your operator load balancer is configured to be internal, there are a few options for accessing the dashboard:

1. Access the dashboard from a machine that has VPC Peering configured to your cluster's VPC, or which is inside of your cluster's VPC
1. Run `kubectl port-forward -n default grafana-0 3000:3000` to forward Grafana's port to your local machine, and access the dashboard on [http://localhost:3000/](http://localhost:3000/) (see instructions for setting up `kubectl` on [AWS](../../clusters/aws/kubectl.md) or [GCP](../../clusters/gcp/kubectl.md))
1. Set up VPN access to your cluster's VPC ([docs](https://docs.aws.amazon.com/vpc/latest/userguide/vpn-connections.html))

### Default credentials

The dashboard is protected with username / password authentication, which by default are:
Expand Down