Found 1 (1 active) registrations for bundle.id.of.my.extension (com.apple.networkextension.filter-data)

I have tried to install both network exension and endpoint extension from my container application.

I have observed that both are activated and enabled but not running state.

I have observed this log:
Found 1 (1 active) registrations for bundle.id.of.my.extension (com.apple.networkextension.filter-data)


Do I need to add additional setup if I want to run both extension from container app.

Found 1 (1 active) registrations for bundle.id.of.my.extension (com.apple.networkextension.filter-data)

Okay, this log means that the OS recognizes the Content Filter as an active Network Extension.

If you are not seeing flows being passed into handleNewFlow, checkout that your NEFilterSettings were applied successfully in the startFilter method out in NEFilterDataProvider. You should track this with os_log statements as well.

If there are other errors, usually the Console.app will give your this information. You could also attempt to log stream out what is happening with this process as well.

Code Block text
% log stream --level debug --predicate 'process == "contentFilterExtensionProcessName"'


Matt Eaton
DTS Engineering, CoreOS
meaton3@apple.com
Found 1 (1 active) registrations for bundle.id.of.my.extension (com.apple.networkextension.filter-data)
 
 
Q