We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a7aa51c commit e633e05Copy full SHA for e633e05
examples/download_dashboards.py
@@ -75,7 +75,7 @@ def cleanup_dir(path):
75
for db in res['dashboards']:
76
sdclient.save_dashboard_to_file(db, os.path.join(sysdig_dashboard_dir, str(db['id'])))
77
78
- print(("Name: %s, # Charts: %d" % (db['name'], len(db['widgets']))))
+ print(("Name: %s" % (db['name'])))
79
80
zipf = zipfile.ZipFile(dashboard_state_file, 'w', zipfile.ZIP_DEFLATED)
81
zipdir(sysdig_dashboard_dir, zipf)
0 commit comments