Configure8: Pricing, Cost Details

Published: Jul 20, 2023 by Isaac Johnson

I wanted to circle back on Configure8 now that they announced cost management features. I had a bit of inside scoop there but was under NDA. I’m guessing some of you might have wondered why I encouraged folks to setup the OpenCost tagging in AWS in the last post.

Today we’ll look at AWS Cost Management (including a follow-up to last time when I attempted to lower my bill). We’ll dig into some specifics and wrap by checking out a few integrations we haven’t tried to date; Azure DevOps and SonarSource. To make that extra fun, we’ll set that up on some Public AzDO projects, Fortran_CICD and Perl_CICD.

AWS Savings

I mentioned using Configure8 to find some unused EC2s in the last post. It’s been a while, I figured I would share the good news that it did, in fact, bring my bills down

/content/images/2023/07/configure8-27.png

Pricing Details in Environments

As you recall, in the last post we covered setting up costing, though I really did not say way. I was a bit under embargo until release, but now Configure8 has Cost details!

So, had you done similar, you should be able to follow along. Don’t worry if you haven’t, just go half way down on the last post to “Gathering Costs”.

We can now look at an environment

/content/images/2023/07/configure8-01.png

And pick either “View” or “Cloud Resources”. I’ll now see the Cloud Resources that make up my Dev environment

/content/images/2023/07/configure8-02.png

I’ll pick one I don’t use very much, the old “www.freshbrewed.science” bucket

/content/images/2023/07/configure8-03.png

As you can see, there is now a “Cost” tab on the right. Clicking that shows me costing details

/content/images/2023/07/configure8-04.png

Not to interesting, other that to note it has been zero. Perhaps I should remove this then? We’ve identified something monitored, but clearly unused.

Some things, like my Route53 Hosted Zone

/content/images/2023/07/configure8-05.png

do no expose costing details.

NOTE: I got word this is being fixed this week so likely you will see details by the time you read this

/content/images/2023/07/configure8-06.png

Clicking the “View in AWS Console” brings me to the HZ

/content/images/2023/07/configure8-07.png

And from there I can jump to the AWS Cost Management console to see it has cost me a buck a month

/content/images/2023/07/configure8-08.png

Let’s go to a resource with a bit more usage. We can look at the primary FB bucket

/content/images/2023/07/configure8-09.png

Here we can see a bit more costs. Clearly, I had spike around July 4th

/content/images/2023/07/configure8-10.png

Let’s use the date picker to zoom in on that range

/content/images/2023/07/configure8-11.png

It looks to be the Put Object

/content/images/2023/07/configure8-12.png

Going to my Service page, I see two items of interest - the Github deploy that day (PR204 to post Synology NAS: DSM, Central Management, and a Container Registry). This had a sizable 1:29 video in the deliverable.

Datadog, on that same day, alerted me to a pipeline failure

/content/images/2023/07/configure8-14.png

This failed a Dockerfile build

/content/images/2023/07/configure8-15.png

Since I know I do not build Docker to post to the blog, it reminded me that I was also updating my backend agent pool image to use with the NAS Registry and that had failures

/content/images/2023/07/configure8-16.png

I didn’t even need to go to Github for that as I can easily see it in my CI/CD page in Configure8

/content/images/2023/07/configure8-17.png

I can “View on pipeline” to see more

/content/images/2023/07/configure8-18.png

Not that interesting, per se, but it lets me easily see why (Ruby module issue)

/content/images/2023/07/configure8-19.png

More Cost details

We can see my costs are doubled since every post goes to a staging site for review. I can view a Quarter of data to see the spikes in my “test” bucket

/content/images/2023/07/configure8-20.png

I dug a bit more, The real costs here are Usage requests (Requests-Tier1).

What is odd is Requests-Tier1 really should be PUT, POST and LIST. The GET (read) is Tier2.

Yet clearly I have huge usage bills on Tier1 POST/PUT/LIST

Around Oct 26th, something spiked in October on ListBucketVersions and never went down.

/content/images/2023/07/configure8-22.png

The only blog post around that time was on k3s rebuilds.

Honestly, I’m a bit stumped on this one. I suspect there is a Fuse item somewhere in my network and using S3 for storage and I have lost track which.

I found at least one host using GDP for fuse data

