EXPAND ALL
- Home
- About Pixie
- Installing Pixie
- Using Pixie
- Tutorials
- Reference
Creates a UPID object from asid, pid, and time started in nanoseconds. UPID stands for unique PID and is a Pixie concept to ensure tracked processes are unique in time and across nodes. Note: Creating this value from scratch might be very difficult, especially given the nanosecond timestamp. It's probably only useful if you find the UPID printed out as it's constituent components. In most situations, you might find that px.uint128
is a better option as we often render UPID as uuid.
Name | Type | Description |
---|---|---|
asid | int | The ID of the node, according to the Pixie metadata service. Stands for Agent short ID. |
pid | int | The PID of the process on the node. |
ts_ns | int | The start time of the process in unix time. |