{"id":19519199,"url":"https://github.com/temperlang/hprof2db","last_synced_at":"2025-10-20T00:23:57.684Z","repository":{"id":182411456,"uuid":"627626272","full_name":"temperlang/hprof2db","owner":"temperlang","description":"Convert java hprof file into a sqlite3 database","archived":false,"fork":false,"pushed_at":"2023-04-18T13:08:41.000Z","size":55,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":3,"default_branch":"main","last_synced_at":"2025-02-23T19:15:05.826Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"Rust","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/temperlang.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null}},"created_at":"2023-04-13T21:28:52.000Z","updated_at":"2023-04-14T21:12:28.000Z","dependencies_parsed_at":"2023-07-19T22:45:44.628Z","dependency_job_id":null,"html_url":"https://github.com/temperlang/hprof2db","commit_stats":null,"previous_names":["temperlang/hprof2db"],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/temperlang%2Fhprof2db","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/temperlang%2Fhprof2db/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/temperlang%2Fhprof2db/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/temperlang%2Fhprof2db/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/temperlang","download_url":"https://codeload.github.com/temperlang/hprof2db/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":240766606,"owners_count":19854119,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2024-11-11T00:16:48.336Z","updated_at":"2025-10-20T00:23:57.634Z","avatar_url":"https://github.com/temperlang.png","language":"Rust","funding_links":[],"categories":[],"sub_categories":[],"readme":"## Example queries\n\nList classes with instance counts and total sizes:\n\n```sql\nselect\n    count,\n    count * 1.0 / (select sum(count) from ez_total) count_frac,\n    size,\n    size * 1.0 / (select sum(size) from ez_total) size_frac,\n    name\nfrom ez_total\norder by size desc\n;\n```\n\nList all class instance field names:\n\n```sql\nselect c.name class, fn.text field, t.name type\nfrom field f\njoin ez_class c on f.class_id = c.id\njoin name fn on f.name_id = fn.id\njoin type t on f.type_id = t.id\norder by c.name, fn.text\n;\n```\n\nList fields referencing instances of particular class (replacing\n`'class/name/Here'` with the class of interest):\n\n```sql\nselect count(*) count, oc.name class, fn.text field from ez_class c\njoin instance i on c.id = i.class_id\njoin field_value v on i.id = v.obj_id\njoin field f on v.field_id = f.id\njoin name fn on f.name_id = fn.id\njoin ez_class oc on v.class_id = oc.id\nwhere c.name like 'class/name/Here'\ngroup by oc.name, fn.text\norder by count(*) desc\n;\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftemperlang%2Fhprof2db","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ftemperlang%2Fhprof2db","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftemperlang%2Fhprof2db/lists"}