OpenTelemetry Bot d680729c09 [chore] Prepare release 0.90.0 (#29543) пре 1 година
..
internal 41eb32eeb6 fix(deps): update github.com/grafana/loki/pkg/push digest to 658f4f1 (#29493) пре 1 година
testdata 25cbf9d2fd [receiver/loki] Added new component (#19399) пре 1 година
Makefile 25cbf9d2fd [receiver/loki] Added new component (#19399) пре 1 година
README.md ca3ebe7157 [receiver/loki] Link readme to config helpers (#26369) пре 1 година
config.go 5133f4ccd6 [chore] use license shortform (#22052) пре 1 година
config_test.go 5133f4ccd6 [chore] use license shortform (#22052) пре 1 година
factory.go 5133f4ccd6 [chore] use license shortform (#22052) пре 1 година
factory_test.go 5133f4ccd6 [chore] use license shortform (#22052) пре 1 година
go.mod d680729c09 [chore] Prepare release 0.90.0 (#29543) пре 1 година
go.sum 40b485f08a Update core for v0.90.0 release (#29539) пре 1 година
loki.go 98124e0b6d Fix panic when LogRecordCount is called after ConsumeLogs (#29274) пре 1 година
loki_test.go f4c44858b5 [all][chore] Moved from interface{} to any for all go code (#29072) пре 1 година
metadata.yaml 62c7b5363d Remove @kovrus from code owners and approvers. (#24565) пре 1 година

README.md

Loki Receiver

Status
Stability alpha: logs
Distributions contrib, sumo
Issues Open issues Closed issues
Code Owners @mar4uk, @jpkrohling

The Loki receiver implements the Loki push api as specified here. It allows Promtail instances to specify the open telemetry collector as their lokiAddress.

This receiver runs HTTP and GRPC servers to ingest log entries in Loki format.

Getting Started

The settings are:

  • endpoint (required, default = 0.0.0.0:3500 for HTTP protocol, 0.0.0.0:3600 gRPC protocol): host:port to which the receiver is going to receive data.
  • use_incoming_timestamp (optional, default = false) if set true the timestamp from Loki log entry is used

Example:

receivers:
  loki:
    protocols:
      http:
        endpoint: 0.0.0.0:3500
      grpc:
        endpoint: 0.0.0.0:3600
    use_incoming_timestamp: true

Advanced Configuration

Several helper files are leveraged to provide additional capabilities automatically: