I use ladder99/fanuc-driver:linux64-886a5a3 Docker image.
When I define collectors as follows (I sort the collectors alphabetically):
collector-data: &collector-data
l99.driver.fanuc.strategies.FanucMultiStrategy, fanuc:
- l99.driver.fanuc.collectors.Alarms, fanuc
- l99.driver.fanuc.collectors.AxisData, fanuc
- l99.driver.fanuc.collectors.GCodeData, fanuc
- l99.driver.fanuc.collectors.MachineInfo, fanuc
- l99.driver.fanuc.collectors.Messages, fanuc
- l99.driver.fanuc.collectors.ProductionData, fanuc
- l99.driver.fanuc.collectors.SpindleData, fanuc
- l99.driver.fanuc.collectors.StateData, fanuc
- l99.driver.fanuc.collectors.ToolData, fanuc
it sometimes (rarely) works, sometimes it does not work.
However, when I move MachineInfo to the top (as the first collector, before Alarms), all works as expected.
I’d assume that the order in which the collectors are defined, does not matter, i.e. fanuc-driver would solve the collector dependencies on each other.
I use
ladder99/fanuc-driver:linux64-886a5a3Docker image.When I define collectors as follows (I sort the collectors alphabetically):
it sometimes (rarely) works, sometimes it does not work.
However, when I move
MachineInfoto the top (as the first collector, beforeAlarms), all works as expected.I’d assume that the order in which the collectors are defined, does not matter, i.e.
fanuc-driverwould solve the collector dependencies on each other.