Added custom field of String type in skywalking-browser-receiver-plugin #12246
Replies: 2 comments 4 replies
-
The metric is an abstract concept of the value, labeled value or single number value. It can't be a string for sure. |
Beta Was this translation helpful? Give feedback.
-
/*
package org.apache.skywalking.oap.server.receiver.browser.provider.parser.performance.listener; import lombok.Getter; /**
I made these changes that is highlighted above. Is it possible to create OAL for this? |
Beta Was this translation helpful? Give feedback.
-
Hi Team,
I am using skywalking version 9.7 in that i am trying to add field of String type and made the required changes in its dependent files.
And create a OAL Script as
browser_app_page_browser_name = from(BrowserAppPagePerf.browserName).filter(tags["browsername"] != null).map(tags["browsername"])
browser_app_page_browser_name = from(BrowserAppPagePerf.browserName);
but all the available methods are integer type is there any way to show the string, we tried map as well and without providing anything also but getting error.
Does anyone have any suggestions? Your help would be appreciated.
Beta Was this translation helpful? Give feedback.
All reactions