spb/internetpressure
Public
TypeScript 36.3%
Python 31.8%
Go 18%
JavaScript 9.8%
Shell 1.9%
SQL 1.4%
CSS 0.5%
1<?xml version="1.0" encoding="UTF-8"?>2<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">3<!--4 InternetPressure.io probe agent — LaunchDaemon (macOS).5 Installed by deploy/install.sh to /Library/LaunchDaemons/io.internetpressure.probe.plist.6 __USER__ is replaced by the installer with the account that runs the probe (unprivileged ICMP works for any7 user on macOS; traceroute uses UDP probes and needs no root).8 Load: sudo launchctl bootstrap system /Library/LaunchDaemons/io.internetpressure.probe.plist9 Unload: sudo launchctl bootout system/io.internetpressure.probe10-->11<plist version="1.0">12<dict>13 <key>Label</key>14 <string>io.internetpressure.probe</string>1516 <key>ProgramArguments</key>17 <array>18 <string>/usr/local/bin/ip-probe</string>19 <string>run</string>20 <string>--config</string>21 <string>/etc/internetpressure/probe.yaml</string>22 </array>2324 <key>UserName</key>25 <string>__USER__</string>2627 <key>WorkingDirectory</key>28 <string>/var/lib/internetpressure</string>2930 <key>RunAtLoad</key>31 <true/>3233 <key>KeepAlive</key>34 <true/>3536 <!-- Wait 5 s between restarts (also after a self-update exit 0). -->37 <key>ThrottleInterval</key>38 <integer>5</integer>3940 <key>ExitTimeOut</key>41 <integer>15</integer>4243 <key>StandardOutPath</key>44 <string>/var/log/internetpressure-probe.log</string>45 <key>StandardErrorPath</key>46 <string>/var/log/internetpressure-probe.log</string>4748 <key>EnvironmentVariables</key>49 <dict>50 <key>PATH</key>51 <string>/usr/bin:/bin:/usr/sbin:/sbin:/usr/local/bin</string>52 </dict>5354 <key>ProcessType</key>55 <string>Background</string>56 <key>LowPriorityIO</key>57 <true/>58</dict>59</plist>60