I'm looking to analyze network utilization data supplied by our vendor. 
 One challenge is the observed data and time are in separate fields.  

I like to combine the fields date_observed and cst_observed into a 
date/time field.  Is this possible?

Below defines that mapping I've come up with,  I get a few errors with the 
below

No handler for type [timestamp] declared on fields 

my_ts

cst_observed


{ "mappings": {
        "utilization": {
            "dynamic": "false", "properties": {
                "cst_observed": {"type": "timestamp", "copy_to": "my_ts"}
                ,"date_observed": {"type": "date", "copy_to": "my_ts"}
                ,"inbound_mbps": {"type": "float"}
                ,"inbound_percent": {"type": "float"}
                ,"ip_addr": {"type": "ip"}
                ,"outbound_mbps": {"type": "float"}
                ,"outbound_percent": {"type": "float"}
                ,"provider": {"type": "string"}
                ,"reporting_begin": {"type": "date"}
                ,"reporting_end": {"type": "date"}
                ,"speed": {"type": "float"}
                ,"my_ts":{"type": "timestamp", "format": "HH:mm:ss 
mm/dd/yyyy"}
                }
            }
        }
    }'

Thanks,

-- 
You received this message because you are subscribed to the Google Groups 
"elasticsearch" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
To view this discussion on the web visit 
https://groups.google.com/d/msgid/elasticsearch/0109138a-4f04-4f66-9ab5-2f7f85fc9a77%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to