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
Fixed#37
There is still a bug in profefe to fixprofefe/profefe#82
Now you can use:
```bash
kubectl profefe get profiles --service frontend --profile-type goroutine --from -20m
```
To get the last 20 minutes of goroutine profiles for the service
frontend.
Or you can use `--to` as well to specify when to stop the research
```bash
kubectl profefe get profiles --service auth --profile-type goroutine --from -2h --to -1h
```
It also support a fixed timerange in RFC3339 format
```bash
kubectl profefe get profiles --service query --profile-type goroutine --from "2019-10-12T07:20:50.52Z" --to "2019-10-13T07:20:50.52Z"
```
Time is converted to UTC.
Signed-off-by: Gianluca Arbezzano <gianarb92@gmail.com>
You can get the list of profiles for a particular service in a timerange with
the command:
It supports
--from
and--to
it can be a duration-30m
,-2h
or a fixedtime formatted in RFC3339.
This feature does not work as expected.
The text was updated successfully, but these errors were encountered: