Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
[tracecompass-dev] Problems importing simple values from CSV

Hi,

maybe off topic but I don't know where to get help for this:
I want to parse log file entries like:

1649957.48,UserValue,Id=1,Value=0
1649957.51,UserValue,Id=1,Value=41
1649957.64,UserValue,Id=2,Value=2

from a log file into a XY chart view. The XML parser file is working but I 
didn't get the XML state provider to work together with the XY view definition.

Parser looks like:
<InputLine>
<Cardinality max="2147483647" min="0"/>
<RegEx>([0-9.]*),UserValue,Id=(\d+),Value=(\d+)\S*</RegEx>
<EventType>UserValue</EventType>
<InputData action="0" format="Tm.SS" name="Timestamp" tag="TIMESTAMP"/>
<InputData action="0" format="" name="ValueId" tag="OTHER"/>
<InputData action="0" format="" name="UserValue" tag="OTHER"/>
</InputLine>

thanx,
Joerg


Back to the top