39
loading...
This website collects cookies to deliver better user experience
Tracking on iOS | Tracking on Android | |
---|---|---|
Move mode | After x meters (default: 100) or t seconds (default: 300) |
Every 30 seconds |
Significant changes mode | After >= 500 meters and >= 5 minutes | After >= x meters and >= t seconds |
Manual mode | On user request | On user request |
Quiet mode | Never | Never |
{
"locatorDisplacement": 25,
"locatorInterval": 60,
"locatorPriority": 2
}
owntracks/frontend
in the meantime, which seems to be a lot more advanced than the recorder's web UI. You may want to use this as an alternative to Grafana, which will make the setup a lot easier.{
"_type": "location",
"acc": 13,
"alt": 163,
"batt": 91,
"bs": 1,
"conn": "w",
"created_at": 1624607444,
"lat": 48.9995682,
"lon": 8.3940805,
"t": "u",
"tid": "l3",
"tst": 1624607139,
"vac": 3,
"vel": 0
}
php-fpm
). Assuming it is deployed under https://my.server.tld/track.php
then that is the URL you need to configure as an HTTP target endpoint in the OwnTracks app. Optionally, you can configure HTTP Basic auth inside your web server's config. OwnTrack's client app has support for that built in.SELECT
tst AS "time",
lat,
lon,
vel
FROM recordings
WHERE
$__unixEpochFilter(tst) AND
user = '$user' AND
device = '$device'
ORDER BY tst
39