{"id":19288200,"url":"https://github.com/openweb-nl/hst-diagnostics-extension","last_synced_at":"2026-05-18T07:31:05.857Z","repository":{"id":57738030,"uuid":"152892660","full_name":"openweb-nl/hst-diagnostics-extension","owner":"openweb-nl","description":"HST Page Diagnostics extension","archived":false,"fork":false,"pushed_at":"2019-03-19T13:18:49.000Z","size":13,"stargazers_count":0,"open_issues_count":1,"forks_count":1,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-07-06T21:59:30.054Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"Java","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/openweb-nl.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2018-10-13T16:42:30.000Z","updated_at":"2018-10-18T09:11:01.000Z","dependencies_parsed_at":"2022-08-24T14:42:27.697Z","dependency_job_id":null,"html_url":"https://github.com/openweb-nl/hst-diagnostics-extension","commit_stats":null,"previous_names":[],"tags_count":1,"template":false,"template_full_name":null,"purl":"pkg:github/openweb-nl/hst-diagnostics-extension","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/openweb-nl%2Fhst-diagnostics-extension","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/openweb-nl%2Fhst-diagnostics-extension/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/openweb-nl%2Fhst-diagnostics-extension/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/openweb-nl%2Fhst-diagnostics-extension/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/openweb-nl","download_url":"https://codeload.github.com/openweb-nl/hst-diagnostics-extension/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/openweb-nl%2Fhst-diagnostics-extension/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":33169160,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-18T05:43:36.989Z","status":"ssl_error","status_checked_at":"2026-05-18T05:43:19.133Z","response_time":71,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"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-09T22:08:21.619Z","updated_at":"2026-05-18T07:31:05.838Z","avatar_url":"https://github.com/openweb-nl.png","language":"Java","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Hippo Diagnostics Extension\n## Introduction\nThis is a plugin for Hippo ([Hippo CMS](https://www.onehippo.org)) Site Toolkit that enable users to profile their code via annotations.\n\n## USAGE\n\n**Step 1:** Add the following dependency to your project /site/pom.xml file (Or a dependency of your project's site)\n\n```xml\n\u003cdependency\u003e\n  \u003cgroupId\u003enl.openweb.hippo\u003c/groupId\u003e\n  \u003cartifactId\u003ehst-diagnostics-extension\u003c/artifactId\u003e\n  \u003cversion\u003e1.0.0\u003c/version\u003e\n\u003c/dependency\u003e\n```\n**Step 2:** Add the following profile to your project /site/pom.xml file\n```xml \n\u003cprofile\u003e\n  \u003cid\u003eprofile\u003c/id\u003e\n  \u003cdependencies\u003e\n    \u003cdependency\u003e\n      \u003cgroupId\u003eorg.aspectj\u003c/groupId\u003e\n      \u003cartifactId\u003easpectjrt\u003c/artifactId\u003e\n      \u003cversion\u003e${aspectjweaver.version}\u003c/version\u003e\n    \u003c/dependency\u003e\n  \u003c/dependencies\u003e\n  \u003cbuild\u003e\n    \u003cplugins\u003e\n      \u003cplugin\u003e\n        \u003cgroupId\u003eorg.codehaus.mojo\u003c/groupId\u003e\n        \u003cartifactId\u003easpectj-maven-plugin\u003c/artifactId\u003e\n        \u003cversion\u003e1.10\u003c/version\u003e\n        \u003cconfiguration\u003e\n          \u003cweaveDependencies\u003e\n            \u003cweaveDependency\u003e\n              \u003cgroupId\u003enl.openweb.hippo\u003c/groupId\u003e\n              \u003cartifactId\u003ehst-diagnostics-extension\u003c/artifactId\u003e\n            \u003c/weaveDependency\u003e\n          \u003c/weaveDependencies\u003e\n          \u003ccomplianceLevel\u003e1.8\u003c/complianceLevel\u003e\n          \u003csource\u003e1.8\u003c/source\u003e\n          \u003ctarget\u003e1.8\u003c/target\u003e\n          \u003cshowWeaveInfo\u003etrue\u003c/showWeaveInfo\u003e\n          \u003cverbose\u003etrue\u003c/verbose\u003e\n          \u003cXlint\u003eignore\u003c/Xlint\u003e\n          \u003cencoding\u003eUTF-8\u003c/encoding\u003e\n        \u003c/configuration\u003e\n        \u003cexecutions\u003e\n          \u003cexecution\u003e\n            \u003cgoals\u003e\n              \u003cgoal\u003ecompile\u003c/goal\u003e\n            \u003c/goals\u003e\n          \u003c/execution\u003e\n        \u003c/executions\u003e\n      \u003c/plugin\u003e\n    \u003c/plugins\u003e\n  \u003c/build\u003e\n\u003c/profile\u003e\n```\n**Step 3:** Add @Timed annotations to some methods in your project.\n```java\n@Timed\npublic List\u003cNewsDocuments\u003e getRelatedNews() {\n\t// ...\n}\n```\n**Step 4:** Build your project via profile \"profile\"\n```bash\nmvn clean install -Pprofile\n```\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fopenweb-nl%2Fhst-diagnostics-extension","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fopenweb-nl%2Fhst-diagnostics-extension","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fopenweb-nl%2Fhst-diagnostics-extension/lists"}