Skip to main content
 
 
Splunk Lantern

Common AWS resource tags and tag values

 

Resource tags are a critical part of the cloud asset management strategy for most organizations. However, with such a flexible design, tag management and analysis can be challenging to review and manage.

You can use this search to identify the most frequent tags and tag values in use across your infrastructure.

Data required

AWS: Description data

Procedure

  1. Configure the Splunk Add-on for Amazon Web Services.
  2. Ensure that your deployment is ingesting AWS data through one of the following methods:
    • Pulling the data from Splunk via AWS APIs. At small scale, pull via the AWS APIs will work.
    • Pushing the data from AWS into Splunk via Lambda/Firehose to Splunk HTTP event collector. As the size and scale of either your AWS accounts or the amount of data to be collected grows, pushing data from AWS into the Splunk platform is the easier and more scalable method.
  3. Run the following search:
    index="<AWS-INDEX>" sourcetype="aws:description"
    | dedup _raw
    | rex field=source ":(?<resource_type>.*)"
    | table tags.* resource_type
    | untable resource_type tag tag_value
    | top limit=0 tag BY resource_type
    | table resource_type tag percent
    

Search explanation

The table provides an explanation of what each part of this search achieves. You can adjust this query based on the specifics of your environment.

Splunk Search Explanation
index="<AWS index name>" sourcetype="aws:description" Search the indexes where AWS data is stored filtered to just the AWS description data.
| dedup _raw Remove duplicate _raw values to get the latest results for each resource type.
| rex field=source ":(?<resource_type>.*)"

Extract the type of AWS resource out of the source field.

| table tags.* resource_type
| untable resource_type tag tag_value
Create a table of rows for each resource type tag and tag value.
| top limit=0 tag BY resource_type
Find the most frequent tag for each resource type.
| table resource_type tag percent Display the results in a table with columns in the order shown.

Next steps

This search is one of many ways you can analyze tag data. You should modify the search to analyze the data in a way that is more relevant to how your organization uses tagging. For instance, you may wish to visualize all resources using the same tag name which may help analyze how much infrastructure is supporting a particular application, or how much infrastructure is supporting non-production workloads.

You might also be interested in other processes associated with the Managing an Amazon Web Services environment use case.