Add the SuperDataset annotation to BrowserErrorLog (#5741)

This commit is contained in:
zhang-wei 2020-10-28 08:30:38 +08:00 committed by GitHub
parent 78ccf71328
commit 42d8bedea9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 0 deletions

View File

@ -9,6 +9,7 @@ Release Notes.
#### Java Agent
#### OAP-Backend
* Add the `@SuperDataset` annotation for BrowserErrorLog.
#### UI

View File

@ -30,8 +30,10 @@ import org.apache.skywalking.oap.server.core.analysis.worker.RecordStreamProcess
import org.apache.skywalking.oap.server.core.source.DefaultScopeDefine;
import org.apache.skywalking.oap.server.core.storage.StorageBuilder;
import org.apache.skywalking.oap.server.core.storage.annotation.Column;
import org.apache.skywalking.oap.server.core.storage.annotation.SuperDataset;
import org.apache.skywalking.oap.server.library.util.CollectionUtils;
@SuperDataset
@Stream(name = BrowserErrorLogRecord.INDEX_NAME, scopeId = DefaultScopeDefine.BROWSER_ERROR_LOG, builder = BrowserErrorLogRecord.Builder.class, processor = RecordStreamProcessor.class)
public class BrowserErrorLogRecord extends Record {
public static final String INDEX_NAME = "browser_error_log";