kekingcn/quarkus-logging-aliyun — explained in plain English
Analysis updated 2026-08-04 · repo last pushed 2020-09-17
Funnel logs from multiple Quarkus microservices into one searchable Alibaba Cloud log dashboard.
Adjust log levels in production without rebuilding by overriding settings at runtime.
Send only warnings and errors to Alibaba Cloud to reduce log storage costs.
| kekingcn/quarkus-logging-aliyun | abhishek-kumar09/practice-questions | davorpa/musical-surveyor-springboot-api | |
|---|---|---|---|
| Stars | 2 | 2 | 2 |
| Language | Java | Java | Java |
| Last pushed | 2020-09-17 | 2021-07-25 | 2023-09-25 |
| Maintenance | Dormant | Dormant | Dormant |
| Setup difficulty | moderate | easy | moderate |
| Complexity | 2/5 | 1/5 | 3/5 |
| Audience | developer | developer | developer |
Figures from each repo's GitHub metadata at analysis time.
Requires an Alibaba Cloud account with valid access credentials, an endpoint, and a configured log project and log store.
quarkus-logging-aliyun is a plug-in for Java applications built with the Quarkus framework that sends their log messages to Alibaba Cloud's log service (Aliyun Log). Instead of your app's logs sitting on a single server where they're hard to search and easy to lose, this extension pipes them to Alibaba's cloud platform for centralized storage and searching. To use it, a developer adds the extension to their project and fills in a handful of configuration settings in their app's properties file. Those settings include the Alibaba Cloud endpoint, access credentials, a project name, a log store name, and an optional topic. There's also a toggle to turn the whole thing on or off, and a setting to control the log level, so you can choose to send only warnings and errors, or also lower-level info messages. The audience here is teams already using Quarkus and Alibaba Cloud together. For example, a startup running several microservices on Alibaba's infrastructure could use this to funnel every service's logs into one searchable cloud dashboard, making it easier to troubleshoot problems across the whole system. The extension handles the connection to Alibaba's log producer library behind the scenes, so developers don't need to write that integration code themselves. The README is fairly sparse beyond the configuration table. It lists every setting with its type and default value but doesn't go into detail on topics like error handling, batching behavior, or performance characteristics. The configuration values are overridable at runtime, which means you can change log settings without rebuilding the application, a useful feature for adjusting log levels on the fly in production. The extension defaults to off, so it won't start sending logs anywhere until you explicitly enable it and provide valid Alibaba Cloud credentials.
A Quarkus extension that sends Java application logs to Alibaba Cloud's log service for centralized storage and searching. Just add it to your project, set your cloud credentials, and your logs flow to Alibaba's platform.
Mainly Java. The stack also includes Java, Quarkus, Alibaba Cloud Log Service.
Dormant — no commits in 2+ years (last push 2020-09-17).
The license is not mentioned in the explanation, so usage rights are unknown.
Setup difficulty is rated moderate, with roughly 30min to a first successful run.
Mainly developer.
This repo across BitVibe Labs
Verify against the repo before relying on details.