All Apps and Add-ons

Splunk Add-on for Microsoft Azure: Would it be possible to add in the ability to select the format for the Azure Table Storage PartitionKey?

clogssplunk
Explorer

Hi @jconger_splunk,

I noticed you added the ability to import data from generic Azure Table Storage. Would it be possible to add in the ability to select what format the PartitionKey is in?

By default it uses Ticks, but it would be nice to select ReverseTicks as well. This is an option that is used by:

https://github.com/stemarie/log4net.Azure

I have this working in a script I modified using your script from 1.1.0, but it would be nice to have this available in your app.

The following is what I added to make it work.

def reverse_ticks(dt):
    max_ticks = 3155378975999999999
    return int(max_ticks - ticks(dt))

As time progresses the PartitionKey gets smaller, so I modified a couple of lines under def stream_table_data:

        date_time_start = reverse_ticks(date_time_start)
        filter_string = "PartitionKey lt '0%s'" % str(date_time_start)

Mark

0 Karma

jconger
Splunk Employee
Splunk Employee

For the generic table data input, specifying the PartitionKey format was considered. But, the PartitionKey can be anything the developer wants it to be. It just so happens that Microsoft is kind enough to write the PartitionKey for some tables as ticks (this is good since the PartitionKey is indexed by Azure - which means faster searching). So, we settled on allowing the Splunk admin to specify a timestamp field.

What is the use case for reverse ticks? I'm guessing you want to start at the most recent table entity and work you way backwards? If so, I'm missing how you are going to get any new entities written to your table storage after the initial query.

0 Karma
Career Survey
First 500 qualified respondents will receive a $20 gift card! Tell us about your professional Splunk journey.
Get Updates on the Splunk Community!

Splunk AI Assistant for SPL vs. ChatGPT: Which One is Better?

In the age of AI, every tool promises to make our lives easier. From summarizing content to writing code, ...

Data Persistence in the OpenTelemetry Collector

This blog post is part of an ongoing series on OpenTelemetry. What happens if the OpenTelemetry collector ...

Thanks for the Memories! Splunk University, .conf25, and our Community

Thank you to everyone in the Splunk Community who joined us for .conf25, which kicked off with our iconic ...