Questions tagged [azure-traffic-manager]

Microsoft Azure Traffic Manager is a DNS-based global traffic-routing service. It can be used to route traffic between application endpoints around the world, both in Azure and externally to Azure. Routing is based on a number of traffic-routing methods. Endpoints are monitored, so that traffic can be automatically re-directed in case of endpoint failure.

Microsoft Azure Traffic Manager allows you to control the distribution of user traffic to your specified endpoints, which can include cloud services and web sites. Traffic Manager works by applying an intelligent policy engine to Domain Name System (DNS) queries for the domain names of your Internet resources. Your cloud services or web sites can be running in the same datacenter or in different datacenters across the world.

Traffic Manager can help you:

  • Improve availability of critical applications – Traffic Manager allows you to improve the availability of your critical applications by monitoring your endpoints in Windows Azure and providing automatic failover capabilities when a cloud service or web site goes down.

  • Improve responsiveness for high performing applications – Windows Azure allows you to run cloud services or web sites in datacenters located around the world. Traffic Manager can improve the responsiveness of your applications and content delivery times by directing end-users to the cloud service or web site with the lowest network latency from the client.

  • Upgrade and perform service maintenance without downtime – When one endpoint is brought down, perhaps for maintenance, Traffic Manager will direct user traffic to the other available endpoints that you define in the Traffic Manager profile. This helps you to maintain and upgrade your services without downtime for clients.

Reference :

https://learn.microsoft.com/azure/traffic-manager/

257 questions
1
vote
1 answer

How to have Azure traffic manager infront of azure API management

How to implement Azure traffic management for Azure API management. I am confused with the implementation steps. What I've tried: Consider I have two API's in two regions. 1) http://xxxxx.azure-api.net/application1/service 2)…
ashok
  • 1,078
  • 3
  • 20
  • 63
1
vote
0 answers

Web app not validating custom domain name

Steps I followed: Created an web app (registration-ceus.azurewebsites.net) Created a traffic manager profile, added web app as an endpoint (registrationtmp.trafficmanager.net) Traffic manager opens the web app. Issue I face while adding custom…
John
  • 351
  • 5
  • 18
1
vote
1 answer

Multi-site web apps with traffic manager and appllication gateway

I have this azure set up. 2 LOB App Service (web apps) on same region say, contoso.com and Fabrikam.com. I have 3 different regions gloabally with same apps. Traffic manager will manage these regions. There is an application gateway in each region…
John
  • 351
  • 5
  • 18
1
vote
1 answer

Azure AppService - multitenant application different datacenter

I am building a multitenant application and I would need to know if I can achieve this in Azure. Assuming the application will be deployed to multiple regions/datacenters. The tenant will be identified by the subdomain: tenant1.domain.com,…
1
vote
1 answer

RequireNonce is 'true' (default) but validationContext.Nonce is null in Azure Traffic Manager , OpenIdConnectAuthentication

I have my website(Azure App Service) deployed in two regions under Microsoft Azure . https://abcd1-westus.azurewebsites.net/ https://abcd2-centralus.azurewebsites.net/ I created a Traffic Manager Profile to control the distribution of user…
1
vote
1 answer

Terraform script for Traffic Manager throws Unknown error

I encounter the error when I deploy Traffic manager. It might be very basic configuration. However, it says Unknow service error I have no clue to fix this. Terraform Version Terraform v0.10.0 # Service Principle variable "subscription_id"…
1
vote
1 answer

Using Azure traffic manager with Mobile App

Can Azure Traffic Manager be used with Mobile Apps specially with social login? I have configured a traffic manager and two app services (say, mobileapp1 and mobileapp2) to work with it.They seem to work pretty nice with postman and the response and…
1
vote
1 answer

Configure Azure Traffic Manager for Load Balancing with Weighted method on same region 2 App Service

Trying to configure Traffic Manager for load balancing with Weighted method, both endpoints are at West US region using standard 2 plan. Azure App Services: A(West US) - 50% Traffic B(West US) - 50% Traffic First endpoint added successfully with 50…
Lalit
  • 4,897
  • 7
  • 32
  • 36
1
vote
1 answer

Can you use Traffic Manager with blob storage or Azure functions

I have a simple bit of JSON from an Azure Traffic Manager request, so ideally it would be stored in a blob storage account that is marked with a public access policy to read the blob. When I attempt this - using external endpoint in ATM - I get a…
1
vote
3 answers

Configuring Azure Traffic Manager to work with HTTPS

I created a Azure App Service, and it is accessible at http://foo.azurewebsites.net and https://foo.azurewebsites.net. I only use the HTTPS one, but haven't disabled the other (yet). I then configure Traffic Manager, and add this as the sole…
Saqib
  • 7,242
  • 7
  • 41
  • 55
1
vote
1 answer

401 Unauthorized when connecting to API through Azure Traffic Manager in C#

I have the following code that successfully connects to a third party API in C#: using (var client = new WebClient()) { client.Credentials = new NetworkCredential(login.Username, login.Password); var xml = client.DownloadString(url); …
Mike Cole
  • 14,474
  • 28
  • 114
  • 194
1
vote
1 answer

Can alerts be configured on Azure Traffic Manager?

I want to configure alerts on Traffic Manager's Monitor Status.The Monitor status such as "InActive/Degraded/Online/Stopped", I want to add an activity log or alert, if the status of Traffic Manager updates. Thank you.
Amruta
  • 701
  • 4
  • 15
  • 38
1
vote
1 answer

Retrieve monitoring logs of Azure Traffic Manager

I have created a Traffic Manager in Azure Portal and added a couple of AppService as an endpoint. I want to monitor the status of the Traffic Manager to track below scenarios: To track when the Traffic Manager is Inactive or any other state other…
Amruta
  • 701
  • 4
  • 15
  • 38
1
vote
3 answers

How do I get Azure Traffic Manager to work as a failover for two Web Apps?

I set up two web apps in Azure. I'm just using this to test out Traffic Manager for now before I do anything in production, so I created two "fake" apps to try it out. I added a Traffic Manager to the portal at the following…
1
vote
1 answer

Traffic manager with end point for Web app slot

I was creating a Traffic Manager profile with end points for Dev and QA slots for Web Apps and wondered that is it not possible? How can I create Traffic Manager endpoints for Dev and QA slots as we do it for production?