-
|
Describe the bug To Reproduce We get the following for content_state property for all hosts queried: Expected behavior Environment (please complete the following information):
Additional context Transcript content
|
Beta Was this translation helpful? Give feedback.
Replies: 4 comments
-
|
I'm not able to reproduce this in my test environment. Can you provide more information?
If possible, please include a verbose transcript.
|
Beta Was this translation helpful? Give feedback.
-
|
Please find the transcript attached. |
Beta Was this translation helpful? Give feedback.
-
|
Sorry, I gave you the wrong command when I asked you to use However, I can see the content details in your examples: content_state : @{system_critical=; rapid_response_content=; vulnerability_management=; sensor_operations=}What you're seeing is default PowerShell display behavior for complex objects. If you want to see the values under $Obj = Get-FalconHost -Filter "device_id:'id'" -Include content_state -Detailed
$Obj | Select-Object -ExpandProperty content_state
$Obj.content_state.system_critical
$Obj.content_state | ConvertTo-Json |
Beta Was this translation helpful? Give feedback.
-
|
Managed to retrieve the content state details I wanted, thanks to your advice. Much appreciated! |
Beta Was this translation helpful? Give feedback.
Sorry, I gave you the wrong command when I asked you to use
Get-FalconHost -Id <id> -Stateto check for content state information. That's online state information. You can ignore that.However, I can see the content details in your examples:
What you're seeing is default PowerShell display behavior for complex objects. If you want to see the values under
system_criticalbelowcontent_state, you need to reference that specific property in the object. Here are some ways to do that: