Skip to content

Commit c027db0

Browse files
authored
Merge pull request #112756 from craigcaseyMSFT/vcraic0424
fix broken links from OPS report
2 parents c81124a + b349429 commit c027db0

10 files changed

+11
-11
lines changed

articles/service-fabric/service-fabric-cluster-creation-for-windows-server.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -140,7 +140,7 @@ NodeDeactivationInfo NodeName IpAddressOrFQDN NodeType CodeVersion ConfigVersi
140140
```
141141

142142
### Step 3: Visualize the cluster using Service Fabric explorer
143-
[Service Fabric Explorer](service-fabric-visualizing-your-cluster.md) is a good tool for visualizing your cluster and managing applications. Service Fabric Explorer is a service that runs in the cluster, which you access using a browser by navigating to [http://localhost:19080/Explorer](http://localhost:19080/Explorer).
143+
[Service Fabric Explorer](service-fabric-visualizing-your-cluster.md) is a good tool for visualizing your cluster and managing applications. Service Fabric Explorer is a service that runs in the cluster, which you access using a browser by navigating to `http://localhost:19080/Explorer`.
144144

145145
The cluster dashboard provides an overview of your cluster, including a summary of application and node health. The node view shows the physical layout of the cluster. For a given node, you can inspect which applications have code deployed on that node.
146146

