I need to add a new column in the indexed splunk data with the help of python.
eg:
I have a table:
A B
1 2
4 8
I need to add a new column after performing some function.
i.e., adding column C by performing addition of A and B.
New Table should look like this:
A B C
1 2 3
4 8 12
How can I complete this task?