pixie
pixie copied to clipboard
Instant Kubernetes-Native Application Observability
During a k8s node upgrade, the vizier on the Pixie staging cluster had two pems with the same asid (both were asid == 1). ┆Issue is synchronized with this [Jira...
`tcp_drop` has been inlined in Ubuntu 22.04. We should implement some kernel version check and report error messages if the kernel version doesn’t meet requirement. ┆Issue is synchronized with this...
``` import px def service_let_graph(start_time: str, end_time: str): return px.DataFrame('http_events', start_time=start_time, stop_time=end_time) end_time =px.now() px.display(service_let_graph('-5m',end_time)) ``` causes an error on line 5 which is super confusing. !image-20220615-145659.png|width=970,height=299! Instead the error...
Metadata currently resolves data based on the column name. It should probably use the semantic type of the column instead, as that is more accurate and less brittle. ┆Issue is...
``` │ time="2022-06-23T15:41:31Z" level=info msg="Could not update K8s resource" error="Service \"kelvin-service\" is invalid: metadata.resourceVersion: Invalid value: \"\": must be specified for an update" │ │ time="2022-06-23T15:41:31Z" level=info msg="Could not update...
The type of the argument for the limit node is funky. Currently we throw an incomprehensible error that the IRNode type is incorrect. `-1` gets rendered as a function type...
Scripts specify `start_time` as a `str`. This makes the system incompatible with integer times that come from `px.now()`. We should make sure that `px.Time` can be valid type. The current...
**Describe the bug** A clear and concise description of what the bug is. **To Reproduce** Steps to reproduce the behavior: I deployed a java application connecting the MySQL database in...
**Is your feature request related to a problem? Please describe.** Deployments are another type of k8s object that is mostly distinct from services and pods. Most importantly, it's possible that...
If running the `px/perf_flamegraph` script, it's possible more than 10,000 stack traces are queried. Our scripts, however, silently cap this to 10,000 rows, which results in distorted flamegraphs. The distorted...