Developer Tools
Sysmontap
Stream sysmontap process and system samples.
Sysmontap is a DVT client built on RemoteServerClient. It opens the com.apple.instruments.server.services.sysmontap channel.
Use It For
- Connect through the DVT remote server.
- Call the service-specific DTX methods.
- Use the matching
idevice-toolscommand when one exists.
Feature Flag
[dependencies]
idevice = { version = "0.1.64", features = ["usbmuxd", "sysmontap"] }Service Names
| Path | Value |
|---|---|
| DVT Lockdown | com.apple.instruments.remoteserver |
| DVT Lockdown fallback | com.apple.instruments.remoteserver.DVTSecureSocketProxy |
| DVT RSD | com.apple.instruments.dtservicehub |
| DVT channel | com.apple.instruments.server.services.sysmontap |
Rust Example
use idevice::dvt::{
RemoteServerClient,
sysmontap::SysmontapClient,
};
let mut remote = RemoteServerClient::connect(&provider).await?;
let mut client = SysmontapClient::new(&mut remote).await?;
client.start().await?;
let sample = client.next_sample().await?;
println!("{sample:#?}");CLI Equivalent
idevice-tools sysmontapCommon Errors
| Error | What to check |
|---|---|
| Channel creation failed | The DVT remote server did not accept the channel identifier. |
| Protocol decode error | Check that the client and device service are using the expected DTX payload shape. |
| Developer service unavailable | Start from the iOS 17+ tunnel path or a device state that exposes developer services. |