forked from apache/kyuubi
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[KYUUBI apache#6185] Audit kyuubi operation state change log
# 🔍 Description ## Issue References 🔗 We meet some issue, I want to check the operation sessionHandle and the operation timeline. I found that, it is difficult for me to check it from kyuubi log. So, In this pr, I log the operation change log into separate file. ## Describe Your Solution 🔧 Please include a summary of the change and which issue is fixed. Please also include relevant motivation and context. List any dependencies that are required for this change. ## Types of changes 🔖 - [ ] Bugfix (non-breaking change which fixes an issue) - [x] New feature (non-breaking change which adds functionality) - [ ] Breaking change (fix or feature that would cause existing functionality to change) ## Test Plan 🧪 #### Behavior Without This Pull Request ⚰️ #### Behavior With This Pull Request 🎉 #### Related Unit Tests --- # Checklist 📝 - [x] This patch was not authored or co-authored using [Generative Tooling](https://www.apache.org/legal/generative-tooling.html) **Be nice. Be informative.** Closes apache#6185 from turboFei/audit_operation. Closes apache#6185 38b0192 [Wang, Fei] op audit Lead-authored-by: Fei Wang <[email protected]> Co-authored-by: Wang, Fei <[email protected]> Signed-off-by: Cheng Pan <[email protected]>
- Loading branch information
Showing
4 changed files
with
60 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
38 changes: 38 additions & 0 deletions
38
kyuubi-common/src/main/scala/org/apache/kyuubi/operation/OperationAuditLogger.scala
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
/* | ||
* Licensed to the Apache Software Foundation (ASF) under one or more | ||
* contributor license agreements. See the NOTICE file distributed with | ||
* this work for additional information regarding copyright ownership. | ||
* The ASF licenses this file to You under the Apache License, Version 2.0 | ||
* (the "License"); you may not use this file except in compliance with | ||
* the License. You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
* See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
*/ | ||
|
||
package org.apache.kyuubi.operation | ||
|
||
import org.apache.kyuubi.Logging | ||
import org.apache.kyuubi.operation.OperationState.OperationState | ||
|
||
object OperationAuditLogger extends Logging { | ||
final private val AUDIT_BUFFER = new ThreadLocal[StringBuilder]() { | ||
override protected def initialValue: StringBuilder = new StringBuilder() | ||
} | ||
|
||
def audit(operation: Operation, state: OperationState): Unit = { | ||
val sb = AUDIT_BUFFER.get() | ||
sb.setLength(0) | ||
sb.append(s"operation=${operation.getHandle.identifier}").append("\t") | ||
sb.append(s"opType=${operation.getClass.getSimpleName}").append("\t") | ||
sb.append(s"state=$state").append("\t") | ||
sb.append(s"user=${operation.getSession.user}").append("\t") | ||
sb.append(s"session=${operation.getSession.handle.identifier}") | ||
info(sb.toString()) | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters