File tree Expand file tree Collapse file tree 5 files changed +32
-42
lines changed
Expand file tree Collapse file tree 5 files changed +32
-42
lines changed Original file line number Diff line number Diff line change 881 .
991 .
1010
11- ## Specifications
11+ ## Photo (good) and/or Video (best) file attached that shows the issue
1212
13- - Version:
14- - Platform:
13+ url, or attachment
14+
15+ ## Zipped file of your cloud logging data that shows the issue.
16+
17+ url, or attachment (search and replace sensitive strings, for instance vehicle ID or trip ID)
Original file line number Diff line number Diff line change @@ -15,8 +15,9 @@ We also have demo data for:
1515
1616### Loading Your Data
1717
18- 1 . Export your Fleet Engine logs from Cloud Logging using this filter (customize as needed):
18+ 1 . Export your Fleet Engine logs from Cloud Logging using this filter (customize as needed): \
1919``` sql
20+ -- On-demand trips
2021resource .type = " fleetengine.googleapis.com/Fleet"
2122AND (labels .vehicle_id = " YOUR_VEHICLE_ID" OR
2223 labels .trip_id = (" TRIP_ID_1" " TRIP_ID_2" ))
3031)
3132```
3233
34+ ``` sql
35+ -- Scheduled tasks
36+ resource .type = " fleetengine.googleapis.com/DeliveryFleet"
37+ AND (labels .delivery_vehicle_id = " YOUR_VEHICLE_ID" OR
38+ labels .task_id = (" TASK_ID_1" " TASK_ID_2" ))
39+ AND timestamp >= " START_TIME" -- ISO 8601 format (YYYY-MM-DDTHH:MM:SS)
40+ AND timestamp <= " END_TIME" -- ISO 8601 format (YYYY-MM-DDTHH:MM:SS)
41+ AND (
42+ logName:" logs/fleetengine.googleapis.com%2Fcreate_delivery_vehicle" OR
43+ logName:" logs/fleetengine.googleapis.com%2Fupdate_delivery_vehicle" OR
44+ logName:" logs/fleetengine.googleapis.com%2Fcreate_task" OR
45+ logName:" logs/fleetengine.googleapis.com%2Fupdate_task"
46+ )
47+ ```
48+
33492 . Download the logs in JSON format and optionally zip them
34503 . Import the JSON/ZIP file to Fleet Debugger
3551
Original file line number Diff line number Diff line change 1- # LMFS Planned Paths
1+ # Planned Paths
22
33Displays all planned routes for the vehicle.
4+ This data comes directly from Navigation SDK, but requires the enablement of restriced use logs.
5+
6+ We are also working on how we can integrate planned paths that are from server side routing. e.g routes from before navigation SDK guidance started.
47
58![ Screenshot] ( screenshots/planned_paths.png )
Original file line number Diff line number Diff line change 11# Speed
22
3- Lorem ...
4-
53![ Screenshot] ( screenshots/speed.png )
Original file line number Diff line number Diff line change 1- # Generating Bundle
2- To generate a support bundle for reporting issues with either debugger or the full ODRD/LMFS solution run the following commands:
1+ # Data file
32
4- ```
5- # Generate data files for reporting issues
6- dune-buggy.js historical --apikey nokey --vehicle=my-vehicle-id
7- # build sharable, static artifact. Any webserver should be able to host this.
8- npm run build
9- tar -czf support-dump.tgz build
10- ```
11-
12- The generated support-dump.tgz file can be included in bug reports & communication with support.
13-
14- # Viewing Bundle
15-
16- The view-bundle.sh script starts a simple webserver and attempts to open a browser window with the
17- correct url (including specifying a valid API key).
18-
19- ```
20- tar -xzf support-dump.tgz
21- cd build
22- ./view-bundle.sh
23- ```
24-
25- Note that any simple http server can be used to serve the index.html file in the build directior. The following
26- would suffice:
27- ```
28- python3 -m http.server
29- ```
30-
31- # Viewing bundle with newer version of the debugger
32-
33- The data used in the debugger is contained within the data.json file. This file can be copied
34- out of support bundle and placed in the 'public' directory of a fleet-debugger github repo.
35- Once copied, 'npm start' in the fleet-debugger repo will let this bundle be viewed with the
36- newer UI.
3+ Since all the data is in the browsers local storage only, sending deep link url's is not really a feature. This would only center the map.
4+ For this reason, if you experience an issue zip compress your cloud logging json file that reporoduces the issue.
5+ Search and replace sensitive strings, for instance vehicle ID or trip ID before sending this file in a bug report or similar.
6+ S
You can’t perform that action at this time.
0 commit comments