Jira native connector

I'm using a native connector to index my Jira, and I only get attachment items without bugs. I checked the user credentials, and the user could view bugs.

Any idea?

Thank you,
Noam

Hi @Noam_Huri ,

Sorry you're having this issue. As an Elastic Cloud customer, you're entitled to support, so don't hesitate to reach out to them at https://support.elastic.co. They can help by looking at your connectors logs, and investigating your connector settings/configuration.

In the mean time, can you provide some more information?

  • do the syncs complete successfully, or are they failing? If they're failing, what's the error message?
  • have you configured the right project keys where you're expecting to find Bugs?
  • Do you have any Basic Sync Rules configured?
  • Do you have any Advanced Sync Rules configured?
  • Have you made any changes/customizations to your ingest pipeline?

Bug issues are definitely expected to be synced, so I'm trying to enumerate known ways they might be getting excluded or dropped before they get to Elasticsearch.

1 Like

The index did not work well becouse it has been exceeded the total fields [1000].

Thank you,
Noam

Gotcha! Yep, that can happen. You have a few options here:

  1. increase the max fields. I wouldn't recommend this, as it's fighting a losing battle. You probably hit 1000 fields because something in there is using dynamic strings as keys, so you'll eventually hit whatever limit you set.
  2. Use Basic Sync Rules or Ingest Pipelines to drop fields that you don't care about, and/or rename fields to keep the field count low.
  3. Change your mappings for the index to store the dynamic subset of your inputs as JSON blobs, rather than as objects with nesting fields.