Kibana 4.3.1 Windows Error

Hi,

Uncaught TypeError: Cannot use 'in' operator to search for 'length' in 3 (http://localhost:5601/bundles/commons.bundle.js:18824)

Version: 4.3.1
Build: 9517

Error: Uncaught TypeError: Cannot use 'in' operator to search for 'length' in 3 (http://localhost:5601/bundles/commons.bundle.js:18824)
at window.onerror (http://localhost:5601/bundles/commons.bundle.js:63677:25)

Regards
Ram

Is this when you start KB?

Do you have any browser extensions that might be conflicting? Try opening kibana in a private browsing window.

1 Like

plz see the error

Hi,

yes,

Regards
Ram

Now kibana working fine,

How to do Attached Files,

Regards
Ram

Attached where?

Hi,
i want to search in scanned documents (which are basically images), you'll need to run them through some Elastic-search .
where should i add upload files for images PNG files in elastic search

Regards,
Ram

That won't be much use, ES doesn't do OCR so it'll just store it as a binary object.

Hi,

i want to images content search,
elastic search it will read or not,

Regards,
Ram

No, it won't.
You need other tools to do that and send it to ES, but I don't know what could do image reading.

Hi,
elastic search in images content search or not
How to do
i have a requirement is images content search,
i am doing open src in Liferay,

Regards
Ram

I'm not sure how many times I can repeat my same answer!

Hi ,
which tools ,i should use in elastic search,
plz give me guidance,
i am new Elasticsearch

Regards
Ram

Hi,

test/attachment/_mapping error
i am added code this ,

PUT /test/attachment/_mapping
{

"attachment" : {

"properties" : {

"file" : {

"type" : "attachment",

"index":"yes",

"path":"full",

"fields" : {

"title" : { "store" : "yes" },

"file" : { "term_vector":"with_positions_offsets", "type":
"string", "store":"yes" }

}

}

}

}

}

please give me guidance,

Regards
Ram

Hi,
Before error working fine ,
this txt for exemple or cvs Not working
i am added code this
coded=cat tonfichier.pdf | perl -MMIME::Base64 -ne 'print encode_base64($_)'

json="{"file":"${coded}"}"

echo "$json" > json.file

url -X POST "localhost:9200/test/attachment/" -d @json.file

To get the readable text i execute :

curl -XGET 'http://localhost:9200/test/attachment/_search?pretty' -d '

{

"fields": [

"file"

]

}

please give me guidance,

Regards
Ram