| 63 | } |
| 64 | |
| 65 | type kunLogStatStore struct { |
| 66 | requestID string |
| 67 | triggerType string |
| 68 | runtimeID string |
| 69 | userID string |
| 70 | funcName string |
| 71 | funcBrn string |
| 72 | funcVersion string |
| 73 | maxMem int64 |
| 74 | |
| 75 | mutex sync.Mutex |
| 76 | waitg sync.WaitGroup |
| 77 | flags bits // outdone, errdone, closed |
| 78 | remain int |
| 79 | logbuf *bytes.Buffer |
| 80 | fpath string |
| 81 | logfile userlog.UserLogFile |
| 82 | } |
| 83 | |
| 84 | const ( |
| 85 | defaultUserLogLength = 4 * 1024 |
nothing calls this directly
no outgoing calls
no test coverage detected