apm-server VS skywalking

Compare apm-server vs skywalking and see what are their differences.

Our great sponsors
  • ONLYOFFICE ONLYOFFICE Docs — document collaboration in your environment
  • CodiumAI - TestGPT | Generating meaningful tests for busy devs
  • InfluxDB - Access the most powerful time series database as a service
  • SonarLint - Clean code begins in your IDE with SonarLint
apm-server skywalking
2 16
1,102 21,852
1.7% 1.4%
8.8 9.7
5 days ago 5 days ago
Go Java
GNU General Public License v3.0 or later Apache License 2.0
The number of mentions indicates the total number of mentions that we've tracked plus the number of user suggested alternatives.
Stars - the number of stars that a project has on GitHub. Growth - month over month growth in stars.
Activity is a relative number indicating how actively a project is being developed. Recent commits have higher weight than older ones.
For example, an activity of 9.0 indicates that a project is amongst the top 10% of the most actively developed projects that we are tracking.

apm-server

Posts with mentions or reviews of apm-server. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2021-07-28.

skywalking

Posts with mentions or reviews of skywalking. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2023-02-03.
  • Improving Observability of Go Services
    2 projects | reddit.com/r/golang | 3 Feb 2023
  • Monitoring Microservices with Prometheus and Grafana
    9 projects | news.ycombinator.com | 9 Dec 2022
    Personally I've also used Apache Skywalking for a decent out of the box experience: https://skywalking.apache.org/

    I've also heard good things about Sentry, though if you need to self-host it, then there's a bit of complexity to deal with: https://sentry.io/welcome/

  • How to choose the right API Gateway
    15 projects | dev.to | 22 Nov 2022
    Next characteristic of a good API Gateway is effortless integration with more ecosystems. You need to check if it is integrated with other products, tools, platforms, and services. For example, you can investigate if supports several application protocols, and compatibility with third-party identity providers for authentication, and if it provides pre-built connectors that you can easily integrate with Most observability platforms like (Prometheus, Skywalking, ElasticSearch, Opentelemetry, and so on).
  • The Modern Observability Problem
    2 projects | news.ycombinator.com | 20 Nov 2022
    For me, Apache Skywalking feels "good enough", although definitely not perfect: https://skywalking.apache.org/

    The Docker Compose stack for it doesn't look as complicated as that of Sentry, it's basically an almost monolithic piece of software like Zabbix is and it works okay. The UI is reasonably sane to navigate and you have agents that you can connect with most popular languages out there.

    That said, the UI sometimes feels a bit janky, the documentation isn't exactly ideal and the community could definitely be bigger (niche language support). Also, ElasticSearch as the data store feels too resource intensive, I wonder if I could move to MySQL/MariaDB/PostgreSQL for smaller amounts of data.

    Then again, if I could make monitoring and observability someone else's problem, I'd prosper more, so it depends on your circumstances.

  • API monetization using an API Management and a billing provider
    4 projects | dev.to | 12 Sep 2022
    For example, Apache APISIX can also integrate with a variety of observability platforms like Prometheus, OpenTelemetry, Apache Skywalking and etc. by using its connector plugins 🔌 to further analyze API performance and gain complete visibility.
  • Go standard library: structured, leveled logging
    11 projects | news.ycombinator.com | 11 Sep 2022
    Technically, you can also use Skywalking for log aggregation, but personally the setup isn't as great and their log view UI is a bit awkward (e.g. it's not easy to preview all logs for a particular service/instance in a file-like view), see the demo: https://skywalking.apache.org/

    For logs in particular, Graylog feels reasonably sane, since it has a similarly "manageable" amount of components, for a configuration example see: https://docs.graylog.org/docs/docker#settings

    Contrast that to some of the more popular solutions out there, like Sentry, which gets way more complicated really quickly: https://github.com/getsentry/self-hosted/blob/master/docker-...

    For most of the people who have to deal with self-hosted setups where you might benefit from something like tracing or log shipping, actually getting the platform up and running will be an uphill battle, especially if not everyone sees the value in setting something like this up, or setting aside enough resources for it. Sometimes people will be more okay with having no idea why a system goes down randomly, rather than administering something like this constantly and learning new approaches, instead of just rotating a bunch of files.

    For others, there are no such worries, because they can open their wallets (without worrying about certain regulations and where their data can be stored, hopefully) and have some cloud provider give them a workable solution, so they just need to integrate their apps with some agent for shipping the information.

    For others yet, throwing the requirement over to some other team who's supposed to provide such platform components for them is also a possibility.

  • Show HN: Open-source APM with support for tracing, metrics, and logs
    8 projects | news.ycombinator.com | 5 Sep 2022
    This seems like a pretty cool project!

    Currently using Apache Skywalking myself, because it's reasonably simple to get up and running, as well as integrate with some of the more popular stacks: https://skywalking.apache.org/

    I do wonder how ClickHouse (which Uptrace uses) would compare with something like ElasticSearch (which is used by Skywalking and some others) and how badly/well an attempt to use something like MariaDB/MySQL/PostgreSQL for a similar workload would actually go.

  • Ask HN: Do you load test your applications? If so, how?
    4 projects | news.ycombinator.com | 28 Jun 2022
    I previously used https://k6.io/ in lieu of better options. It was great for getting up and running reasonably quickly, but also kind of had a weird JS runtime so the error messages weren't always intuitive so debugging was a pain.

    Then again, could also use anything like Apache JMeter (https://jmeter.apache.org/), Gatling (https://gatling.io/open-source/) or any other solution out there, whichever is better suited for the on-prem/cloud use case.

    That said, when time was limited and I literally didn't have the time to figure out how to test WebSocket connections and which resources the test should load, I literally cooked up a container image with Selenium (https://www.selenium.dev/) with Firefox/Chrome as a fully automated browser, for 1:1 behavior as real users would interact with the site.

    That was a horrible decision from a memory usage point of view, but an excellent one from time-saving and data quality perspectives, because the behavior was just like having 100-1000 users clicking through the site.

    Apart from that, you probably want something to aggregate the performance data of the app, be it something like Apache Skywalking (https://skywalking.apache.org/) or even Sentry (https://sentry.io/welcome/). Then you can probably ramp up the tests slowly over time in regards to how many parallel instances are generating load and see how the app reacts - the memory usage, CPU load, how many DB queries are done etc.

  • Understand your systems like never before with traces and PostgreSQL
    5 projects | news.ycombinator.com | 16 May 2022
    Haven't used it too much, but keeping an eye in this space. So far Skywalking [0] looks promising.

    [0] - https://skywalking.apache.org/

  • Common Performance Management Mistakes
    7 projects | dev.to | 21 Dec 2021
    Apache Sky Walking is a powerful, distributed performance and log analysis platform. It can monitor applications written in .NET Core, Java, PHP, Node.js, Golang, LUA, C++, and Python. It supports cloud integration and contains features like performance optimization, slow service and endpoint detection, service topology map analysis, and much more. See the feature map in the image below:

What are some alternatives?

When comparing apm-server and skywalking you can also consider the following projects:

prometheus - The Prometheus monitoring system and time series database.

jaeger - CNCF Jaeger, a Distributed Tracing Platform

signoz - SigNoz is an open-source APM. It helps developers monitor their applications & troubleshoot problems, an open-source alternative to DataDog, NewRelic, etc. 🔥 🖥. 👉 Open source Application Performance Monitoring (APM) & Observability tool

Pinpoint - APM, (Application Performance Management) tool for large-scale distributed systems.

zipkin - Zipkin is a distributed tracing system

Grafana - The open and composable observability and data visualization platform. Visualize metrics, logs, and traces from multiple sources like Prometheus, Loki, Elasticsearch, InfluxDB, Postgres and many more.

Sentry - Developer-first error tracking and performance monitoring

Glowroot - Easy to use, very low overhead, Java APM