Error: parsing time "2023-10-31" as "2006-01-02T15:04:05Z07:00": cannot parse "" as "T"
Cause: Obviously, when connecting, the provider first does an API call on the root /, and then want to parse the responded field version.build_date. E.g. this response:
But 2023-10-31 does not look like the expected format. A real Elasticsearch responds for example this:
"build_date": "2022-12-05T18:22:22.226119656Z",
Just because of this simple error, the whole (?) provider doesn't not work. Tried with component template and index template resource, and used the example code from documentation.
Error: parsing time "2023-10-31" as "2006-01-02T15:04:05Z07:00": cannot parse "" as "T"
Cause: Obviously, when connecting, the provider first does an API call on the root
/
, and then want to parse the responded fieldversion.build_date
. E.g. this response:But
2023-10-31
does not look like the expected format. A real Elasticsearch responds for example this:"build_date": "2022-12-05T18:22:22.226119656Z",
Just because of this simple error, the whole (?) provider doesn't not work. Tried with component template and index template resource, and used the example code from documentation.