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

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: