Skip to main content

10 Questions related to Cloudyn and Azure billing

Working and managing billing and costs information using Cloudyn can be sometimes misleading.
You can find below a few tips and tricks related to Cloudyn and Azure that can be useful.
Remarks: Please take into account that information is valid for March 2019 can become absolutes in the future if any changes appear.

Tips and Tricks:
1. Can I have multiple Azure accounts under the same Cloudyn console?
Yes, you can have. I was not able to find a limit of no. of Azure accounts that you can have under the same Cloudyn console.

2. Can I have CSP accounts and EA under the same Cloudyn console?
Yes, you can. You can have multiple accounts of different types. You are not limited to have only one kind of Azure account under the Cloudyn console.

3. Can I have AWS and Azure accounts under the same Cloudyn console?
Yes, you can have both types of accounts under the same Cloudyn console.

4. Can I have Google Cloud Platform under the same Cloudyn console?
Yes, you can.

4. After how long I can see data in Cloudyn after I add a cloud account?
It can take up to 1 day to see costs information inside Cloudyn for new accounts. Usually, it takes only a few hours.

5. How often is consumption information updated?
You can see cost information for your previous day after 3 AM UTC. This latency is required by Cloudyn to be able to import and crunch the data and not all the time data are available for Cloudyn immediately.
There is some exception like tags, where there is 1-day latency in some special situations.

6. Why do consumption data change for the same day after a while?
It caused by the cloud provider, that updates the billing and consumption information with new data.

7. Starting from when I can see billing information for the previous month?
The billing information from the previous month is available after the billing date. Take into account that it takes some times for Cloudyn to get the final data and prepare the billing. After a few days (5-10 days) some billing information can be updated retrospective from the previous month. Because of this at this moment in time can be a challenge to generate invoices on top of Azure consumption for the last month in the first few days of the month.

8. Can an indirect CSP access the Cloudyn?
Yes, Cloudyn supports it. You need to create a user with admin rights.

9.  Is Cloudyn free?
For Azure cost management Cloudyn, it is free. For Google Cloud Platform and AWS, the cost is 1% of managed cloud that is spent.

10. Should I use Cloudyn for reporting?
For simple reports, it's good, but for anything more than this I recommend taking a look at PowerBI, that it's well integrated with Azure Consumption. I would keep Cloudyn for billing information and for drilling down on consumption I would use PowerBI.

Comments

Popular posts from this blog

Windows Docker Containers can make WIN32 API calls, use COM and ASP.NET WebForms

After the last post , I received two interesting questions related to Docker and Windows. People were interested if we do Win32 API calls from a Docker container and if there is support for COM. WIN32 Support To test calls to WIN32 API, let’s try to populate SYSTEM_INFO class. [StructLayout(LayoutKind.Sequential)] public struct SYSTEM_INFO { public uint dwOemId; public uint dwPageSize; public uint lpMinimumApplicationAddress; public uint lpMaximumApplicationAddress; public uint dwActiveProcessorMask; public uint dwNumberOfProcessors; public uint dwProcessorType; public uint dwAllocationGranularity; public uint dwProcessorLevel; public uint dwProcessorRevision; } ... [DllImport("kernel32")] static extern void GetSystemInfo(ref SYSTEM_INFO pSI); ... SYSTEM_INFO pSI = new SYSTEM_INFO(

Azure AD and AWS Cognito side-by-side

In the last few weeks, I was involved in multiple opportunities on Microsoft Azure and Amazon, where we had to analyse AWS Cognito, Azure AD and other solutions that are available on the market. I decided to consolidate in one post all features and differences that I identified for both of them that we should need to take into account. Take into account that Azure AD is an identity and access management services well integrated with Microsoft stack. In comparison, AWS Cognito is just a user sign-up, sign-in and access control and nothing more. The focus is not on the main features, is more on small things that can make a difference when you want to decide where we want to store and manage our users.  This information might be useful in the future when we need to decide where we want to keep and manage our users.  Feature Azure AD (B2C, B2C) AWS Cognito Access token lifetime Default 1h – the value is configurable 1h – cannot be modified

ADO.NET provider with invariant name 'System.Data.SqlClient' could not be loaded

Today blog post will be started with the following error when running DB tests on the CI machine: threw exception: System.InvalidOperationException: The Entity Framework provider type 'System.Data.Entity.SqlServer.SqlProviderServices, EntityFramework.SqlServer' registered in the application config file for the ADO.NET provider with invariant name 'System.Data.SqlClient' could not be loaded. Make sure that the assembly-qualified name is used and that the assembly is available to the running application. See http://go.microsoft.com/fwlink/?LinkId=260882 for more information. at System.Data.Entity.Infrastructure.DependencyResolution.ProviderServicesFactory.GetInstance(String providerTypeName, String providerInvariantName) This error happened only on the Continuous Integration machine. On the devs machines, everything has fine. The classic problem – on my machine it’s working. The CI has the following configuration: TeamCity .NET 4.51 EF 6.0.2 VS2013 It see