Add the SuperDataset annotation to BrowserErrorLog (#5741)
This commit is contained in:
parent
78ccf71328
commit
42d8bedea9
|
|
@ -9,6 +9,7 @@ Release Notes.
|
|||
#### Java Agent
|
||||
|
||||
#### OAP-Backend
|
||||
* Add the `@SuperDataset` annotation for BrowserErrorLog.
|
||||
|
||||
#### UI
|
||||
|
||||
|
|
|
|||
|
|
@ -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";
|
||||
|
|
|
|||
Loading…
Reference in New Issue