Has anyone ever come across this issue before and if so how did you fix it?
We’ve configured the management extender for the ESXi which means that each endpoint now has more than one ID (consolidated ID, host ID and ESXi ID).
For every action we run now, it kicks off two jobs:
<ActionResults Resource="https://bigfix-server.local:52311/api/action/178714/status">
<ActionID>178714</ActionID>
<Status>Open</Status>
<DateIssued>Wed, 26 Feb 2025 12:37:28 +0000</DateIssued>
<Computer ID="2686605814" Name="blah">
<Status>The action executed successfully.</Status>
<State IsError="0">3</State>
<ExitCode>15</ExitCode>
<ApplyCount>1</ApplyCount>
<RetryCount>1</RetryCount>
<LineNumber>3</LineNumber>
<StartTime>Wed, 26 Feb 2025 12:37:29 +0000</StartTime>
<EndTime>Wed, 26 Feb 2025 12:37:29 +0000</EndTime>
<Computer ID="13806264" Name="blah">
<Status>The action executed successfully.</Status>
<State IsError="0">3</State>
<ExitCode>15</ExitCode>
<ApplyCount>1</ApplyCount>
<RetryCount>1</RetryCount>
<LineNumber>3</LineNumber>
<StartTime>Wed, 26 Feb 2025 12:37:29 +0000</StartTime>
<EndTime>Wed, 26 Feb 2025 12:37:29 +0000</EndTime>
</Computer>
</Computer>
</ActionResults>
</BESAPI>
The two computer ID’s seen are the consolidated ID and the ESXi ID which suggests that as BigFix has no idea which of those ID’s it needs to send a job to (as you use a hostname rather than an ID when creating a job) that it executes the jobs on both in the hope that one of them will work.
The problem this causes though is that there is no way then to filter for the status for the consolidated ID for each job and if (like us) you parse that data into another place then you end up with mixed results.
The API call I’ve been using is:
https://bigfix-server.local:52311/api/action/178714/status
I’ve also tried using the filters as found here Action | BigFix Developer but they don’t work when you are running a MAG
I’ve also tried using query for the job but as you all know, my relevance skills are shocking so I can’t get it to work.
I did try multiple variations of this but couldn’t find anything that would work:
((names of it, id of it, states of it) of bes actions whose (id of it = 268660581) of bes computers)
Any thoughts and help would be much appreciated - I do have a case open for this too.