[fix] input exec falcon format convert error bug

This commit is contained in:
ziv 2022-07-12 19:04:13 +08:00
parent eb25549f18
commit 21b3590507
1 changed files with 1 additions and 1 deletions

View File

@ -60,7 +60,7 @@ func (p *Parser) Parse(input []byte, slist *list.SafeList) error {
now := time.Now()
for i := 0; i < len(samples); i++ {
fv, err := conv.ToFloat64(samples[i])
fv, err := conv.ToFloat64(samples[i].Value)
if err != nil {
continue
}