Your 12 hourly digest for DZone.com Feed

DZone.com Feed

Recent posts on DZone.com


Jul 13th 2026, 14:00 by Petr Bouda

Java Flight Recorder (JFR) captures an enormous amount of detail about what your application is doing — but raw JFR files are only as useful as the tools you have to explore them. Jeffrey is an open-source JFR analyzer that specializes in turning JFR events into interactive visualizations, and Jeffrey Microscope is its standalone, single-user deployment: a self-contained application that lets you import recordings and dig into flamegraphs, timeseries, and other views right in your browser. Getting started takes a minute:

  • Standalone JAR – download the latest microscope.jar from the GitHub releases page and start it with java -jar microscope.jar (Java 25 or newer).
  • Docker – skip the setup entirely with docker run -it --network host petrbouda/microscope.
  • Sample recordings – if you want to explore the tool before profiling your own application, the petrbouda/microscope-examples image ships with sample recordings preloaded (docker run -it --network host petrbouda/microscope-examples).

In this article, we'll use Jeffrey Microscope to analyze JFR flamegraphs and walk through how they help you find where your application actually spends its time.

Jul 13th 2026, 13:00 by Akhil Madineni

Asynchronous processing pipelines are a cornerstone of modern distributed systems, but wiring them together reliably can be complex. A typical pipeline built with queues or message brokers requires custom retry logic, dead-letter queues, cron recovery jobs, and database status flags to ensure every step eventually succeeds. 

Temporal replaces this heavy plumbing with durable workflows. In a Temporal workflow, the business logic of the pipeline is written as ordinary sequential code, yet it executes reliably across failures. The platform persists every state transition and step so that if a worker crashes or a network blip occurs, execution resumes exactly where it left off. 

Jul 13th 2026, 12:00 by Igboanugo David Ugochukwu

Cloudflare published its own forensic timeline of the Salesloft Drift breach down to the minute, and it's worth sitting with the detail for a second. 

At 11:51 on August 9, 2025, an actor researchers track as GRUB1 tried to validate a stolen Cloudflare API token against the Salesforce API using TruffleHog's user-agent string — a tool built for finding leaked secrets, repurposed here to confirm one actually worked. That attempt failed. At 22:14, it didn't. 

You are receiving this email because you subscribed to this feed at blogtrottr.com. By using Blogtrottr, you agree to our terms.

If you no longer wish to receive these emails, you can unsubscribe from this feed, edit this subscription, or manage all your subscriptions.

Comments

Popular posts from this blog

Your 12 hourly digest for Digg Top Stories

Your 12 hourly digest for Slashdot