articles/service-fabric/service-fabric-create-your-first-linux-application-with-csharp.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ Parameters to these commands can be found in the generated manifests inside the
8585
8686
Once the application has been deployed, open a browser and navigate to
8787
[Service Fabric Explorer](service-fabric-visualizing-your-cluster.md) at
88-
[http://localhost:19080/Explorer](http://localhost:19080/Explorer). Then, expand the **Applications** node and note
88+
`http://localhost:19080/Explorer`. Then, expand the **Applications** node and note
8989
that there is now an entry for your application type and another for the first instance of that type.
9090
9191
> [!IMPORTANT]

articles/service-fabric/service-fabric-create-your-first-linux-application-with-java.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -204,7 +204,7 @@ Parameters to these commands can be found in the generated manifests inside the
204204
205205
Once the application has been deployed, open a browser and navigate to
206206
[Service Fabric Explorer](service-fabric-visualizing-your-cluster.md) at
207-
[http://localhost:19080/Explorer](http://localhost:19080/Explorer).
207+
`http://localhost:19080/Explorer`.
208208
Then, expand the **Applications** node and note that there is now an entry for your application type and another for
209209
the first instance of that type.
210210

articles/service-fabric/service-fabric-get-started-eclipse.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@ After you have built your Service Fabric application, follow these steps to depl
9898

9999
3. From the context menu, click **Deploy Application**.
100100
4. You can follow the progress of the deploy operation in the Console window.
101-
5. To verify that your application is running, open Service Fabric Explorer on your local cluster in a browser window [http://localhost:19080/Explorer](http://localhost:19080/Explorer). Expand the **Applications** node and make sure your application is running.
101+
5. To verify that your application is running, open Service Fabric Explorer on your local cluster in a browser window `http://localhost:19080/Explorer`. Expand the **Applications** node and make sure your application is running.
102102

103103
To learn how to debug your application in Eclipse using the local cluster, see [Debug a Java service in Eclipse](./service-fabric-debugging-your-application-java.md).
104104

articles/service-fabric/service-fabric-get-started-linux.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -174,7 +174,7 @@ Start a local cluster after the installation finishes.
174174
sudo /opt/microsoft/sdk/servicefabric/common/clustersetup/devclustersetup.sh
175175
```
176176

177-
2. Open a web browser and go to [Service Fabric Explorer](http://localhost:19080/Explorer) (`http://localhost:19080/Explorer`). When the cluster starts, you see the Service Fabric Explorer dashboard. It might take several minutes for the cluster to be completely set up. If your browser fails to open the URL or if Service Fabric Explorer doesn't show that the system is ready, wait a few minutes and try again.
177+
2. Open a web browser and go to **Service Fabric Explorer** (`http://localhost:19080/Explorer`). When the cluster starts, you see the Service Fabric Explorer dashboard. It might take several minutes for the cluster to be completely set up. If your browser fails to open the URL or if Service Fabric Explorer doesn't show that the system is ready, wait a few minutes and try again.
178178
179179
![Service Fabric Explorer on Linux][sfx-linux]
180180

articles/service-fabric/service-fabric-get-started-mac.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@ To set up a local Docker container and have a Service Fabric cluster running on
9797
>`docker run -itd -p 19080:19080 -p 8080:8080 --name sfonebox mcr.microsoft.com/service-fabric/onebox:latest`
9898
>
9999

100-
5. The cluster will take a moment to start. When it is running, you can view logs using the following command or jump to the dashboard to view the clusters health [http://localhost:19080](http://localhost:19080):
100+
5. The cluster will take a moment to start. When it is running, you can view logs using the following command or jump to the dashboard to view the clusters health `http://localhost:19080`:
101101

102102
```bash
103103
docker logs sftestcluster

articles/service-fabric/service-fabric-local-linux-cluster-windows.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ To set up a local Docker container and have a service fabric cluster running on
8484
>`docker run -itd -p 19080:19080 -p 8080:8080 --name sfonebox mcr.microsoft.com/service-fabric/onebox:latest`
8585
>
8686

87-
5. The cluster will take a short amount of time to start, you can view logs using the following command or jump to the dashboard to view the clusters health [http://localhost:19080](http://localhost:19080):
87+
5. The cluster will take a short amount of time to start, you can view logs using the following command or jump to the dashboard to view the clusters health `http://localhost:19080`:
8888

8989
```powershell
9090
docker logs sftestcluster

articles/service-fabric/service-fabric-reliable-services-quick-start-java.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -255,7 +255,7 @@ Parameters to these commands can be found in the generated manifests inside the
255255
256256
Once the application has been deployed, open a browser and navigate to
257257
[Service Fabric Explorer](service-fabric-visualizing-your-cluster.md) at
258-
[http://localhost:19080/Explorer](http://localhost:19080/Explorer). Then, expand the **Applications** node and note
258+
`http://localhost:19080/Explorer`. Then, expand the **Applications** node and note
259259
that there is now an entry for your application type and another for the first instance of that type.
260260
261261
> [!IMPORTANT]

articles/service-fabric/service-fabric-tutorial-monitoring-aspnet.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -163,7 +163,7 @@ At this point, you are ready to deploy the application. Click **Start** at the t
163163
>[!NOTE]
164164
>You may get a build error if you do not have an up-to-date version of the .NET Core SDK installed.
165165
166-
Once the application is done deploying, head over to [localhost:8080](localhost:8080), where you should be able to see the Voting Sample single page application. Vote for a few different items of your choice to create some sample data and telemetry - I went for desserts!
166+
Once the application is done deploying, head over to `localhost:8080`, where you should be able to see the Voting Sample single page application. Vote for a few different items of your choice to create some sample data and telemetry - I went for desserts!
167167

168168
![AI sample votes](./media/service-fabric-tutorial-monitoring-aspnet/vote-sample.png)
169169

@@ -248,7 +248,7 @@ public async Task<IActionResult> Delete(string name)
248248
}
249249
```
250250

251-
Once you're done making these changes, **Start** the application so that it builds and deploys the latest version of it. Once the application is done deploying, head over to [localhost:8080](localhost:8080), and add and delete some voting options. Then, go back to your Application Insights resource to see the traces for the latest run (as before, traces can take 1-2 min to show up in Application Insights). For all the votes you added and deleted, you should now see a "Custom Event* along with all the response telemetry.
251+
Once you're done making these changes, **Start** the application so that it builds and deploys the latest version of it. Once the application is done deploying, head over to `localhost:8080`, and add and delete some voting options. Then, go back to your Application Insights resource to see the traces for the latest run (as before, traces can take 1-2 min to show up in Application Insights). For all the votes you added and deleted, you should now see a "Custom Event* along with all the response telemetry.
252252

253253
![custom events](./media/service-fabric-tutorial-monitoring-aspnet/custom-events.png)
254254

articles/storage/files/storage-snapshots-files.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ After a share snapshot is created, it can be read, copied, or deleted, but not m
3333
Share snapshot capability is provided at the file share level. Retrieval is provided at individual file level, to allow for restoring individual files. You can restore a complete file share by using SMB, the REST API, the portal, the client library, or PowerShell/CLI tooling.
3434

3535
A share snapshot of a file share is identical to its base file share. The only difference is that a **DateTime** value is appended to the share URI to indicate the
36-
time at which the share snapshot was taken. For example, if a file share URI is http://storagesample.core.file.windows.net/myshare, the share snapshot URI is similar to:
36+
time at which the share snapshot was taken. For example, if a file share URI is http:\//storagesample.core.file.windows.net/myshare, the share snapshot URI is similar to:
3737
```
3838
http://storagesample.core.file.windows.net/myshare?snapshot=2011-03-09T01:42:34.9360000Z
3939
```

0 commit comments

Comments
 (0)