Aliaksandr Valialkin
|
1286cead75
|
app/vminsert: properly initialize InsertCtx
This should prevent from panic described at https://github.com/VictoriaMetrics/VictoriaMetrics/issues/339
|
2020-02-26 21:21:02 +02:00 |
|
Aliaksandr Valialkin
|
2471340e0d
|
app/vmagent: add ability to accept Influx line protocol data via TCP and UDP
Just set `-influxListenAddr` command-line flag
Updates https://github.com/VictoriaMetrics/VictoriaMetrics/issues/333
|
2020-02-25 19:18:01 +02:00 |
|
Aliaksandr Valialkin
|
7ee7614e90
|
app/vmagent: initial implementation for vmagent
|
2020-02-23 17:31:54 +02:00 |
|
Aliaksandr Valialkin
|
7cde594696
|
all: do not clash flag description with back-quoted flag types
See https://golang.org/pkg/flag/#PrintDefaults for more details.
|
2020-02-04 15:56:01 +02:00 |
|
Aliaksandr Valialkin
|
0cda6afa8e
|
app/vminsert: move ingestion protocol parsers to lib/protoparser, so they could be re-used in the upcoming vmagent
|
2020-01-24 16:55:18 +02:00 |
|
Aliaksandr Valialkin
|
0c304439d4
|
app/vminsert: consistency renaming for counters
|
2019-12-09 16:44:26 +02:00 |
|
Aliaksandr Valialkin
|
c217a53c35
|
make vendor-update
|
2019-12-07 23:11:26 +02:00 |
|
Aliaksandr Valialkin
|
3534e71c96
|
app/vminsert/influx: add a test case from https://community.librenms.org/t/integration-with-victoriametrics/9689
|
2019-12-07 23:00:54 +02:00 |
|
Aliaksandr Valialkin
|
1595dcd3d9
|
app/vminsert/influx: allow empty measurement in Influx line protocol
In this case metric names are mapped directly from field names without any prefixes.
|
2019-11-30 21:59:07 +02:00 |
|
Aliaksandr Valialkin
|
38711526d3
|
app/vminsert/influx: set db label only if Influx line doesnt have db tag
|
2019-08-24 13:55:01 +03:00 |
|
Aliaksandr Valialkin
|
1ee536f9fd
|
app/vminsert: skip empty tags
|
2019-08-24 13:36:41 +03:00 |
|
Aliaksandr Valialkin
|
22685ef94d
|
app/vminsert/influx: skip invalid rows and continue parsing the remaining rows
Invalid influx lines are logged and counted in `vm_rows_invalid_total{type="influx"}` metric.
|
2019-08-24 13:36:41 +03:00 |
|
Aliaksandr Valialkin
|
425a81a6c7
|
app/vminsert/influx: do not allow escaping newline char, since they dont occur in real life
The prefious report with escaped newline chars in influx line protocol was false alarm.
|
2019-08-23 18:43:00 +03:00 |
|
Aliaksandr Valialkin
|
0ea21eb9dc
|
app/vminsert/influx: handle \r\n aka crlf influx line endings from windows world
Such lines exist in real life.
|
2019-08-23 18:28:54 +03:00 |
|
Aliaksandr Valialkin
|
b3502b2b39
|
app/vminsert/influx: allow escaping newline char
Though newline char isn't mentioned in escape rules at https://docs.influxdata.com/influxdb/v1.7/write_protocols/line_protocol_tutorial/ ,
there are reports that such chars occur in real life
|
2019-08-23 15:14:58 +03:00 |
|
Aliaksandr Valialkin
|
f1f8fce4f7
|
app/vminsert/influx: skip comments starting with # in influx line protocol
|
2019-08-23 14:43:24 +03:00 |
|
Aliaksandr Valialkin
|
0697164b4f
|
app/vminsert: add ability to ingest data via HTTP OpenTSDB /api/put requests
This is manual merge of the https://github.com/VictoriaMetrics/VictoriaMetrics/pull/152
Thanks to nustinov@gmail.com for the initial pull request.
|
2019-08-22 12:46:54 +03:00 |
|
Aliaksandr Valialkin
|
8ed84a4713
|
app/vminsert/influx: round automatically generated timestamp according to the given precision arg
|
2019-08-02 00:24:39 +03:00 |
|
Aliaksandr Valialkin
|
b7089705b7
|
app/vminsert: add vm_rows_per_insert summary metric
This metric should help tuning batch sizes on clients writing data to VictoriaMetrics
|
2019-07-27 13:28:20 +03:00 |
|
Aliaksandr Valialkin
|
1fd4e9fb5c
|
app/vminsert: improve error messages for Influx, OpenTSDB and Graphite parsing
Include in the error message the line which failed to parse.
Updates https://github.com/VictoriaMetrics/VictoriaMetrics/issues/127
|
2019-07-26 22:09:21 +03:00 |
|
Jiri Tyr
|
e7a0bf1a71
|
Change the default influxMeasurementFieldSeparator
|
2019-06-26 13:22:54 +03:00 |
|
Aliaksandr Valialkin
|
d5cb9fddd8
|
app/vminsert: fix inifinite loop when reading two lines without newline in the end
Fixes https://github.com/VictoriaMetrics/VictoriaMetrics/issues/82
|
2019-06-26 02:52:56 +03:00 |
|
Aliaksandr Valialkin
|
3b16d49514
|
app/vminsert/influx: add -influxSkipSingleField flag for using {measurement} instead of {measurement}{separator}{field_name} for Influx lines with a single field
Fixes https://github.com/VictoriaMetrics/VictoriaMetrics/issues/66
|
2019-06-17 19:05:46 +03:00 |
|
Aliaksandr Valialkin
|
5f0b3589b2
|
app/vminsert/influx: add -influxMeasurementFieldSeparator flag for the ability to change separator for {measurement}{separator}{field_name} metric name
|
2019-06-14 09:57:13 +03:00 |
|
Aliaksandr Valialkin
|
8cf0a0e59c
|
app/vminsert: split vm_rows_inserted_total into per-(accountID, projectID) metrics
Fixes https://github.com/VictoriaMetrics/VictoriaMetrics/issues/59
|
2019-06-07 22:11:20 +03:00 |
|
Aliaksandr Valialkin
|
ba58af9d8c
|
app/vminsert/influx: take into account all the tags for consistent hash calculations
|
2019-06-03 22:54:21 +03:00 |
|
Aliaksandr Valialkin
|
a4ec139a4a
|
app/vminsert: reduce memory usage for Influx, Graphite and OpenTSDB protocols
Do not buffer per-connection data and just store it as it arrives
|
2019-05-28 18:47:52 +03:00 |
|
Aliaksandr Valialkin
|
15d1e15ae6
|
app/vminsert/influx: try converting string values to numeric values, since Influx agents may send numeric values as strings
Fixes https://github.com/VictoriaMetrics/VictoriaMetrics/issues/34
|
2019-05-26 22:12:55 +03:00 |
|
Aliaksandr Valialkin
|
24578b4bb1
|
all: open-sourcing cluster version
|
2019-05-23 00:25:38 +03:00 |
|
Aliaksandr Valialkin
|
1836c415e6
|
all: open-sourcing single-node version
|
2019-05-23 00:18:06 +03:00 |
|