Vadim Gusev

Results 14 comments of Vadim Gusev

Well, copying secrets automatically doesn't impose more security risks than current manual routine. The end result is always Secret in application owner's Namespace. So I would support this approach as...

@xla last time I've had a quick look, only thing it did for me is to show count of matched entries without actually displaying any of them. It might be...

> What are examples of application-specific ways for fitlering and aggregation? For example backend application outputs its logs in JSON or similar structured but not "grep-friendly" format and exposes thigs...

@peterbourgon I think it should follow it's motto of "Prometheus for logs" and implement simple UI that allows to draw basic conclusions from query results, and not just provides filtered...

@timwebster9 I've actually commented on that issue after this discussion.

To clarify Firefox experience: not only streaming doesn't work, but simple query doesn't work either. `/store/query?&q=error` returns data correctly, I can see returned logs in Network tab of dev tools....

@JStickler I expected it to be ingested by OTLP endpoint naturally due to how it's [documented](https://grafana.com/docs/loki/latest/send-data/otel/): ``` Structured Metadata: Anything which can’t be stored in Index labels and LogLine would...

Indeed I do. The entire [Ingesting logs to Loki using OpenTelemetry Collector](https://grafana.com/docs/loki/latest/send-data/otel/) doc reads like: 1. run `otlphttp` exporter in your OTEL Collector 2. customize `otlp_config` in Loki (optional) If...

@sandeepsukhani I've moved `otlp_config` under `runtimeConfig.overrides.` and it kinda works, but not really: ```yaml otlp_config: resource_attributes: attributes_config: - action: drop attributes: - k8s.pod.name - k8s.deployment.name log_attributes: - action: drop regex:...

I have a script that consists of 3 parts: 1) `result = ...` 2) `total = ...` 3) `union(tables: [result, total])` I can compute and instantly `yield` parts 1 or...