You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
| process.pid | Process identifier (PID). |`1234`| Yes |
126
+
| process.executable_name | The name of the process executable. On Unix based systems, can be set to the `Name` in `proc/[pid]/status`. On Windows, can be set to the base name of `GetProcessImageFileNameW`. |`otelcol`| See below |
127
+
| process.executable_path | The full path to the process executable. On Unix based systems, can be set to the target of `proc/[pid]/exe`. On Windows, can be set to the result of `GetProcessImageFileNameW`. |`/usr/bin/cmd/otelcol`| See below |
128
+
| process.command | The command used to launch the process (i.e. the command name). On Unix based systems, can be set to the zeroth string in `proc/[pid]/cmdline`. On Windows, can be set to the first parameter extracted from `GetCommandLineW`. |`cmd/otelcol`| See below |
129
+
| process.commandline | The full command used to launch the process. This can be a nil- or space-delimited string. On Unix based systems, can be set to the full `proc/[pid]/cmdline` string. On Windows, can be set to the result of `GetCommandLineW`. |`cmd/otecol --config=config.yaml`| See below |
130
+
| process.owner | The username of the user that owns the process. |`root`| No |
131
+
132
+
At least one of `process.executable_name`, `process.executable_path`, `process.command`, or `process.commandline` is required.
133
+
116
134
## Deployment Service
117
135
118
136
Attributes defining a deployment service (e.g. Kubernetes).
0 commit comments