Add convenience script for java heap profiles.
Change-Id: I0722e4e3bec5d690abf670cca553b47466d84eaf
diff --git a/tools/heap_profile b/tools/heap_profile
index 41bcdef..c4b962a 100755
--- a/tools/heap_profile
+++ b/tools/heap_profile
@@ -78,7 +78,7 @@
}
'''
-CFG_IDENT = ' '
+CFG_INDENT = ' '
CFG = '''buffers {{
size_kb: 32768
}}
@@ -277,10 +277,10 @@
except ValueError:
print("FATAL: invalid PID %s" % pid, file=sys.stderr)
fail = True
- target_cfg += '{}pid: {}\n'.format(CFG_IDENT, pid)
+ target_cfg += '{}pid: {}\n'.format(CFG_INDENT, pid)
if args.name:
for name in args.name.split(','):
- target_cfg += '{}process_cmdline: "{}"\n'.format(CFG_IDENT, name)
+ target_cfg += '{}process_cmdline: "{}"\n'.format(CFG_INDENT, name)
if fail:
parser.print_help()