{"id":19184035,"url":"https://github.com/cryostatio/cryostat-reports","last_synced_at":"2026-02-26T22:10:17.150Z","repository":{"id":37791026,"uuid":"429797246","full_name":"cryostatio/cryostat-reports","owner":"cryostatio","description":null,"archived":false,"fork":false,"pushed_at":"2025-06-12T13:51:46.000Z","size":1846,"stargazers_count":0,"open_issues_count":9,"forks_count":9,"subscribers_count":4,"default_branch":"main","last_synced_at":"2025-06-15T10:54:13.458Z","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":"other","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/cryostatio.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":".github/CODEOWNERS","security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null}},"created_at":"2021-11-19T12:55:04.000Z","updated_at":"2025-06-12T13:51:51.000Z","dependencies_parsed_at":"2024-01-25T20:45:19.474Z","dependency_job_id":"39972012-3156-48a5-bd6d-3d16a8724736","html_url":"https://github.com/cryostatio/cryostat-reports","commit_stats":null,"previous_names":[],"tags_count":7,"template":false,"template_full_name":null,"purl":"pkg:github/cryostatio/cryostat-reports","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cryostatio%2Fcryostat-reports","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cryostatio%2Fcryostat-reports/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cryostatio%2Fcryostat-reports/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cryostatio%2Fcryostat-reports/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/cryostatio","download_url":"https://codeload.github.com/cryostatio/cryostat-reports/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cryostatio%2Fcryostat-reports/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":260281565,"owners_count":22985627,"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-09T11:05:56.704Z","updated_at":"2026-02-26T22:10:17.112Z","avatar_url":"https://github.com/cryostatio.png","language":"Java","funding_links":[],"categories":[],"sub_categories":[],"readme":"# cryostat-reports\n\nThis project uses Quarkus, the Supersonic Subatomic Java Framework.\n\nIf you want to learn more about Quarkus, please visit its website: https://quarkus.io/ .\n\n## API\n\nThis microservice exposes only one API endpoint: `POST /report`. This expects `multipart/form-data`,\nwith a form field named `file` containing a JFR binary file (`application/octet-stream`). The response\nis an Automated Analysis Report in `text/html` format. The uploaded file is not preserved and no\ncaching is performed - this is expected to be handled by the \"parent\" Cryostat application that is\nsending the JFR binary data.\n\n## Running the application in dev mode\n\nYou can run your application in dev mode that enables live coding using:\n```shell script\n./mvnw compile quarkus:dev\n```\n\n\u003e **_NOTE:_**  Quarkus now ships with a Dev UI, which is available in dev mode only at http://localhost:8080/q/dev/.\n\n## Packaging and running the application\n\nThe application can be packaged using:\n```shell script\n./mvnw package\n```\n\nIt produces the `quarkus-run.jar` file in the `target/quarkus-app/` directory.\nBe aware that it’s not an _über-jar_ as the dependencies are copied into the `target/quarkus-app/lib/` directory.\n\nThe application is now runnable using `java -jar target/quarkus-app/quarkus-run.jar`.\n\nAn OCI image tagged as `quay.io/cryostatio/cryostat-reports` will also be built using `podman`\nand loaded into your local `podman` image registry.\n\nIf a Quarkus build failure is encountered due to being unable to build a Docker image, then:\n```shell script\nsudo dnf install podman-docker\n```\n\n**Note**: If `docker` is already installed, then starting the `docker` service will solve the issue.\n\n## Creating a native executable\n\nYou can create a native executable using: \n```shell script\n./mvnw package -Pnative\n```\n\nOr, if you don't have GraalVM installed, you can run the native executable build in a container using: \n```shell script\n./mvnw package -Pnative -Dquarkus.native.container-build=true\n```\n\nYou can then execute your native executable with: `./target/cryostat-reports-*-runner`\n\nIf you want to learn more about building native executables, please consult https://quarkus.io/guides/maven-tooling.\n\nNative image mode requires registration of reflective classes and accesses. See this guide for detail:\nhttps://www.graalvm.org/reference-manual/native-image/Agent/\n\nIn short, download the GraalVM CE distribution. Then do:\n```bash\n# replace with actual path to downloaded and extracted GraalVM\nexport JAVA_HOME=~/workspace/graalvm-ce-java21-21.0.2/\n# run the application JAR with the tracing agent attached. This is a JVM-mode JAR!\n$JAVA_HOME/bin/java -agentlib:native-image-agent=config-output-dir=graal-config -jar target/cryostat-reports-*-runner.jar\n# in another terminal, make a request to exercise the expected microservice code path. Some \"fully-featured\"\n# JFR file should be used here - one that uses all possible event types used in rules analysis,\n# so that all rule pathways execute\nhttp -f :8080/report file@example.jfr\n# ctrl-c to kill the running Quarkus application, then\n# cp graal-config/* src/main/resources/\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcryostatio%2Fcryostat-reports","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fcryostatio%2Fcryostat-reports","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcryostatio%2Fcryostat-reports/lists"}