Can i use Histogram field and Boxplot with XPack Basic license?

I read the documentation here:
Histogram Datatype
BoxPlot

I saw the Histogram datatype and Boxplot both connected to XPack, but in the subsciption page, i see that i can use Histogram data type with basic license:
Subscriptions

In my cluster i enabled xpack.monitoring and i set
xpack.license.self_generated.type: basic

but when i go to Kibana and try to apply this:

POST my_index/_mapping
{
    "properties": {
      "my_histogram": {
        "type" : "histogram"
      },
      "my_text" : {
        "type" : "keyword"
      }
    }
}

I have this error:
No handler for type [histogram] declared on field [my_histogram]

Also when i try to do boxplot:
{
"size": 0,
"aggs" : {
"load_time_boxplot" : {
"boxplot" : {
"field" : "numeric_field"
}
}
}
}

I have this issue:
"type": "named_object_not_found_exception",
"reason": "[5:25] unable to parse BaseAggregationBuilder with name [boxplot]: parser not found"

Have you any idea what i made wrong, or how can i configure my cluster to make it right?

Thank you very much!

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