Skip to content
#

application-insights

Here are 172 public repositories matching this topic...

GavinOsborn
GavinOsborn commented Apr 18, 2018

We leverage Azure Service Bus heavily in our applications.
We write a lot of code that semantically looks like this:

while(true){
  const message = servicebus.getMessage();
  if(message){
    ProcessMessage(message);
  }
}

function ProcessMessage(message){
  request.get('http://some-service/get-stuff', (res) => {
    if(res.statusCode == 200){
      request.post('http://some-

Improve this page

Add a description, image, and links to the application-insights topic page so that developers can more easily learn about it.

Curate this topic

Add this topic to your repo

To associate your repository with the application-insights topic, visit your repo's landing page and select "manage topics."

Learn more

You can’t perform that action at this time.