# Mutate string to geo point error (logstash)

**URL:** https://discuss.elastic.co/t/mutate-string-to-geo-point-error-logstash/155301
**Category:** Logstash
**Created:** [November 4, 2018, 2:02pm UTC](https://discuss.elastic.co/t/mutate-string-to-geo-point-error-logstash/155301 "2018-11-04T14:02:19Z")
**Posts on this page:** 2
**Page:** 1

<div class="post-metadata">

### Author: ![Claudio\_Gerarduzzi](https://sea2.discourse-cdn.com/elastic/user_avatar/discuss.elastic.co/claudio_gerarduzzi/32/37264_2.png) [@Claudio\_Gerarduzzi](https://discuss.elastic.co/u/Claudio_Gerarduzzi)
#### Post date: [November 4, 2018, 2:02pm UTC](https://discuss.elastic.co/t/mutate-string-to-geo-point-error-logstash/155301/1 "2018-11-04T14:02:19Z")

</div>

Good morning community;

I have the next problem in my exercise, with the next config file:  
input {  
file {  
path =\> "/EADIC/Chicago\_Crime\_Data\_2015.csv"  
start\_position =\> "beginning"  
sincedb\_path =\> "/dev/null"  
}  
}  
filter{  
csv{  
separator =\> ","  
columns =\> ["ID","Case Number","Date","Block","IUCR","Primary Type","Description","Location Description","Arrest","Domestic","Beat","District","Ward","Community Area","FBI Code","X Coordinate","Y Coordinate","Year","Updated On","Latitude","Longitude","Location"]  
}  
mutate {  
convert =\> { "Location" =\> "geo\_point" }  
}  
}  
output{  
elasticsearch{  
hosts =\> "localhost"  
index =\> "perejil"

```
}
stdout{ }

```

}

I have the next error message:  
[2018-11-04T10:45:39,827][INFO][logstash.outputs.elasticsearch] Attempting to install template {:manage\_template=\>{"template"=\>"logstash-_", "version"=\>60001, "settings"=\>{"index.refresh\_interval"=\>"5s"}, "mappings"=\>{"default"=\>{"dynamic\_templates"=\>[{"message\_field"=\>{"path\_match"=\>"message", "match\_mapping\_type"=\>"string", "mapping"=\>{"type"=\>"text", "norms"=\>false}}}, {"string\_fields"=\>{"match"=\>"_", "match\_mapping\_type"=\>"string", "mapping"=\>{"type"=\>"text", "norms"=\>false, "fields"=\>{"keyword"=\>{"type"=\>"keyword", "ignore\_above"=\>256}}}}}], "properties"=\>{"@timestamp"=\>{"type"=\>"date"}, "@version"=\>{"type"=\>"keyword"}, "geoip"=\>{"dynamic"=\>true, "properties"=\>{"ip"=\>{"type"=\>"ip"}, "location"=\>{"type"=\>"geo\_point"}, "latitude"=\>{"type"=\>"half\_float"}, "longitude"=\>{"type"=\>"half\_float"}}}}}}}}  
[2018-11-04T10:45:39,885][ERROR][logstash.pipeline] Error registering plugin {:pipeline\_id=\>"main", :plugin=\>"#\<LogStash::FilterDelegator:0xc17a565 @metric\_events\_out=org.jruby.proxy.org.logstash.instrument.metrics.counter.LongCounter$Proxy2 - name: out value:0, @metric\_events\_in=org.jruby.proxy.org.logstash.instrument.metrics.counter.LongCounter$Proxy2 - name: in value:0, @metric\_events\_time=org.jruby.proxy.org.logstash.instrument.metrics.counter.LongCounter$Proxy2 - name: duration\_in\_millis value:0, @id="3e47c60d5fa952df4b5ba019dd148fda7b20e3559a37a1b0d48044a8275a4ca1", @klass=LogStash::Filters::Mutate, @metric\_events=#LogStash::Instrument::NamespacedMetric:0x3cb144c4, @filter=\<LogStash::Filters::Mutate convert=\>{"Location"=\>"geo\_point"}, id=\>"3e47c60d5fa952df4b5ba019dd148fda7b20e3559a37a1b0d48044a8275a4ca1", enable\_metric=\>true, periodic\_flush=\>false\>\>", :error=\>"translation missing: en.logstash.agent.configuration.invalid\_plugin\_register", :thread=\>"#\<Thread:0x421877d5 run\>"}  
[2018-11-04T10:45:39,901][ERROR][logstash.pipeline] Pipeline aborted due to error {:pipeline\_id=\>"main", :exception=\>#\<LogStash::ConfigurationError: translation missing: en.logstash.agent.configuration.invalid\_plugin\_register\>, :backtrace=\>["C:/EADIC/logstash-6.4.2/vendor/bundle/jruby/2.3.0/gems/logstash-filter-mutate-3.3.3/lib/logstash/filters/mutate.rb:219:in `block in register'", "org/jruby/RubyHash.java:1343:in`each'", "C:/EADIC/logstash-6.4.2/vendor/bundle/jruby/2.3.0/gems/logstash-filter-mutate-3.3.3/lib/logstash/filters/mutate.rb:217:in `register'", "C:/EADIC/logstash-6.4.2/logstash-core/lib/logstash/pipeline.rb:242:in`register\_plugin'", "C:/EADIC/logstash-6.4.2/logstash-core/lib/logstash/pipeline.rb:253:in `block in register_plugins'", "org/jruby/RubyArray.java:1734:in`each'", "C:/EADIC/logstash-6.4.2/logstash-core/lib/logstash/pipeline.rb:253:in `register_plugins'", "C:/EADIC/logstash-6.4.2/logstash-core/lib/logstash/pipeline.rb:595:in`maybe\_setup\_out\_plugins'", "C:/EADIC/logstash-6.4.2/logstash-core/lib/logstash/pipeline.rb:263:in `start_workers'", "C:/EADIC/logstash-6.4.2/logstash-core/lib/logstash/pipeline.rb:200:in`run'", "C:/EADIC/logstash-6.4.2/logstash-core/lib/logstash/pipeline.rb:160:in `block in start'"], :thread=\>"#\<Thread:0x421877d5 run\>"}  
[2018-11-04T10:45:39,924][ERROR][logstash.agent] Failed to execute action {:id=\>:main, :action\_type=\>LogStash::ConvergeResult::FailedAction, :message=\>"Could not execute action: PipelineAction::Create, action\_result: false", :backtrace=\>nil}  
[2018-11-04T10:45:40,304][INFO][logstash.agent] Successfully started Logstash API endpoint {:port=\>9600}

C:\EADIC\logstash-6.4.2\bin\>logstash -f c:\eadic\logstash-6.4.2\config\chicago\_crime.conf  
Sending Logstash logs to C:/EADIC/logstash-6.4.2/logs which is now configured via log4j2.properties  
[2018-11-04T10:50:44,305][WARN][logstash.config.source.multilocal] Ignoring the 'pipelines.yml' file because modules or command line options are specified  
[2018-11-04T10:50:45,359][INFO][logstash.runner] Starting Logstash {"logstash.version"=\>"6.4.2"}  
[2018-11-04T10:50:45,500][INFO][logstash.config.source.local.configpathloader] No config files found in path {:path=\>"c:/eadic/logstash-6.4.2/config/chicago\_crime.conf"}  
[2018-11-04T10:50:45,554][ERROR][logstash.config.sourceloader] No configuration found in the configured sources.  
[2018-11-04T10:50:46,270][INFO][logstash.agent] Successfully started Logstash API endpoint {:port=\>9600}

I were checking the differente otion and seems to be on this way.

The index was created only with the basic (number of shard and number of replicas).

Can you help me??? thanks  
Claudio

---

<div class="post-metadata">

### Author: ![system](https://us1.discourse-cdn.com/elastic/original/3X/1/a/1ac57faf039f6b580b3f104ef42a2a89e41014de.png) [@system](https://discuss.elastic.co/u/system)
#### Post date: [December 2, 2018, 2:02pm UTC](https://discuss.elastic.co/t/mutate-string-to-geo-point-error-logstash/155301/2 "2018-12-02T14:02:20Z")

</div>

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