- 
    
Problem report
 - 
    Resolution: Fixed
 - 
    
Trivial
 - 
    6.0.7
 - 
    None
 - 
    K8s/kubelet 1.22.5 / Ubuntu 20.04
 
- 
        Sprint 99 (Apr 2023)
 - 
        0.5
 
Steps to reproduce:
- Container memory discovery is working, but the Prometheus to JSON parameter filters out all the results - thus no item prototypes are delivered.
 - Prometheus to JSON contains the following:
container_memory_cache\{container =~ ".*", namespace =~ ".*", pod =~ "POD"}Result:
 
No item prototypes are created for any running pods on the system
Expected:
    I believe the intent may have been to filter accordingly:
     container_memory_cache\{container !~ "POD", namespace =~ ".*", pod =~ ".*"}
After updating the discovery rule's preprocessing steps to the above I can see all the expected output in the results.