Files
RangerMetrics/addons/capture/fnc_running_mission.sqf
IndigoFox dc822c4c93 MAJOR rework
- improves a lot on the Go side including better config and logging libraries (including log rotation), better internal package distribution, and new a3go functionality to make data transfer more performant
- SQF side preprocessing of capture data is now minimal - arrays in hashmap format are sent directly to the extension and parsed there to minimize game impact
- CBA custom events are implemented in a better fashion
- README update
- license change
- with performance improvements, the deep customization of integrated metric gathering is removed in return to a single refreshRateMs, defining the interval at which core metrics are captured
- peeled back the list of core metrics to the core information used in troubleshooting and benchmarking
2023-10-10 00:44:50 -07:00

23 lines
800 B
Plaintext

#include "script_component.hpp"
[
["bucket", "mission_data"],
["measurement", "loaded_info"],
["tags", GVARMAIN(standardTags)],
["fields", [
["briefing_name", briefingName],
["mission_name", missionName],
["mission_name_source", missionNameSource],
[
"on_load_name",
getMissionConfigValue ["onLoadName", "Unknown"]
],
["author", getMissionConfigValue ["author", "Unknown"]],
["server_name", serverName],
["playable_slots_west", playableSlotsNumber west],
["playable_slots_east", playableSlotsNumber east],
["playable_slots_guer", playableSlotsNumber independent],
["playable_slots_civ", playableSlotsNumber civilian],
["playable_slots_logic", playableSlotsNumber sideLogic]
]]
];