Dashboards & Visualizations

How to revert backup for lookup editor limit?

jadengoho
Builder

Hi,

I'm currently trying to modify the lookup editor app,

But i'm having trouble on limiting previous version, i did it through CSS and HTML.

But the files are still located at the folder. How can i limit the revert version to 5 and delete the older versions.

 

Labels (1)
Tags (1)
0 Karma
1 Solution

jadengoho
Builder

i have solve the issue , with the help of my colleague.

It was on "lookup_backups.py"

jadengoho_0-1601258937379.png

 

View solution in original post

Tags (1)

vince135
Explorer

You can also do something like this in order to delete "old" backups in the folder after some time. It's a quick fix that is working with the 3.6.0 version. You have to place piece of code at the end of the function "backup_lookup_file" (before the return dst) in the "lookup_backups.py" file 🙂

 

           # Remove backup files that are "old"

            list_of_files = os.listdir(backup_directory)
            current_time = time.time()
            for i in list_of_files:
                file_location = backup_directory + "/" + i
                file_time = os.stat(file_location).st_mtime

                if(file_time < current_time - 86400 * 5):
                    os.remove(file_location)
                    self.logger.info('Removing lookup file="%s" from backup folder="%s" because max time excedeed', i, backup_directory)

 

 

 

 

0 Karma

MCH2018
Explorer

Hello,

Is this still working with 4.0.2 version of the app ?
I made the change, but unfortunately, nothing happens. How do you trigger the deletion? Restart Splunk? Unfortunately, I can no longer make any backups because I get an error saying that I have reached the size limit for backups.

Thanks for your help.

Tags (4)
0 Karma

jadengoho
Builder

i have solve the issue , with the help of my colleague.

It was on "lookup_backups.py"

jadengoho_0-1601258937379.png

 

Tags (1)

DaClyde
Contributor

With the changes in v3.6.0 of the app in the past month, is this still valid?

0 Karma
Get Updates on the Splunk Community!

Observability Unlocked: Kubernetes Monitoring with Splunk Observability Cloud

  Ready to master Kubernetes and cloud monitoring like the pros?Join Splunk’s Growth Engineering team for an ...

Wrapping Up Cybersecurity Awareness Month

October might be wrapping up, but for Splunk Education, cybersecurity awareness never goes out of season. ...

🌟 From Audit Chaos to Clarity: Welcoming Audit Trail v2

&#x1f5e3; You Spoke, We Listened  Audit Trail v2 wasn’t written in isolation—it was shaped by your voices.  In ...