myk3spvcstore /mnt/gcpbucket1 gcsfuse rw,noauto,user,key_file=/home/builder/sa-storage-key.json
myk3spvcstore /mnt/gcptest2 gcsfuse rw,noauto,user,key_file=/home/builder/sa-storage-key.json
builder@anna-MacBookAir:~

I can at least use AWX to check one cluster. Picking all the hosts in the inventory

/content/images/2023/07/configure8-23.png

I can cat /etc/fstab to see what is there

/content/images/2023/07/configure8-24.png

And I see they are all pretty much GCP based

/content/images/2023/07/configure8-25.png

The only other thought I had might be my Cribl LogStream. But it was powered down and checking lately, it really only has local destinations

/content/images/2023/07/configure8-26.png

My other theory (and one I like since it strokes my ego) is that the blog is popular enough that I just get that much traffic. It is probably not the case, but it is fun to think we are at 1/3 million requests a month with spikes that tie to regular weeks (drops off on weekends)

/content/images/2023/07/configure8-28.png

Azure DevOps and Sonar

Enough pining over costs. Let’s look at some new Integrations.

We can add a Service that has Azure Repos, DevOps and SonarCloud scans.

I want to put these into a larger concept of a Dapr Apps Application. So I’ll create that first

/content/images/2023/07/sonar-37.png

Next, before we add the service, I’ll add Azure Repos by credential

/content/images/2023/07/sonar-34.png

I’ll want to use a new PAT with Read scopes on Work Items, Code, Build and Release

/content/images/2023/07/sonar-35.png

which I’ll use in the provider

/content/images/2023/07/sonar-36.png

I’ll now add a service and pick the Application and Azure Repo

/content/images/2023/07/sonar-38.png

I’ll update the Tags and Owners then click Create

/content/images/2023/07/sonar-39.png

I wanted a Subdirectory, but this project has none. I’ll try with a root “/”

/content/images/2023/07/sonar-40.png

I’ll now add SonarCloud Status

/content/images/2023/07/sonar-41.png

To use SonarCloud, I’ll need to add a credential

/content/images/2023/07/sonar-42.png

I can generate that from the Security section in SonarCloud

/content/images/2023/07/sonar-43.png

Then add in Configure8

/content/images/2023/07/sonar-44.png

Unfortunately, that popped me out of the Add Integration flow so I went back to the FortranCICD project and selected to add SonarCloud. This time I can see the credential i added

/content/images/2023/07/sonar-45.png

I can see the Organization Key in SonarCloud

/content/images/2023/07/sonar-46.png

And use in Configure8

/content/images/2023/07/sonar-47.png

I can now see the latest results in my Configure8 Dashboard

/content/images/2023/07/sonar-48.png

Next I’ll add Activity and Pipelines from Azure DevOps

/content/images/2023/07/sonar-49.png

I’ll add activity

/content/images/2023/07/sonar-50.png

and Pipelines

/content/images/2023/07/sonar-51.png

We now have a Dashboard for an Azure DevOps based service that includes SonarCloud status, Azure DevOps Repos activity as well as Pipelines activity.

/content/images/2023/07/sonar-52.png

I’ll link to a new Environment to point to some Azure Resources

/content/images/2023/07/sonar-53.png

I had the thought that perhaps I could map an environment via Azure Arc for Kubernetes which allows me to onboard an on-prem K8s into Azure. But unfortunately I didn’t see that in the list

/content/images/2023/07/sonar-54.png

Pricing for Configure 8

I don’t want to be pushy, or sound like a shill, but they are basically giving this away through 2023 so take it!

/content/images/2023/07/configure8-29.png

Summary

Today we looked at Configure8’s new Cost Monitoring abilities, specifically in AWS. I pivoted to try and find where some AWS S3 costs came from without success. We then wanted to look at SonarSource and Azure DevOps integrations so we onboarded two public AzDO projects, Fortran_CICD and Perl_CICD. Lastly, I gently nudged everyone to signup while Enterprise is free (for 2023).

Configure8 Dashboard AzureDevOps AzDO SonarSource CostManagement

Have something to add? Feedback? Try our new forums

Isaac Johnson

Isaac Johnson

Cloud Solutions Architect

Isaac is a CSA and DevOps engineer who focuses on cloud migrations and devops processes. He also is a dad to three wonderful daughters (hence the references to Princess King sprinkled throughout the blog).

Theme built by C.S. Rhymes