What is Network In and Network Out Metrics on Cloud Service

Hi,
We have hosted Cloud Services on Azure through Visual Studio Online & Setup basic Performance metrics. However not sure about Network In and Network Out Metrics on Cloud Services hosted through Visual Studio Online.
Please explain.
Regards, Subhash Konduru

Hi,
I dont think it makes any difference if deployed via VSO, as far as i know the the Network In/Out metric include the
Performance Counter
"Bytes Received/Bytes Sent", You will be charged only for the Network Out (Outbound Data).
If you have more questions/doubts I would suggest you create a Free Billing/Subscription ticket from the link below.
http://azure.microsoft.com/en-in/support/options/
Regards,
Nithin Rathnakar

Similar Messages

  • What is Flow in and Flow out in BI?

    Hi All,
    Could anyone tell me what is Flow in and Flow out in BI?

    Hi,
    I'd say that Flow in is when you upload some data to BI (from ECC, another BI, flat files, ...).
    And Flow out is when you extract some data from BI (to ECC, to another BI, flat files. ...).
    Regards

  • SSL and custom domain configuration for cloud service

    Hi,
    I am doing custom domain mapping and SSL configuration for a cloud service web role. Another important aspect is Cloud service web role uses ADFS in between for authentication.
    I have custom domain mapped, SSL uploaded on cloud services Certificates
    tab in management portal, certificate .pfx and chaining certs .CER are added as below -
    <Certificate name="UATCert" thumbprint="A" thumbprintAlgorithm="sha1" />
    <Certificate name="Certificate1" thumbprint="B" thumbprintAlgorithm="sha1" />
    <Certificate name="Certificate2" thumbprint="C" thumbprintAlgorithm="sha1" />
    I see these certificates getting added properly to Azure cloud service web role instance VM.
    The problem is, when I access the custom domain,
    https://mysite.com/default.aspx in the browser ultimately after ADFS login I see
    https://cloudservice.cloudapp.net/default.aspx. My understanding is, cloudapp.net should not be seen in the browser to the client. Also I keep getting error of certificates stating "There is
    a problem with this website’s security certificate" when browser shows cloudapp.net url.
    How can I avoid display of cloudapp.net in browser and show only custom domain Url. Also how can I avoid this certificate error ?
    Thoughts? 
    http://sanganakauthority.blogspot.com/

    Hi kunal,
    Based what you described, I understand that you want to use the custom domain for cloud service web role and apply azure active directory authentication to the web role application.
    >>>The problem is, when I access the custom domain,
    https://mysite.com/default.aspx in the browser ultimately after ADFS login I see
    https://cloudservice.cloudapp.net/default.aspx. 
    As for above issue, I think you should make sure you have registered the web application in azure AD both "SIGN-ON URL" and "Reply URL" are
     https://mysite.com/default.aspx 
    >>>Also I keep getting error of certificates stating "There is a problem with this website’s security certificate" when browser shows cloudapp.net url.
    Try to upload a valid certificate (provided by CA) to cloud service for your custom domain.
    Best Regards,
    Fuxiang
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place. <br/> Click <a
    href="http://support.microsoft.com/common/survey.aspx?showpage=1&scid=sw%3Ben%3B3559&theme=tech"> HERE</a> to participate the survey.

  • What does this mean and how do i fix it:  "service 'apple mobile device' failed to start. verify that you have sufficient privileges to start system."

    What does this mean and how do i fix this so my ipod works again on my computer and itunes:  "Service 'apple mobile device' failed to start. Verify that you have sufficient privileges to start system services." I tried "retry", i tried "abort" and started over. I keep getting stuck in the same place.

    Hello DEstadt,
    Thanks for using Apple Support Communities.
    For more information on this, take a look at:
    iTunes 11.1.4 for Windows: Unable to install or open
    http://support.apple.com/kb/TS5376
    Check for .dll files
    Go to C:\Program Files (x86)\iTunes and C:\Program Files\iTunes and look for .dll files.
    If you find QTMovie.DLL, or any other .dll files, move them to the desktop.
    Reboot your computer.
    Note: Depending on your operating system, you may only have one of the listed paths.
    Uninstall and reinstall iTunes
    Uninstall iTunes and all of its related components.
    Reboot your computer. If you can't uninstall a piece of Apple software, try using the Microsoft Program Install and Uninstall Utility.
    Re-download and reinstall iTunes 11.1.4.
    Best of luck,
    Mario

  • Downloading and Opening PhotoShop on Creative Cloud service

    I have and Adobe Account and User Name. I have downloaded the creative Cloud App and have ordered PhotoShop. I have updated the app in the Creative Cloud app, but that is all the farther I get. The Download of Photoshop just sits still? Is it because it's a 20GB download? or did I miss a step? Online games download faster.

    Maybe this will help:
    http://helpx.adobe.com/creative-cloud/help/install-apps.html
    Estimated Download Speeds
    http://helpx.adobe.com/x-productkb/global/troubleshoot-download-problems.html#main_Estimat ed_download_times
    Nancy O.

  • How to get cloud services CPU Percentage and Network In

    Hi,
    I am using Service management API to collect the cloud services related metrics for example
    Cloud name, Status and location etc.
    How to get the CPU, memory, network and disk related metrics of cloud services using the same API.  I am using java code to collect all the details. Please verify the below source code..But i did not get the output. But there is no error message. Help
    me how to get those details..
    Configuration config = ManagementConfiguration.configure(
    new URI(uri),
    subscriptionId,
    keyStoreLocation, // path to the JKS file
    keyStorePassword, // password for the JKS file
    KeyStoreType.jks  // flag that you are using a JKS keystore
    CloudServiceManagementClient cldCli = CloudServiceManagementService.create(config);
    CloudServiceOperations cldOpe = cldCli.getCloudServicesOperations();
    CloudServiceListResponse cldListRes = cldOpe.list();
    ArrayList<CloudServiceListResponse.CloudService> cldServices = cldListRes.getCloudServices();
    if(cldServices != null)
    for(int cc=0; cc<cldServices.size();cc++)
    CloudServiceListResponse.CloudService yesCld = (CloudServiceListResponse.CloudService)cldServices.get(cc);
    if(yesCld == null)
    continue;
    ArrayList<CloudServiceListResponse.CloudService.AddOnResource> cldResRes = yesCld.getResources();
    if(cldResRes == null)
    continue;
    for(int r=0; r<cldResRes.size(); r++)
    CloudServiceListResponse.CloudService.AddOnResource addOnRes = cldResRes.get(r);
    if(addOnRes == null)
    continue;
    ArrayList<CloudServiceListResponse.CloudService.AddOnResource.UsageLimit> cldUse = addOnRes.getUsageLimits();
    if(cldUse == null )
    continue;
    for(int u=0;u<cldUse.size(); u++)
    CloudServiceListResponse.CloudService.AddOnResource.UsageLimit useLimit = cldUse.get(u);
    if(useLimit == null)
    continue;
    System.out.println("NAME:"+useLimit.getName()+"UNIT "+useLimit.getUnit()+" Amount used "+useLimit.getAmountUsed());
    Thanks & Regards,
    Rathidevi

    Hi,
    The Azure Diagnostics capability supports the configuration of diagnostics information than can be captured locally on a role instance and then persisted to Azure Storage on some timescale, this only support Azure Cloud service, I think it is useful for
    us to analyze the performance, if you don't want to use it, please try to use
    Azure Monitoring Service API, for more information, refer the below articles.
    #https://convective.wordpress.com/2014/06/22/using-azure-monitoring-service-with-azure-virtual-machines/
    #https://convective.wordpress.com/2014/06/27/using-azure-monitoring-services-api-with-azure-cloud-services/
    Best Regards,
    Jambor
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • Virtual network, virtual machine and cloud service

    Hi everyone
    I am new to Microsoft Azure and very confused about Microsoft VM and Virtual network relationship.
    I have a cloud service project created which has two worker roles in it and its deployed to Azure portal successfully, the problem is they need to connect to SQL database (which is on our prod machine outside of Azure) and in the config file of both these
    worker roles I have the cluser IP address added ( I believe its an internal Ip address),
    Now we have a virtual machine and a virtual network created on azure too (Not by me, so I have no idea how that is created)
    Some how I need to connect my cloud service to either the virtual machine or virtual network to get the sql connection going. What do I need to do to make that happen?
    How does the cloud service connect to virtual machine?
    I am so confused .. Please help with this.
    Thanks
    -Sarah

    Hi Sarah,
    Once an Azure VM is created, it belongs to a cloud service.
    http://azure.microsoft.com/en-us/documentation/articles/cloud-services-connect-virtual-machine/
    Do you mean that you want to create a VM in a virtual network and a cloud service?
    If yes, please follow the steps below:
    1. Create a Virtual network.
    2. Create a VM and select "create a new cloud service", and choose the virtual network you have created.
    3. After the VM is running, you can create other VMs into that exsting VM, and they will share the same public IP address and in the same virtual network.
    Best regards,
    Susie
    Please remember to mark the replies as answers if they help and unmark them if they provide no help. If you have feedback for TechNet Subscriber Support, contact [email protected]

  • User management and Access Control in HCM Cloud

    Hello,
    Information is scarce about User management and Access Control in Oracle Cloud generally. Today, I have two questions :
    - How can I bridge HCM Cloud user store with my on-premise IDM or security repository in order to allow identty governance to flow to HCM Cloud service ?
    The only information I got was that you can declare manually and by bulk import through files my users. This is not really interresting as I have an automatic IDM with workflows and identity control on provisioning and de-provisioning.
    Is there a SPML or proprietary endpoint to do it automatically ? What are the prerequisites ? Do I have to implement OIM on my side ?
    - Once my users are created, how can I do webSSO from my internal security repositories to the HCM Cloud service ?
    I do not want to distribute new set of login / passwords to my users. Is it possible to do Identity Federation (SAML 2.0 or WS-Fed) with HCM Cloud service ? What are the prerequisites ? Do I have to implement OAM on my side ?
    I accept all pieces of information you can give me on this topic to help me understand the funcitonalites, limits and options offered by Oracle Cloud and more precisely by HCM Cloud service.
    Best regards,

    OIDDAS has limited capability of access control and information hiding. Presently, the permissions and privileges can be set at a realm level, and fine grained access control / information hiding cannot be done.
    At present, the only way to restrict view and access control is by appplying ACLs (which is not the safest bet).

  • Lightroom does not open..  I uninstalled then reinstalled LR CC to no avail; I signed out of Creative Cloud I signed back in... NOTHING... NADA!!

    Lightroom does not open..  I uninstalled then reinstalled LR CC to no avail; I signed out of Creative Cloud I signed back in... NOTHING... NADA!!

    I know it is headache to go through same process again.
    Open Preferences folder and move all Lightroom prefernces file to Desktop.
    Make sure that not even single Light room  prference files like com.adobe.lightoom.plist...etcare there inside Preferences folder.
    Then reboot the computer and Sign out from Creative Cloud and Sign in and then try to Launch Ligthroom CC 2015 application , by double clicking on Lightroom cc 2015 option under Apps list in Creative Cloud application"  .
    Still same issue ??
    Remove Lightroom cc application and the reinstall the same from Creative Cloud.
    Then try launching Lightroom cc 2015 from Apps list in CC app.
    Still same issue?
    If it is okay for you , you may try launching from Root user account.

  • Is it possible to do Continuous deployment for azure cloud services(website,web and worker roles) using VSO Release management?

    Hi,
    I am trying to do continuous deployment using visual studio online and release management for Azure cloud services. But not able to find the way to do it(with the help of different blogs, those are describing using VM only).
    I tried using Release management visual studio extension also. But no Luck.
    Please help me if it is possible to do continuous deployment using release management.
    Thanks,
    Phani

    Hi,
     Please refer to the following Forum Thread with similar question which has been answered. Let us know if this helps.
     https://social.msdn.microsoft.com/Forums/en-US/9d8322f6-36e5-4cca-a982-d420d34d2072/realease-management-deployment-to-azure-websites-webworker-roles?forum=tfsbuild
    Regards,
    Nithin Rathnakar

  • How to develop and deploy multiple worker roles in single azure cloud services?

    I am Manikandan, From Myeasydocs.com.
    We have developed our application as web projects.  Now we are going to move to azure cloud services, i have successfully migrated our application in cloud services and it worked fine. I am having difficulties with back ground task. i have nearly 12
    schedule tasks in our applications. I need assist on creating multiple worker role creation and deployment.
    Is there is any site on explaining the worker role process in details?
    Thanks in advance .. !!

    Hi,
    In Worker role, Applications hosted within worker roles can run asynchronous, long-running or perpetual tasks independent of user interaction or input. It is a service component that is useful for generalized development, and may perform background processing
    for a web role. A worker role is frequently used for long-running tasks that are non-interactive, but you can host any type of workload.
    I suggest you to follow the below article which explains about Creating and Deploying of Web Roles and Worker Roles in Azure Cloud Service using Visual Studio.
    https://msdn.microsoft.com/en-us/magazine/jj618299.aspx
    Hope this helps !
    Regards,
    Sowmya

  • Issues deploying a cloud service with two endpoints (HTTP and HTTPS)

    I ran into an issue this week in the azure portal when I tried to deploy a cloud service with two endpoints.  (I am using the azure sdk 2.2).  I deployed the cloud service to production with the following endpoints in the ServiceDefinition.csdef:
    <WebRole name="NameChanged.Web" vmsize="Small">
    <Sites>
    <Site name="Web">
    <Bindings>
    <Binding name="HttpsIn" endpointName="HttpsIn" />
    <Binding name="HttpIn" endpointName="HttpIn" />
    </Bindings>
    </Site>
    </Sites>
    <Endpoints>
    <InputEndpoint name="HttpIn" protocol="http" port="80" />
    <InputEndpoint name="HttpsIn" protocol="https" port="443" certificate="NameChangedCertificate" />
    </Endpoints>
    <Imports>
    <Import moduleName="Diagnostics" />
    </Imports>
    <Certificates>
    <Certificate name="NameChangedCertificate" storeLocation="LocalMachine" storeName="My" />
    </Certificates>
    </WebRole>
    I followed the directions here (http://azure.microsoft.com/en-us/documentation/articles/cloud-services-configure-ssl-certificate/)
    in Step 3 for deploying the cloud service to the azure portal.  And HTTP worked just fine, but the HTTPS endpoint didn't work, we would get a 502 error whenever we tried to access the service via HTTPS.
    We spent a lot of time to debug and see why HTTPS wasn't working, but everything we tried resulted in the same result:  502 error code when accessing the site
    via HTTPS.
    The only way that we were able to get HTTPS working for the cloud service in azure, was to completely delete our instance in the azure portal, and then do a two step deployment:
    Step 1 - Remove the HTTP endpoint from our ServiceDefinition.csdef, like so:
    <Site name="Web">
    <Bindings>
    <Binding name="HttpsIn"
    </Bindings>
    </Site>
    </Sites>
    <Endpoints>
    <InputEndpoint name="HttpsIn" protocol="https" port="443" certificate="staging" />
    </Endpoints>
    </WebRole>
    We then deployed the service to the azure portal.  AND THE SERVICE WORKED WITH HTTPS!!!
    Step 2 - We added the HTTP endpoint back into the ServiceDefinition.csdef, redeployed and both HTTP and HTTPS worked on the site.
    I wanted to post this to help others that may have the same issue, and to see if anyone else has experienced this same thing?  Is this an issue in the azure 2.2 SDK?  This seems like a work around for getting both HTTP and HTTPS endpoints for a
    cloud service, and it seems "wrong".  Does anyone have a better way to do this?
    Tim

    Hi Tim;
    This seems to be an very useful workaround thanks for sharing it. Hopefully this will come in handy for many of us.
    Warm Regards
    Prasant

  • ExactTarget Cloud Services Configuration and CQ5.5

    Hello All,
    I am currently running CQ5.5 sp1 and there is no ExactTarget Cloud Services Configuration.  Does anyone know how to integrate ExactTarget on CQ5.5 sp1?  Is there a package I need to install or a some java I need to implement?
    Any help would be appreciated.
    Thanks
    Tim

    AFAIK there is no FP for 5.5 for such configuration.  I have placed the documentation (DOC-3411) update request.

  • What does "network connection has timed out" mean??!!

    What does "network connection has timed out" mean?

    It means that the destination server is taking too long to respond. This can sometimes be resolved by closing safari and reopening it, turning off your modem, and then after 10secs turning it back on, or if you have and airport extreme/express, or Time Capsule, restarting those.
    Good Luck
    Tarek

  • "Network out of order" and "Short message transfer rejected"

    Guys,
    I have a BB 9300 3G Curve and I have trouble sending SMS. This is a peculiar problem since I
    #1 am able to send an SMS problem free sometime
    #2 get an error message saying "Network out of order"
    #3 get an error message saying "Short message transfer rejected"
    Plus, this problem is not specific to a particular contact number. I get different messages (1,2,3 above) for the same number at different times. I have tried putting my SIM in a different handset and it works perfectly fine.
    Someone please HELP!

    Simply try pulling out the battery and leaving it out for a couple minutes. Usually, that is the fix-all to glitches. If not, you should contact your wireless mobile provider and see if they can help you. Usually, they are very easy to get along with and want to help you. But I think the battery pulling out will help you. It's happened to me before and I had to do that.

Maybe you are looking for