Skip to content

Commit

Permalink
Shorter Heap Dump IDs
Browse files Browse the repository at this point in the history
Previously the heapdump file location embedded the entire UUID for the space,
the application, and the instance.  This was, to put it mildly, long.  This
change shrinks that value to only include the first 8 characters (everything
before the first hyphen) of those ids.
  • Loading branch information
nebhale committed Jun 14, 2017
1 parent 4c94631 commit 990b230
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions lib/java_buildpack/jre/jvmkill_agent.rb
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ def supports?
private_constant :FILTER

def application_identifier
"#{@application.details['application_name']}-#{@application.details['application_id']}"
"#{@application.details['application_name']}-#{@application.details['application_id'][0...8]}"
end

def container_dir
Expand All @@ -69,15 +69,15 @@ def heap_dump_path
end

def instance_identifier
'$CF_INSTANCE_INDEX-%FT%T%z-$CF_INSTANCE_GUID'
'$CF_INSTANCE_INDEX-%FT%T%z-${CF_INSTANCE_GUID:0:8}'
end

def jvmkill_agent
@droplet.sandbox + "bin/jvmkill-#{@version}"
end

def space_identifier
"#{@application.details['space_name']}-#{@application.details['space_id']}"
"#{@application.details['space_name']}-#{@application.details['space_id'][0...8]}"
end

end
Expand Down
6 changes: 3 additions & 3 deletions spec/java_buildpack/jre/jvmkill_agent_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -50,9 +50,9 @@
component.release

expect(java_opts).to include('-agentpath:$PWD/.java-buildpack/jvmkill_agent/bin/jvmkill-0.0.0=' \
'printHeapHistogram=1,heapDumpPath=test-container-dir/test-space-name-test-space-id/' \
'test-application-name-test-application-id/$CF_INSTANCE_INDEX-%FT%T%z-' \
'$CF_INSTANCE_GUID.hprof')
'printHeapHistogram=1,heapDumpPath=test-container-dir/test-space-name-test-spa/' \
'test-application-name-test-app/$CF_INSTANCE_INDEX-%FT%T%z-' \
'${CF_INSTANCE_GUID:0:8}.hprof')
end

end

0 comments on commit 990b230

Please sign in to comment.