-
Notifications
You must be signed in to change notification settings - Fork 1
test: enable skywalking plugin in e2e apisix #32
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -10,6 +10,103 @@ apisix: | |
| tcp: | ||
| - addr: 9100 | ||
|
|
||
| plugins: | ||
| - real-ip | ||
| - ai | ||
| - client-control | ||
| - proxy-control | ||
| - request-id | ||
| - zipkin | ||
| - skywalking | ||
| - ext-plugin-pre-req | ||
|
Comment on lines
+13
to
+21
|
||
| - fault-injection | ||
| - mocking | ||
| - serverless-pre-function | ||
| - cors | ||
| - ip-restriction | ||
| - ua-restriction | ||
| - referer-restriction | ||
| - csrf | ||
| - uri-blocker | ||
| - request-validation | ||
| - chaitin-waf | ||
| - multi-auth | ||
| - openid-connect | ||
| - cas-auth | ||
| - authz-casbin | ||
| - authz-casdoor | ||
| - wolf-rbac | ||
| - ldap-auth | ||
| - hmac-auth | ||
| - basic-auth | ||
| - jwt-auth | ||
| - jwe-decrypt | ||
| - key-auth | ||
| - consumer-restriction | ||
| - attach-consumer-label | ||
| - forward-auth | ||
| - opa | ||
| - authz-keycloak | ||
| - proxy-cache | ||
| - body-transformer | ||
| - ai-prompt-template | ||
| - ai-prompt-decorator | ||
| - ai-prompt-guard | ||
| - ai-rag | ||
| - ai-rate-limiting | ||
| - ai-proxy-multi | ||
| - ai-proxy | ||
| - ai-aws-content-moderation | ||
| - ai-aliyun-content-moderation | ||
| - proxy-mirror | ||
| - proxy-rewrite | ||
| - workflow | ||
| - api-breaker | ||
| - limit-conn | ||
| - limit-count | ||
| - limit-req | ||
| - gzip | ||
| - traffic-split | ||
| - redirect | ||
| - response-rewrite | ||
| - mcp-bridge | ||
| - degraphql | ||
| - kafka-proxy | ||
| - grpc-transcode | ||
| - grpc-web | ||
| - http-dubbo | ||
| - public-api | ||
| - prometheus | ||
| - datadog | ||
| - lago | ||
| - loki-logger | ||
| - elasticsearch-logger | ||
| - echo | ||
| - loggly | ||
| - http-logger | ||
| - splunk-hec-logging | ||
| - skywalking-logger | ||
| - google-cloud-logging | ||
| - sls-logger | ||
| - tcp-logger | ||
| - kafka-logger | ||
| - rocketmq-logger | ||
| - syslog | ||
| - udp-logger | ||
| - file-logger | ||
| - clickhouse-logger | ||
| - tencent-cloud-cls | ||
| - inspect | ||
| - example-plugin | ||
| - aws-lambda | ||
| - azure-functions | ||
| - openwhisk | ||
| - openfunction | ||
| - serverless-post-function | ||
| - ext-plugin-post-req | ||
| - ext-plugin-post-resp | ||
| - ai-request-rewrite | ||
|
|
||
| deployment: | ||
| admin: | ||
| allow_admin: | ||
|
|
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Nit: this file duplicates the full
pluginslist from the CI config, which is easy to forget about when updating the APISIX Docker tag. Consider adding a brief note here (or in both files) that the list is meant to track APISIX defaults plusskywalking, and should be reviewed on APISIX upgrades.