IsSegment indicates if the given string is recognized as a known segment.
(s string)
| 889 | |
| 890 | // IsSegment indicates if the given string is recognized as a known segment. |
| 891 | func IsSegment(s string) bool { |
| 892 | return segments[Segment(s)] |
| 893 | } |
| 894 | |
| 895 | // Pseudo fields provide access to the process/event internal state. They |
| 896 | // are typically used in conjunction with the foreach function as its |
no test coverage detected