2.9 KiB
Source and Scope extension for new metric
From OAL scope introduction, you should already have understood what the scope is. At here, as you want to do more extension, you need understand deeper, which is the Source.
Source and Scope are binding concepts. Scope declare the id(int) and name, Source declare the attributes. Please follow these steps to create a new Source and Scope.
- In the OAP core module, it provide SourceReceiver internal service.
public interface SourceReceiver extends Service {
void receive(Source source);
}
- All analysis data must be a org.apache.skywalking.oap.server.core.source.Source sub class,
tagged by
@SourceTypeannotation, and inorg.apache.skywalkingpackage. Then it could be supported by OAL script and OAP core.
Such as existed source, Service.
@ScopeDeclaration(id = SERVICE, name = "Service")
public class Service extends Source {
@Override public int scope() {
return DefaultScopeDefine.SERVICE;
}
@Override public String getEntityId() {
return String.valueOf(id);
}
@Getter @Setter private int id;
@Getter @Setter private String name;
@Getter @Setter private String serviceInstanceName;
@Getter @Setter private String endpointName;
@Getter @Setter private int latency;
@Getter @Setter private boolean status;
@Getter @Setter private int responseCode;
@Getter @Setter private RequestType type;
}
-
The
scope()method in Source, returns an ID, which is not a random number. This ID need to be declared through@ScopeDeclarationannotation too. The ID in@ScopeDeclarationand ID inscope()method should be same for this Source. -
The
String getEntityId()method in Source, requests the return value representing unique entity which the scope related. Such as, in this Service scope, the id is service id, representing a particular service, likeOrderservice. This value is used in OAL group mechanism. -
Add scope name as keyword to oal grammar definition file,
OALLexer.g4, which is atantlr4folder ofgenerate-tool-grammarmodule. -
Add scope name keyword as source in parser definition file,
OALParser.g4, which is at same fold ofOALLexer.g4. -
Set the default columns for new scope, at
generator-scope-meta.ymlfile ingenerated-analysis/src/main/resources. If you want to understand why need these columns, you have to understand all existing query(s). But there is an easy way, follow other existing scopes. Such as, if you are adding metric, connection number for service instance, follow existingServiceInstance.
After you done all of these, you could build a receiver, which do
- Get the original data of the metric,
- Build the source, send into
SourceReceiver. - Write your whole OAL scripts.
- Repackage the project.