support language php (#4499)

This commit is contained in:
Mikael Schirén 2020-03-12 01:50:41 +01:00 committed by GitHub
parent cd2fb513a6
commit 09f3b26f68
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 1 deletions

View File

@ -19,5 +19,5 @@
package org.apache.skywalking.oap.server.core.query.entity;
public enum Language {
UNKNOWN, JAVA, DOTNET, NODEJS, PYTHON, RUBY, GO, LUA
UNKNOWN, JAVA, DOTNET, NODEJS, PYTHON, RUBY, GO, LUA, PHP
}

View File

@ -37,6 +37,8 @@ public enum LanguageTrans {
return Language.GO;
case "lua":
return Language.LUA;
case "php":
return Language.PHP;
default:
return Language.UNKNOWN;
}