Vector

vector - yet another logging service, working on 8686 port

Route /playground let u request to vector's graphql api

Subscriptions

Vector gives all logs without auth and u can read it with graphql subscriptions

subscription TapAllDataStreams {
  outputEventsByComponentIdPatterns(outputsPatterns: ["*"], limit: 100) {
    ... on Log {
      componentId
      componentType
      timestamp
      string(encoding: JSON)
    }
    ... on Metric {
      componentId
      name
      kind
      value
      tags {
        key
        value
      }
    }
    ... on Trace {
      componentId
      string(encoding: JSON)
    }
  }
}

with python

Last updated