This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| filter @type = "REPORT" | |
| | stats | |
| count(@type) as invocationsCount, | |
| min(@duration) /1000 as minDuration, | |
| avg(@duration) /1000 as avgDuration, | |
| pct(@duration, 95) /1000 as p95Duration, | |
| pct(@duration, 99) /1000 as p99Duration, | |
| max(@duration) /1000 as maxDuration, | |
| stddev(@duration) /1000 as stdDevDuration | |
| by bin(1h) as timeFrame |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| ## Install ntfs-3g | |
| ``` | |
| brew tap gromgit/homebrew-fuse | |
| brew install --cask macfuse | |
| brew install ntfs-3g-mac | |
| ``` | |
| ## Enable Security development in your mac (startup boot configuration -> utilities) | |
| ## Identify your ntfs disk |
OlderNewer