Kibana Data view "fieldAttrs"

Hello,

I used Kibana API to get info about a data view

GET kbn:/api/data_views/data_view/<data_view_id>

and I got an object as the following:

{
    "data_view": {
      "id": "...",
      "version": "...",
      "title": "...",
      "sourceFilters": [],
      "fields": {},
      "typeMeta": {},
      "fieldFormats": {},
      "runtimeFieldMap": {},
      "fieldAttrs": {
        "prometheus.labels.instance": {
          "count": 1
        }
      },
      "allowNoIndex": false,
      "name": "..."
    }
}

I searched but didn't find what fieldAttrs corresponds to.
Could someone give me some explanations about it ?

@cotarbe

Here's the documentation that you've requested - Create data view API | Kibana Guide [master] | Elastic - let me know if you have further questions.

Thanks,
Matt

Thank you @mattkime !

This topic was automatically closed 28 days after the last reply. New replies are no longer allowed.