Skip to content

This sample demonstrates how SignalR can be used to connect a Windows Azure Cloud Service and a Windows Azure Web Site.

License

Notifications You must be signed in to change notification settings

woloski/SiteMonitR

 
 

Repository files navigation

SiteMonitR Sample

The SiteMonitR sample demonstrates how a Windows Azure Cloud Service and a Windows Azure Web Site can use SignalR to communicate in an asynchronous communication. The SiteMonitR Cloud Service pings all of the sites in a list of sites stored in Windows Azure Table Storage. As each site's status is obtained, it is sent over to a SignalR Hub housed in a Windows Azure Web Site. When the SignalR Hub receives notifications for a site, the Web Site's user interface is updated in real-time. The result is a web site monitoring application that provides up-to-date status of web sites, giving site administrators real-time data on how their sites are performing.

Prerequisites

Running the Sample Locally

To get the site and cloud service running locally on a development workstation execute the following steps.

  1. Open Visual Studio 2012 as an Administrator (the Windows Azure SDK requires elevated priveleges to run the Windows Azure Compute and Storage emulators)
  2. Open the SiteMonitR.sln solution
  3. Press the F5 key to run the Cloud Service and Web Site simultaneously
  4. Use the HTML form to add a URL (include the "http://" in the text box)
  5. Observe as the site is monitored
  6. Add any additional sites and observe how they are monitored in real time

Running the Sample in Windows Azure

To get the site and cloud service running in Windows Azure, execute the following steps. A more comprehensive walk-through on setting up the entire application, see the Getting Started document for this sample.

  1. Log in to the Windows Azure portal.
  2. Create a new storage account to be used by the application.
  3. Create a new Cloud Service to use as the background service for the SiteMonitR application.
  4. Create a new Web Site to use to as the front-end web site for the SiteMonitR application.
  5. Go into the dashboard for the new storage account you created and click the Manage Keys button at the bottom of the portal. Copy the storage account's key to the clipboard.
  6. In Visual Studio 2012, expand the SiteMonitR.Azure project's Roles node. Double-click the SiteMonitR.WorkerRole node to open up the role's settings pane.
  7. Select the Cloud option from the Service Configuration drop-down menu.
  8. Click the ellipse button next to the SiteMonitRConnectionString setting.
  9. Enter in the storage account name and primary access key copied from the portal.
  10. Click the OK button.
  11. Repeat the same steps to set the Microsoft.WindowsAzure.Plugins.Diagnostics.ConnectionString setting.
  12. Change the GUI_URL setting to reflect the URL of the Windows Azure Web Site you created using the Windows Azure portal.
  13. Right-click the SiteMonitR.Azure project and select the Publish menu item from the context menu.
  14. If you haven't yet imported your publish settings, click the Sign in to download credentials link in the publish dialog.
  15. Your web browser will open up and browse to the Windows Azure publish profile download page. When the page tries to download the publish settings file, click the Save button to save the file to your local workstation.
  16. Go back to Visual Studio 2012. Click the Import button in the publish dialog. Then, browse to the publish settings file you just downloaded and select it.
  17. Click the Publish button to deploy the Cloud Service to Windows Azure.
  18. The Windows Azure Activity Log window should open to display the Cloud Service's publishing process happening.
  19. Go back to the Windows Azure portal. Click the web site you just created to load the site's dashboard page.
  20. Once the site's dashboard loads in the browser, click the Download publish profile link.
  21. When the browser tries to download the file, save it to your local workstation.
  22. Right-click the SiteMonitR.Web project in Visual Studio 2012. Then select the Publish menu item from the context menu.
  23. Click the Import button on the publish dialog. Then, find the web site publish settings file downloaded from the Windows Azure portal.
  24. Click the Publish button in the dialog to publish the web site to Windows Azure.
  25. Once the site has been published, go back to the site's dashboard page in the Windows Azure portal. Click the Configure tab.
  26. Change the default document from Default.htm to Default.html. Then delete the other options from the list of default pages. Then, click the Save button to save the site configuration.
  27. Click the Browse button at the bottom of the web site's dashboard to browse the site.
  28. The site will open and present you with a simple form you can use to provide URL's of sites you'd like to monitor.
  29. Type in a site URL and click the Add Site button. The site will be added to the list of sites you are monitoring.
  30. Add in as many sites as you would like. All of the sites are monitored by the Cloud Service. Their status will update in real-time as the sites are hit by the service and reported in the web site. To remove a site, click the X button and the site will be removed from the list of sites monitored by the application.

Detailed Instructions

For a more detailed walk-through on how to perform each of the individual tasks required to get this sample working in Windows Azure, see the sample's Getting Started document in the repository containing the code for the sample.

About

This sample demonstrates how SignalR can be used to connect a Windows Azure Cloud Service and a Windows Azure Web Site.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • JavaScript 93.2%
  • C# 6.8%