Splunk IT Service Intelligence

How to maintain ITSI Entity information field using the rest API from python?

las
Contributor

Hi.

We have a use case where we would like to maintain a single information field on some of our entities.

The field name is Application Service, and it is fairly static - but not quite, so it might change over time. This field can logically only have one value, and the problem with the scheduled import, is, that if the value changes, there will be two values for this field name.

So we are trying to create a Python script, that will maintain this value, so if it changes the still will only be one value - the old one is overwritten. 

The problem is that when we try to change this vallue and posts to Splunk, we get a code 200 returnkode, but the value has not changed.

 

This is an example code: (Please don't kill me, this is just a test, and I'm not really a Python developer)

 

def update_splunk_rest(key, jsonDict):
    url = base_url + "/servicesNS/nobody/SA-ITOA/itoa_interface/entity/" + key + "?is_partial_data=0"
    authHeader = {'Authorization': token}

    r = requests.post(url, headers=authHeader, json=jsonDict, verify=False)
    print(r.text)
    return r
splk_entity = get_splunk_rest("2b4566fb-367e-44ec-b068-d6541a2024e6")
print(splk_entity.status_code)
entity = splk_entity.json()
print(entity)
title = entity['title']
info = entity['informational']
print(info)
keys = info['fields']
values = info['values']
print(keys)
print(values)
i=0
for field in keys:
    if field == 'Application Service':
        break
    i=i+1
values[i] = "Dette er Las test"
print("=============================================================")
print(entity)
#payload = {"_key":"821bd2f7-83d6-47a9-a753-60c04523d57e","title":title,"informational":{"fields":keys, "values":values}}
#print(payload)
response = update_splunk_rest("2b4566fb-367e-44ec-b068-d6541a2024e6", entity)
print(response.status_code)

 

The entity is changed just before the post (update_splunk_rest), that does a post with is_partiel_data=0, as we are changing the entire record from ITSI.

Has anyone else had this problem and found a solution?

Kind regards

Las

Labels (2)
0 Karma

livehybrid
Builder

I havent run this code but it looks like you're setting values[i] but not actually setting that back inside entity before posting it back to Splunk?

You could try updating values[i] to entity['informational']['values'][i] and see if that resolves the issue! Good luck!

0 Karma
Get Updates on the Splunk Community!

Splunk Custom Visualizations App End of Life

The Splunk Custom Visualizations apps End of Life for SimpleXML will reach end of support on Dec 21, 2024, ...

Introducing Splunk Enterprise 9.2

WATCH HERE! Watch this Tech Talk to learn about the latest features and enhancements shipped in the new Splunk ...

Adoption of RUM and APM at Splunk

    Unleash the power of Splunk Observability   Watch Now In this can't miss Tech Talk! The Splunk Growth ...