> ## Documentation Index
> Fetch the complete documentation index at: https://doc.lucidworks.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Filters

export const LwTemplate = ({title = "Key questions to get you started", icon = "sparkles", cta = "Powered by Agent Studio", linkHref = "https://lucidworks.com/demo/?utm_source=docs&utm_medium=referral&utm_campaign=docs_cta_ai"}) => {
  const [isLoaded, setIsLoaded] = useState(false);
  useEffect(() => {
    const timer = setTimeout(() => {
      setIsLoaded(true);
    }, 500);
    return () => clearTimeout(timer);
  }, []);
  return <div className="lw-template-container">
      <Card title={title} icon={icon}>
        {isLoaded && <span dangerouslySetInnerHTML={{
    __html: `<lw-template id="a029c1a9-28be-427e-b0e1-5d918920246a"></lw-template
            >`
  }} />}
        <Link href={linkHref} className="agent-studio-link text-left text-gray-600 gap-2 dark:text-gray-400 text-sm font-medium flex flex-row items-center hover:text-primary dark:hover:text-primary-light group-hover:text-primary group-hover:dark:text-primary-light">Powered by Lucidworks Agent Studio</Link>
      </Card>
    </div>;
};

[old doc.lw link]: https//doc.lucidworks.com/fusion/5.9/a8nbty

[localhost link]: http://localhost:3000/docs/5/fusion/operations/config-sync/filters/overview

[mintlify link]: https://doc.lucidworks.com/docs/5/fusion/operations/config-sync/filters/overview

ConfigSync supports [App filters](/docs/5/fusion/operations/config-sync/filters/apps-filter) and [Object filters](/docs/5/fusion/operations/config-sync/filters/object-filter).

<LwTemplate />

Below is an example configuration in the `fusion-config-sync` section of the Helm chart that synchronizes all apps but only specific objects:

```yaml wrap  expandable  theme={"dark"}
pub:
  apps: "*"
  objects: &objects
    # filter tmp file names
    name-filter: ".*_lw_tmp.*"
    # possible modes: all, any
    json-matchers-mode: "any"
    # filter audit properties by json pointer
    prop-filter: >
      /created,
      /modified,
      /createdAt,
      /updatedAt,
      /updates
    solr-configs:
      name-filter: "^(system_|_default).*"
    solr-collections:
      name-filter: "^system_.*"
    apps:
      prop-filter: >
        /properties/previousCollectionId
    configurations:
      name-filter: "^config-sync.+"
    datasources-v2:
      prop-filter: >
        /_id
    blobs:
      name-filter: "^quickstart/.+"
      json-matchers: >
        /contentType=.+
    collections:
      name-filter: "^system_.+"
    spark-jobs:
      # data-migration jobs
      name-filter: "^lw_(import|export)_.+"
    tasks:
      # data-migration tasks
      name-filter: "^lw_export_finalizer_.+"
    index-pipelines:
      prop-filter: >
        /properties/secretSourcePipelineId,
        /stages/secretSourceStageId,
        /stages/licensed
    query-pipelines:
      prop-filter: >
        /properties/secretSourcePipelineId,
        /stages/secretSourceStageId,
        /stages/licensed
    users:
      json-matchers: >
        /username!=admin
    roles:
      json-matchers: >
        /name!=admin
    groups:
      json-matchers-mode: "any"
      json-matchers: >
        /id=_shared,
        /isSystem=false
```
