<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title>DEV Community: OverFlow</title>
    <description>The latest articles on DEV Community by OverFlow (@leaderone23).</description>
    <link>https://dev.to/leaderone23</link>
    <image>
      <url>https://media2.dev.to/dynamic/image/width=90,height=90,fit=cover,gravity=auto,format=auto/https:%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F1282060%2Fca70e6cb-1132-49e0-b10c-040f305e2490.png</url>
      <title>DEV Community: OverFlow</title>
      <link>https://dev.to/leaderone23</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/leaderone23"/>
    <language>en</language>
    <item>
      <title>Challenges in Implementing Business Monitoring for Banking IT Systems</title>
      <dc:creator>OverFlow</dc:creator>
      <pubDate>Thu, 04 Apr 2024 03:49:59 +0000</pubDate>
      <link>https://dev.to/leaderone23/challenges-in-implementing-business-monitoring-for-banking-it-systems-3448</link>
      <guid>https://dev.to/leaderone23/challenges-in-implementing-business-monitoring-for-banking-it-systems-3448</guid>
      <description>&lt;p&gt;&lt;strong&gt;Other Languages&lt;/strong&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;&lt;a href="https://github.com/lvdeshuii/OverFlow/blob/main/docs/zh/Challenges-in-Implementing-Business-Monitoring-for-Banking-IT-Systems-zh.md" rel="noopener noreferrer"&gt;Chinese / 中文&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://github.com/lvdeshuii/OverFlow/blob/main/docs/en/Challenges-in-Implementing-Business-Monitoring-for-Banking-IT-Systems-en.md" rel="noopener noreferrer"&gt;English&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://github.com/lvdeshuii/OverFlow/blob/main/docs/es/Challenges-in-Implementing-Business-Monitoring-for-Banking-IT-Systems-es.md" rel="noopener noreferrer"&gt;Spanish / español / castellano&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://github.com/lvdeshuii/OverFlow/blob/main/docs/ja/Challenges-in-Implementing-Business-Monitoring-for-Banking-IT-Systems-ja.md" rel="noopener noreferrer"&gt;Japanese / 日本語&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://github.com/lvdeshuii/OverFlow/blob/main/docs/de/Challenges-in-Implementing-Business-Monitoring-for-Banking-IT-Systems-de.md" rel="noopener noreferrer"&gt;German / Deutsch&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://github.com/lvdeshuii/OverFlow/blob/main/docs/fr/Challenges-in-Implementing-Business-Monitoring-for-Banking-IT-Systems-fr.md" rel="noopener noreferrer"&gt;French / français&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://github.com/lvdeshuii/OverFlow/blob/main/docs/ar/Challenges-in-Implementing-Business-Monitoring-for-Banking-IT-Systems-ar.md" rel="noopener noreferrer"&gt;Arabic / al arabiya / العربية&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://github.com/lvdeshuii/OverFlow/blob/main/docs/pt/Challenges-in-Implementing-Business-Monitoring-for-Banking-IT-Systems-pt.md" rel="noopener noreferrer"&gt;Portuguese (Portugal)&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://github.com/lvdeshuii/OverFlow/blob/main/docs/ru/Challenges-in-Implementing-Business-Monitoring-for-Banking-IT-Systems-ru.md" rel="noopener noreferrer"&gt;Russian / Русский язык&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;In our previous discussion, we identified common business indicators and monitoring rules. However, several difficulties arise during implementation, primarily in the following areas:&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;1. Acquiring basic transaction information&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;To effectively monitor transactions, the system must accurately collect data for each transaction, including the request system, transaction code, important transaction flags, service system, processing node, start and end times, serial number, institution, amount, service system return code, and this system's return code, among other details. Unfortunately, many systems cannot provide complete basic information, such as the service system return code. If the production system wasn't initially designed to record this field, it's challenging to provide it. Without this data, calculating the service system transaction success rate is impossible. Additionally, all systems provide transaction detail data to the monitoring system, resulting in large data volumes that challenge the monitoring system's processing performance.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;2. Development specifications for production systems&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;Monitoring rules apply to all production systems, so standardization and normalization of production system development are essential. For example, there must be a strong dependence on the transaction code parameter. To achieve this, the transaction code parameter should include the request system, transaction code, transaction name, service system, financial flag, busy flag, and idle flag, among other details. Ideally, a single transaction code should perform only one function. For instance, transaction code A009 has non-standard functional decomposition, causing an atomic transaction code A009 program to use a sub_type-like field for functional branching internally. As a result, a single transaction code implements multiple business functions, making it difficult to clearly describe the business functionality of A009.&lt;/p&gt;

&lt;p&gt;Standardizing development code is another significant challenge. The accuracy of alarm triggers depends on the response code and log recording provided by the production system. While working on Bank X's central clearing system, the author encountered a classic response code: 201999-System error. This error typically indicates a serious system fault that the program cannot process from a technical perspective or determine the cause. However, this response code is returned approximately 800,000 times daily, resulting in an overall daily transaction success rate of less than 90%. Moreover, return codes may have multiple uses. For example, return code R00001 should signify "No record found," but developers may customize it to mean "Insufficient balance," "Card number xxx error," "Address error," or even the opposite, like "Query returned xxx records." In such cases, the return code cannot determine whether a transaction is successful. This problem becomes more pronounced in business monitoring that drills down to the transaction code level, where transaction volume is smaller, and sensitivity to return values is higher. Standardizing return codes is urgently needed.&lt;/p&gt;

&lt;p&gt;Log specifications should also include error log standardization. Accurate log monitoring alarms depend on standardized log recording; otherwise, false alarms and missed alarms may occur frequently.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;3. Setting numerous running parameters&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;If the previous challenges are addressed, operations personnel must continuously fine-tune various running parameters. Business-class monitoring requires parameter settings for each transaction code, including business success rate, system success rate, surge ratio, drop ratio, indicator deviation baseline ratio, and the number of abnormal transactions. These parameters describe the transaction code's running situation. Larger systems have many transaction codes, requiring long-term adjustment of tens of thousands of running parameters for the transaction code parameter alone. However, if parameter setting rules are established, an algorithm can be designed to automatically modify running parameters based on the baseline running situation.&lt;/p&gt;

&lt;p&gt;Designing a monitoring system is not difficult, but the challenge lies in making monitoring more relevant to the business, fully exploiting the value of business monitoring, and driving the transformation from IT maintenance to IT operations.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://mp.weixin.qq.com/s/qlvqPsz2fX0AyxMdXdVzxw" rel="noopener noreferrer"&gt;Original article&lt;/a&gt;&lt;/p&gt;




&lt;p&gt;Netis specializes in Business Performance Analysis (BPC) and Network Performance Monitoring (NPM). Each day, our transaction monitoring solutions ensure the smooth completion of over 30 billion transactions. We prioritize the security and autonomy of systems and data. Utilizing real-time analysis through network traffic mirroring, we ensure zero intrusion into business operations, without the need for any agent installations. Headquartered in Shanghai, China, Netis is a global software company renowned for its high-performance, cost-effective products. If you're interested in our offerings, please don't hesitate to reach out. We eagerly await your trial and partnership.&lt;br&gt;&lt;br&gt;
For further details, visit: &lt;a href="http://www.netis.com/en/" rel="noopener noreferrer"&gt;www.netis.com/en/&lt;/a&gt;&lt;br&gt;&lt;br&gt;
Contact me via email at: &lt;a href="mailto:dennis.li@netis.com"&gt;dennis.li@netis.com&lt;/a&gt;&lt;/p&gt;

</description>
      <category>devops</category>
    </item>
    <item>
      <title>Crafting Business Monitoring Metrics for Bank IT Systems</title>
      <dc:creator>OverFlow</dc:creator>
      <pubDate>Sun, 31 Mar 2024 01:00:18 +0000</pubDate>
      <link>https://dev.to/leaderone23/crafting-business-monitoring-metrics-for-bank-it-systems-5fmf</link>
      <guid>https://dev.to/leaderone23/crafting-business-monitoring-metrics-for-bank-it-systems-5fmf</guid>
      <description>&lt;p&gt;&lt;strong&gt;Other Languages&lt;/strong&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;&lt;a href="https://github.com/lvdeshuii/OverFlow/blob/main/docs/zh/Crafting-Business-Monitoring-Metrics-for-Bank-IT-Systems-zh.md" rel="noopener noreferrer"&gt;Chinese / 中文&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://github.com/lvdeshuii/OverFlow/blob/main/docs/en/Crafting-Business-Monitoring-Metrics-for-Bank-IT-Systems-en.md" rel="noopener noreferrer"&gt;English&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://github.com/lvdeshuii/OverFlow/blob/main/docs/es/Crafting-Business-Monitoring-Metrics-for-Bank-IT-Systems-es.md" rel="noopener noreferrer"&gt;Spanish / español / castellano&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://github.com/lvdeshuii/OverFlow/blob/main/docs/ja/Crafting-Business-Monitoring-Metrics-for-Bank-IT-Systems-ja.md" rel="noopener noreferrer"&gt;Japanese / 日本語&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://github.com/lvdeshuii/OverFlow/blob/main/docs/de/Crafting-Business-Monitoring-Metrics-for-Bank-IT-Systems-de.md" rel="noopener noreferrer"&gt;German / Deutsch&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://github.com/lvdeshuii/OverFlow/blob/main/docs/fr/Crafting-Business-Monitoring-Metrics-for-Bank-IT-Systems-fr.md" rel="noopener noreferrer"&gt;French / français&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://github.com/lvdeshuii/OverFlow/blob/main/docs/ar/Crafting-Business-Monitoring-Metrics-for-Bank-IT-Systems-ar.md" rel="noopener noreferrer"&gt;Arabic / al arabiya / العربية&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://github.com/lvdeshuii/OverFlow/blob/main/docs/pt/Crafting-Business-Monitoring-Metrics-for-Bank-IT-Systems-pt.md" rel="noopener noreferrer"&gt;Portuguese (Portugal)&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://github.com/lvdeshuii/OverFlow/blob/main/docs/ru/Crafting-Business-Monitoring-Metrics-for-Bank-IT-Systems-ru.md" rel="noopener noreferrer"&gt;Russian / Русский язык&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;As the financial sector evolves, banking services have grown in complexity alongside a diversification in information system architectures. The challenge of identifying issues through purely technical monitoring rules is escalating. There's a clear demand for business-centric monitoring strategies that are agnostic to technology architectures, focusing solely on depicting business operations. Drawing from extensive operational experience and a deep understanding of business monitoring, the author delves into the metrics and rules essential for effective business monitoring.&lt;/p&gt;

&lt;h3&gt;
  
  
  Evolution of Monitoring Practices
&lt;/h3&gt;

&lt;p&gt;&lt;strong&gt;First Stage:&lt;/strong&gt; IT operations staff manually establish monitoring metrics, rules, and parameters. A common approach involves configuring scripts within a monitoring system like Zabbix, setting up specific alarm conditions based on thresholds, where crossing these thresholds (either above or below) triggers an alert.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Second Stage:&lt;/strong&gt; Monitoring metrics and rules are standardized, with IT operations staff responsible for the upkeep of operational parameters. This stage builds upon the first by organizing and standardizing monitoring criteria to ensure broad compatibility and uniformity across various systems.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Third Stage:&lt;/strong&gt; The monitoring system autonomously determines the metrics, rules, and optimal operational parameters by analyzing both its own performance and that of the production systems, minimizing the need for manual intervention by IT staff.&lt;/p&gt;

&lt;p&gt;The focus of this discussion is the pivotal second stage, proposing a set of universal monitoring metrics and alert rules derived from operational insights into business activities.&lt;/p&gt;

&lt;h3&gt;
  
  
  Key Metrics and Alert Rules for Monitoring Banking Services
&lt;/h3&gt;

&lt;p&gt;Banking information systems are defined by their transaction codes or interfaces, characterized by return codes, transaction volumes, and response times. This guide outlines essential monitoring metrics and alert rules based on these characteristics, offering a reference for effective business monitoring.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;1. Transaction Success Rate&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;A cornerstone metric in system monitoring is the transaction success rate, essential for assessing the basic health of a system. Traditional success rate monitoring deems a transaction successful in the absence of systemic errors (e.g., network issues or file access errors). Yet, a lack of systemic errors does not guarantee the absence of business process issues. Take transaction A001, "query posting", which normally indicates "no record found". An unusual spike in postings indicates a potential issue, suggesting a need for differentiating between system success rates and business success rates. The system success rate evaluates technical failures, while the business success rate measures transaction outcomes against expected business return codes. This nuanced approach allows for more precise monitoring, moving beyond mere success rates to consider specific expected outcomes for each transaction.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fk4sfbjkma8bg5gs09zy9.jpg" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fk4sfbjkma8bg5gs09zy9.jpg" alt="Image description" width="800" height="331"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Figure 1: Transaction Success Rate Page&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;2. Service System Transaction Success Rate&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;A unique aspect of banking systems is the clear distinction between calling and service systems for each transaction. Understanding the performance of service systems is crucial for pinpointing issues. Simply determine whether a transaction invokes a service system and which one it is. Analyzing the success rates of transactions linked to a specific service system provides insight into its reliability. Further granularity, such as assessing individual transaction codes within the service system, can offer deeper diagnostic capabilities.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;3. When Nodes Go Quiet: The No-Transaction Alarm&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;In the whirlwind world of high-frequency trading, there's a clever trick: setting up an alarm for when, surprisingly, nothing happens. Imagine a bustling marketplace that suddenly goes silent. This alarm rings when a specific transaction doesn't occur within a set period at a particular node - think of it as a "missing action" alert. It's a bit like expecting a daily call from a friend and starting to worry when it doesn't come. However, figuring out when to expect the call (or transaction) isn't straightforward, as busy and quiet times vary, just like weekends and weekdays. It's about tracking every transaction's ebb and flow, picking out the ones that should be happening now. And so, we bring in the idea of "rush hours" and "down times" - for instance, marking weekdays from 8 a.m. to 7 p.m. as peak times. If transaction code A002 is buzzing all day, it's watched non-stop. But if A003 only wakes up during the rush, it gets a break during the lulls. And A004? If it barely whispers throughout the day, it's left alone, unmonitored.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;4. The Sudden Swings: Tracking Transaction Tsunamis&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;Every day, transactions flow smoothly like a river through its channel. But when the system hits a snag, this flow can turn into a flood or a drought. Spotting these drastic changes is crucial. Imagine tracking a transaction, A005, during the afternoon rush. Comparing its activity to a "normal" day, we calculate the change. If it falls within the range of typical ups and downs (let's say, 0.8 to 1.2 times the norm), all's well. But if it plunges to 0.4 or soars to 1.6, it's time to sound the alarm. This method, however, stumbles a bit with the less frequent transactions, where even minor changes can seem like big waves.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;5. Monitoring the Pulse: Tracking Abnormal Transaction Volumes&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;Diving into transaction success rates with a microscope, particularly at the granular level of individual codes, reveals a challenge: this approach doesn't play well with the extremes of low or ultra-high-frequency transactions. Picture this: low-frequency transactions end up setting off alarms like fireworks, while ultra-high-frequency ones might fly under the radar, missing the alert that trouble's brewing.&lt;/p&gt;

&lt;p&gt;Take transaction A006, bustling with 10,000 transactions in just 10 minutes, 50 of which hit a snag. That nudges the success rate down by a mere 0.5%—seemingly minor yet potentially disastrous. Meanwhile, A007 logs just two transactions in the same timeframe, but given its heavyweight financial status, even a single hiccup is hard to ignore. The solution? Tailoring alert thresholds—over 10 misfires for A006, just one for A007—based on the beat of each transaction's rhythm, efficiently sidestepping the issue. And imagine a dashboard that lays out the nitty-gritty of all transactions gone awry, from the processing node to the service system, making emergency troubleshooting a breeze.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;6. The Time Crunch: Response Time Overshoots&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;Bank systems, like any well-oiled machine, can sputter, slowing down or even stalling. Traditional monitoring might blink at response rates, but what about when delays linger just shy of the alarm threshold? Especially in high-traffic transactions, a slight delay doesn't always mean crossing the red line.&lt;/p&gt;

&lt;p&gt;Here’s a fix: keep an eye on transactions straying from the norm in response times, cycle by cycle. For instance, if A008 typically wraps up in 300ms, stretching beyond 600ms or 900ms could signal trouble. A trio of these outliers within a cycle? Time to sound the alarm.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;7. Closing the Day, Keeping the Books&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;The curtain call of a banking system's day, end-of-day processes, holds the key to a smooth opening act the next morning. Monitoring is straightforward: transactions tagged for day's end need to kick off and wrap up within set times, with a bow tied by a success signal. And when it comes to balancing the books, consistency is king—minor fluctuations in discrepancies are the green light for business as usual.&lt;/p&gt;

&lt;p&gt;That wraps up our exploration into crafting smart, sensitive business monitoring tools. Stay tuned for a peek behind the curtain at the tech challenges that come with bringing these concepts to life.&lt;/p&gt;

&lt;p&gt;Original article link: &lt;a href="https://mp.weixin.qq.com/s/qlvqPsz2fX0AyxMdXdVzxw" rel="noopener noreferrer"&gt;https://mp.weixin.qq.com/s/qlvqPsz2fX0AyxMdXdVzxw&lt;/a&gt;&lt;/p&gt;




&lt;p&gt;Netis specializes in Business Performance Analysis (BPC) and Network Performance Monitoring (NPM). Each day, our transaction monitoring solutions ensure the smooth completion of over 30 billion transactions. We prioritize the security and autonomy of systems and data. Utilizing real-time analysis through network traffic mirroring, we ensure zero intrusion into business operations, without the need for any agent installations. Headquartered in Shanghai, China, Netis is a global software company renowned for its high-performance, cost-effective products. If you're interested in our offerings, please don't hesitate to reach out. We eagerly await your trial and partnership.&lt;br&gt;&lt;br&gt;
For further details, visit: &lt;a href="http://www.netis.com/en/" rel="noopener noreferrer"&gt;www.netis.com/en/&lt;/a&gt;&lt;br&gt;&lt;br&gt;
Contact me via email at: &lt;a href="mailto:dennis.li@netis.com"&gt;dennis.li@netis.com&lt;/a&gt;&lt;/p&gt;

</description>
      <category>bankingtechnology</category>
    </item>
    <item>
      <title>High-Frequency Trading System Monitoring</title>
      <dc:creator>OverFlow</dc:creator>
      <pubDate>Sat, 23 Mar 2024 04:57:50 +0000</pubDate>
      <link>https://dev.to/leaderone23/high-frequency-trading-system-monitoring-jl6</link>
      <guid>https://dev.to/leaderone23/high-frequency-trading-system-monitoring-jl6</guid>
      <description>&lt;p&gt;&lt;strong&gt;Other Languages&lt;/strong&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;&lt;a href="https://github.com/lvdeshuii/OverFlow/blob/main/docs/zh/High-frequency-Trading-System-Monitoring-zh.md" rel="noopener noreferrer"&gt;Chinese / 中文&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://github.com/lvdeshuii/OverFlow/blob/main/docs/en/High-frequency-Trading-System-Monitoring-en.md" rel="noopener noreferrer"&gt;English&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://github.com/lvdeshuii/OverFlow/blob/main/docs/es/High-frequency-Trading-System-Monitoring-es.md" rel="noopener noreferrer"&gt;Spanish / español / castellano&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://github.com/lvdeshuii/OverFlow/blob/main/docs/ja/High-frequency-Trading-System-Monitoring-ja.md" rel="noopener noreferrer"&gt;Japanese / 日本語&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://github.com/lvdeshuii/OverFlow/blob/main/docs/de/High-frequency-Trading-System-Monitoring-de.md" rel="noopener noreferrer"&gt;German / Deutsch&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://github.com/lvdeshuii/OverFlow/blob/main/docs/fr/High-frequency-Trading-System-Monitoring-fr.md" rel="noopener noreferrer"&gt;French / français&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://github.com/lvdeshuii/OverFlow/blob/main/docs/ar/High-frequency-Trading-System-Monitoring-ar.md" rel="noopener noreferrer"&gt;Arabic / al arabiya / العربية&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://github.com/lvdeshuii/OverFlow/blob/main/docs/pt/High-frequency-Trading-System-Monitoring-pt.md" rel="noopener noreferrer"&gt;Portuguese (Portugal)&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://github.com/lvdeshuii/OverFlow/blob/main/docs/ru/High-frequency-Trading-System-Monitoring-ru.md" rel="noopener noreferrer"&gt;Russian / Русский язык&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;In the evolution of trading systems, traders have consistently sought speed. With the growing popularity of quantitative trading, the demand for lightning-fast systems has only increased.&lt;/p&gt;

&lt;h3&gt;
  
  
  Challenges in Monitoring High-Frequency Trading Systems
&lt;/h3&gt;

&lt;p&gt;The advent of high-frequency trading systems has significantly increased the complexity of application operations and maintenance management, demanding unprecedented accuracy, performance, and stability from monitoring tools.&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Nanosecond-level monitoring precision required: High-frequency trading necessitates the rapid processing of orders and low-latency market feedback, with transaction processing speeds typically in the microsecond range. Traditional monitoring tools fall short of achieving microsecond or even nanosecond precision, unable to keep up with the high-speed demands of high-frequency trading systems.&lt;/li&gt;
&lt;li&gt;Need for specialized protocol decoding: Traditional monitoring tools lack the comprehensive decoding capabilities needed to fully support the automatic decoding of mainstream high-frequency trading systems.&lt;/li&gt;
&lt;li&gt;Minimizing impact on system performance: Traditional tools that log or insert code consume significant system resources, compromising stability and failing to offer precise monitoring of high-frequency trading systems.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Thus, application operation and maintenance teams require monitoring tools that are high in precision and performance, with robust decoding capabilities. Such tools can outpace high-frequency trading itself, tackling issues like difficult troubleshooting, pinpointing problems, and complex analysis to ensure the seamless operation of high-frequency trading systems.&lt;/p&gt;

&lt;h3&gt;
  
  
  BPC High-Frequency Trading Edition
&lt;/h3&gt;

&lt;p&gt;For years, Netis BPC has been pivotal in ensuring operational continuity for clients in the securities sector. By capturing network traffic via bypass deployment, Netis BPC delivers essential features like four key indicators, intelligent alerts, individual transaction tracking, and multi-dimensional statistical analysis. The upgraded "BPC High-Frequency Trading Edition" introduces nanosecond-level monitoring, offering comprehensive maintenance support for high-frequency trading systems.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Nanosecond Timestamp Technology&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;The core challenge for high-frequency trading systems lies in managing penetration, uplink, and full-path latencies, mostly measured in microseconds. This necessitates monitoring solutions capable of nanosecond precision. The "BPC High-Frequency Trading Edition" elevates precision from microseconds to nanoseconds, allowing for the swift calculation of time spent on each trading segment and across the entire chain. With accurate latency measurements, it immediately alerts users to any significant order delays, pinpointing issues with features like latency-thruput correlation and one-click tracking.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;A Business-Centric Monitoring Approach&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;"BPC High-Frequency Trading Edition" intelligently maps out the logical relationships between systems following actual business processes, offering a service-oriented perspective. It uses service path diagrams for real-time monitoring of core middleware and exchange components, providing essential metrics such as volume, response times, rates, and success rates, enabling quick issue resolution.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fwww.netis.com%2Fwp-content%2Fuploads%2F2022%2F05%2F%25E6%2599%25BA%25E8%2583%25BD%25E6%2595%2585%25E9%259A%259C%25E5%2591%258A%25E8%25AD%25A6-scaled.jpg" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fwww.netis.com%2Fwp-content%2Fuploads%2F2022%2F05%2F%25E6%2599%25BA%25E8%2583%25BD%25E6%2595%2585%25E9%259A%259C%25E5%2591%258A%25E8%25AD%25A6-scaled.jpg" alt="%E6%99%BA%E8%83%BD%E6%95%85%E9%9A%9C%E5%91%8A%E8%AD%A6-scaled.jpg" width="800" height="400"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;em&gt;Figure 1: Service Path View&lt;/em&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Multi-Segment Transaction Tracking&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;This feature smartly associates data from individual orders across the trading chain and key nodes. With just a click, users can analyze the processing times of each order at various nodes.&lt;/p&gt;

&lt;p&gt;"BPC High-Frequency Trading Edition" comprehensively analyzes order requests, internal responses, and exchange response messages for high-frequency trades. Utilizing high-precision timestamps from high-performance network cards, it calculates comprehensive metrics like full-chain and middleware processing times, aiding in detailed analysis and allowing for the flexible creation of securities monitoring views adjusted to the second.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fmmbiz.qpic.cn%2Fmmbiz_jpg%2Fo672k3fsicq19VyEficPiaZ2k9iaJhBWWYicHSHVWKyCm89sMW99ER72MfE1GBUsmQob7o6hmpjQvUD3BrDsFV33zlQ%2F640%3Fwx_fmt%3Djpeg%26tp%3Dwebp%26wxfrom%3D5%26wx_lazy%3D1%26wx_co%3D1" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fmmbiz.qpic.cn%2Fmmbiz_jpg%2Fo672k3fsicq19VyEficPiaZ2k9iaJhBWWYicHSHVWKyCm89sMW99ER72MfE1GBUsmQob7o6hmpjQvUD3BrDsFV33zlQ%2F640%3Fwx_fmt%3Djpeg%26tp%3Dwebp%26wxfrom%3D5%26wx_lazy%3D1%26wx_co%3D1" alt="图片" width="800" height="441"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;em&gt;Figure 2: Multi-Segment Transaction Tracking Feature&lt;/em&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Full Support for Mainstream High-Frequency Trading Systems for Immediate Monitoring&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;Leveraging Netis's leading decoding capabilities, "BPC High-Frequency Trading Edition" now fully supports major high-frequency trading platforms such as Hengsheng, Huarui, and Dingdian, along with exchange multicast systems like SSE and SZSE, and private market data systems. BPC's adaptable decoding supports quick integration with third-party protocols, facilitating instant deployment and monitoring.&lt;/p&gt;




&lt;p&gt;Netis specializes in Business Performance Analysis (BPC) and Network Performance Monitoring (NPM). Each day, our transaction monitoring solutions ensure the smooth completion of over 30 billion transactions. We prioritize the security and autonomy of systems and data. Utilizing real-time analysis through network traffic mirroring, we ensure zero intrusion into business operations, without the need for any agent installations. Headquartered in Shanghai, China, Netis is a global software company renowned for its high-performance, cost-effective products. If you're interested in our offerings, please don't hesitate to reach out. We eagerly await your trial and partnership.&lt;br&gt;&lt;br&gt;
For further details, visit: &lt;a href="http://www.netis.com/en/" rel="noopener noreferrer"&gt;www.netis.com/en/&lt;/a&gt;&lt;br&gt;&lt;br&gt;
Contact me via email at: &lt;a href="mailto:dennis.li@netis.com"&gt;dennis.li@netis.com&lt;/a&gt;&lt;/p&gt;

</description>
      <category>monitoring</category>
    </item>
    <item>
      <title>How to Gracefully Implement Business Performance Monitoring</title>
      <dc:creator>OverFlow</dc:creator>
      <pubDate>Sat, 16 Mar 2024 12:51:24 +0000</pubDate>
      <link>https://dev.to/leaderone23/how-to-gracefully-implement-business-performance-monitoring-5hco</link>
      <guid>https://dev.to/leaderone23/how-to-gracefully-implement-business-performance-monitoring-5hco</guid>
      <description>&lt;p&gt;&lt;strong&gt;Other Languages&lt;/strong&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;&lt;a href="https://github.com/lvdeshuii/OverFlow/blob/main/docs/zh/How-to-Gracefully-Implement-Business-Performance-Monitoring-zh.md" rel="noopener noreferrer"&gt;Chinese / 中文&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://github.com/lvdeshuii/OverFlow/blob/main/docs/en/How-to-Gracefully-Implement-Business-Performance-Monitoring-en.md" rel="noopener noreferrer"&gt;English&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://github.com/lvdeshuii/OverFlow/blob/main/docs/es/How-to-Gracefully-Implement-Business-Performance-Monitoring-es.md" rel="noopener noreferrer"&gt;Spanish / español / castellano&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://github.com/lvdeshuii/OverFlow/blob/main/docs/ja/How-to-Gracefully-Implement-Business-Performance-Monitoring-ja.md" rel="noopener noreferrer"&gt;Japanese / 日本語&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://github.com/lvdeshuii/OverFlow/blob/main/docs/de/How-to-Gracefully-Implement-Business-Performance-Monitoring-de.md" rel="noopener noreferrer"&gt;German / Deutsch&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://github.com/lvdeshuii/OverFlow/blob/main/docs/fr/How-to-Gracefully-Implement-Business-Performance-Monitoring-fr.md" rel="noopener noreferrer"&gt;French / français&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://github.com/lvdeshuii/OverFlow/blob/main/docs/ar/How-to-Gracefully-Implement-Business-Performance-Monitoring-ar.md" rel="noopener noreferrer"&gt;Arabic / al arabiya / العربية&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://github.com/lvdeshuii/OverFlow/blob/main/docs/pt/How-to-Gracefully-Implement-Business-Performance-Monitoring-pt.md" rel="noopener noreferrer"&gt;Portuguese (Portugal)&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://github.com/lvdeshuii/OverFlow/blob/main/docs/ru/How-to-Gracefully-Implement-Business-Performance-Monitoring-ru.md" rel="noopener noreferrer"&gt;Russian / Русский язык&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;In an era overflowing with monitoring tools, how can we streamline the complexity and assist users in gracefully implementing business performance monitoring?&lt;/p&gt;

&lt;h3&gt;
  
  
  &lt;strong&gt;1. A Business-Centric Monitoring Perspective&lt;/strong&gt;
&lt;/h3&gt;

&lt;p&gt;Considering the disparities between monitoring metrics and intentions, application performance monitoring (APM) solutions offer varied alerting logics, broadly categorized into two types: "Bottom-up" alerting involves establishing alerts based on packet headers and other foundational data, then ascending to app and service utilization levels, ultimately identifying anomalies such as DNS errors or slow response times. On the flip side, "Top-down" alerting monitors business application nodes and select network nodes, setting alerts for high-level aggregated data. This approach starts with overarching business challenges and delves into underlying data. Due to the high false alarm rate and troubleshooting challenges of bottom-up data, it's not only time-consuming but also less precise. Conversely, top-down alerting can swiftly trigger alerts at the first sign of system or service failures, a crucial feature within a business-focused operational framework.&lt;br&gt;
&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fnxk2kn07ez5wj4uciypo.jpg" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fnxk2kn07ez5wj4uciypo.jpg" alt="002316seeudyfefdc8nldk.jpg" width="358" height="247"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;em&gt;Figure 1: Knowledge Hierarchy Diagram&lt;/em&gt;&lt;/p&gt;

&lt;p&gt;Netis BPC employs a "top-down" monitoring strategy, offering end-to-end coverage that enables a comprehensive view from the macro to the micro. By centering on business needs and bridging the divide between operations and management, it ensures unified monitoring and business perspectives, greatly enhancing the precision and clarity of alert analysis.&lt;/p&gt;

&lt;h3&gt;
  
  
  &lt;strong&gt;2. Designing with the User in Mind&lt;/strong&gt;
&lt;/h3&gt;

&lt;p&gt;Imagine using piano keys to track time and a simple four-quadrant grid to display crucial business metrics. This innovative approach sits at the heart of Netis BPC's design ethos.&lt;br&gt;
&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fmmbiz.qpic.cn%2Fmmbiz_gif%2Fo672k3fsicq0zib9UrUva92PkicX1HbHqyo1rZQMYRmK4Yfiambegqu7bWA3usmGboVBg1Ziav7DHAmztEEPeSWuh7Q%2F640%3Fwx_fmt%3Dgif%26wxfrom%3D5%26wx_lazy%3D1" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fmmbiz.qpic.cn%2Fmmbiz_gif%2Fo672k3fsicq0zib9UrUva92PkicX1HbHqyo1rZQMYRmK4Yfiambegqu7bWA3usmGboVBg1Ziav7DHAmztEEPeSWuh7Q%2F640%3Fwx_fmt%3Dgif%26wxfrom%3D5%26wx_lazy%3D1" alt="图片" width="800" height="369"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;em&gt;Figure 2: How piano keys and a four-quadrant grid play a role in Netis BPC's alert system and troubleshooting.&lt;/em&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Why is each minute represented by a piano key?&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;Netis BPC uses piano keys as a metaphor for time to give users a real-time sense of their business operations in a way that turns repetitive and stressful tasks into a more enjoyable experience. Each minute is a key on this timeline piano, with different colors conveying various states of business health. Interacting with these keys, users can "play" through their data, zooming in on specific moments with a mouse hover, much like enlarging a key under a pianist's finger. This attention to detail ensures users can easily and precisely access the information they need.&lt;/p&gt;

&lt;p&gt;Furthermore, the choice of minute-level alerts strikes a balance between promptness and practicality. From extensive experience with financial clients, Netis learned that too detailed an alert system overwhelms with repetition, while too broad a system risks delays and oversights. Thus, setting alerts to minute intervals—each piano key—was a deliberate choice for efficiency and effectiveness.&lt;/p&gt;

&lt;p&gt;However, minute granularity doesn't fit every scenario. For instance, in stock trading, where the pace is faster and stakes higher, even seconds matter. A transaction delay of more than 10ms or 10 specific events within a second can trigger alerts in this high-speed context. Thus, Netis BPC also offers second-level alerting, a faster, more sensitive detection system tailored for such critical needs.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Displaying the Golden Signals&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;Netis has distilled the essence of business monitoring into four golden signals: transaction volume mirrors application load, response rate echoes system health, success rate reflects business well-being, and transaction response time inversely indicates customer satisfaction. This revelation came from analyzing and comparing industry metrics like the Four Golden Signals, RED, and USE, tailoring them specifically for the financial sector's unique needs.&lt;/p&gt;

&lt;p&gt;But how do you make these critical indicators clear and engaging for users? Netis's breakthrough came from marrying thorough analysis with creative design, resulting in the pioneering four-quadrant grid.&lt;/p&gt;

&lt;p&gt;This design leap was inspired during a visit to New York's Museum of Modern Art by Netis co-founder &amp;amp; Chief Product Officer, Wizard. A piece showcasing America's geography and population through a clear, grid-based diagram sparked the idea. It showed that the power of information lies not in its volume but in the precision of its presentation. From highway signs to information guideboards, clarity reigns supreme. This insight, coupled with the need for quick, clear alert information in IT, birthed the iconic four-quadrant grid.&lt;br&gt;
&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fmmbiz.qpic.cn%2Fmmbiz_jpg%2Fo672k3fsicq0zib9UrUva92PkicX1HbHqyo8icuiaU00eVBRmcY23lm9lq2fzViaRNFP7DiaiccI3GpszkEpyQFMf4TEQw%2F640%3Fwx_fmt%3Djpeg%26wxfrom%3D5%26wx_lazy%3D1%26wx_co%3D1" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fmmbiz.qpic.cn%2Fmmbiz_jpg%2Fo672k3fsicq0zib9UrUva92PkicX1HbHqyo8icuiaU00eVBRmcY23lm9lq2fzViaRNFP7DiaiccI3GpszkEpyQFMf4TEQw%2F640%3Fwx_fmt%3Djpeg%26wxfrom%3D5%26wx_lazy%3D1%26wx_co%3D1" alt="图片" width="596" height="446"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;em&gt;Figure 3: New York's Museum of Modern Art's classic four-quadrant grid:&lt;/em&gt;&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fmmbiz.qpic.cn%2Fmmbiz_gif%2Fo672k3fsicq0zib9UrUva92PkicX1HbHqyoVNumuLZRlcb00S7bS3dP9oicnycxmmwSAGrvAukAunwnB6HePm1FFUg%2F640%3Fwx_fmt%3Dgif%26wxfrom%3D5%26wx_lazy%3D1" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fmmbiz.qpic.cn%2Fmmbiz_gif%2Fo672k3fsicq0zib9UrUva92PkicX1HbHqyoVNumuLZRlcb00S7bS3dP9oicnycxmmwSAGrvAukAunwnB6HePm1FFUg%2F640%3Fwx_fmt%3Dgif%26wxfrom%3D5%26wx_lazy%3D1" alt="图片" width="252" height="189"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;em&gt;Figure 4: Netis BPC's signature four-quadrant grid:&lt;/em&gt;&lt;/p&gt;

&lt;p&gt;At its core, BPC's product philosophy is about deeply understanding user needs and designing solutions that meet those needs precisely. By embedding the users' perspective into the design, notably with the piano keys and the four-quadrant grid, Netis champions a user and service-centered approach. This philosophy not only addresses user pain points but also bridges the gap between product functionality and user value.&lt;/p&gt;




&lt;p&gt;Netis specializes in Business Performance Analysis (BPC) and Network Performance Monitoring (NPM). Each day, our transaction monitoring solutions ensure the smooth completion of over 30 billion transactions. We prioritize the security and autonomy of systems and data. Utilizing real-time analysis through network traffic mirroring, we ensure zero intrusion into business operations, without the need for any agent installations. Headquartered in Shanghai, China, Netis is a global software company renowned for its high-performance, cost-effective products. If you're interested in our offerings, please don't hesitate to reach out. We eagerly await your trial and partnership.&lt;br&gt;&lt;br&gt;
For further details, visit: &lt;a href="http://www.netis.com/en/" rel="noopener noreferrer"&gt;www.netis.com/en/&lt;/a&gt;&lt;br&gt;&lt;br&gt;
Contact me via email at: &lt;a href="mailto:dennis.li@netis.com"&gt;dennis.li@netis.com&lt;/a&gt;&lt;/p&gt;

</description>
      <category>apm</category>
      <category>opentelemetry</category>
    </item>
    <item>
      <title>Cloud Network Traffic Collection and Analysis White Paper (2022)</title>
      <dc:creator>OverFlow</dc:creator>
      <pubDate>Sat, 02 Mar 2024 07:32:55 +0000</pubDate>
      <link>https://dev.to/leaderone23/cloud-network-traffic-collection-and-analysis-white-paper-2022-7bf</link>
      <guid>https://dev.to/leaderone23/cloud-network-traffic-collection-and-analysis-white-paper-2022-7bf</guid>
      <description>&lt;p&gt;&lt;strong&gt;Other Languages&lt;/strong&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;&lt;a href="https://github.com/lvdeshuii/OverFlow/blob/main/docs/zh/Cloud-Network-Traffic-Collection-and-Analysis-White-Paper-zh.md" rel="noopener noreferrer"&gt;Chinese / 中文&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://github.com/lvdeshuii/OverFlow/blob/main/docs/en/Cloud-Network-Traffic-Collection-and-Analysis-White-Paper-en.md" rel="noopener noreferrer"&gt;English&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://github.com/lvdeshuii/OverFlow/blob/main/docs/es/Cloud-Network-Traffic-Collection-and-Analysis-White-Paper-es.md" rel="noopener noreferrer"&gt;Spanish / español / castellano&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://github.com/lvdeshuii/OverFlow/blob/main/docs/ja/Cloud-Network-Traffic-Collection-and-Analysis-White-Paper-ja.md" rel="noopener noreferrer"&gt;Japanese / 日本語&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://github.com/lvdeshuii/OverFlow/blob/main/docs/de/Cloud-Network-Traffic-Collection-and-Analysis-White-Paper-de.md" rel="noopener noreferrer"&gt;German / Deutsch&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://github.com/lvdeshuii/OverFlow/blob/main/docs/fr/Cloud-Network-Traffic-Collection-and-Analysis-White-Paper-fr.md" rel="noopener noreferrer"&gt;French / français&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://github.com/lvdeshuii/OverFlow/blob/main/docs/ar/Cloud-Network-Traffic-Collection-and-Analysis-White-Paper-ar.md" rel="noopener noreferrer"&gt;Arabic / al arabiya / العربية&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://github.com/lvdeshuii/OverFlow/blob/main/docs/pt/Cloud-Network-Traffic-Collection-and-Analysis-White-Paper-pt.md" rel="noopener noreferrer"&gt;Portuguese (Portugal)&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://github.com/lvdeshuii/OverFlow/blob/main/docs/ru/Cloud-Network-Traffic-Collection-and-Analysis-White-Paper-ru.md" rel="noopener noreferrer"&gt;Russian / Русский язык&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;IDC's recent study forecasts that in the upcoming two years, a majority of companies will lean towards hybrid and multi-cloud strategies to develop their cloud-native platforms. As businesses expand their cloud-based activities, the internal (east-west) traffic has unexpectedly skyrocketed, posing a significant challenge: how to precisely collect and manage this data flow. In light of this, Gartner advises: "IT leaders should revamp their traffic management strategies, enhancing visibility within hybrid environments to bolster future performance tracking and control."&lt;/p&gt;

&lt;p&gt;Netis posits that analyzing cloud network traffic observability is a key strategy for improving performance management in both cloud-native and hybrid settings. Utilizing advanced, comprehensive, and non-invasive techniques for data collection and processing, organizations can achieve a detailed view of their cloud network traffic across various setups and frameworks, leading to total network transparency. To aid companies in navigating these hurdles, Netis presents the "Cloud Network Traffic Collection and Analysis White Paper (2022)." This guide is organized into six main sections: the challenges presented by the cloud era, the benefits of cloud network traffic observability, frameworks and technologies for data collection and analysis, practical deployment strategies, examples from typical scenarios, and best practices across industries. This comprehensive approach aims to furnish every sector with the most effective cloud migration strategies.&lt;/p&gt;

&lt;p&gt;The white paper highlights the following key insights:&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;1. Key Capabilities&lt;/strong&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Versatility Across Environments:&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Comprehensive support for various settings: compatible with leading operating systems, chipsets, and both virtualized and containerized frameworks.&lt;/p&gt;

&lt;p&gt;Microservice Compatibility: Adaptable to a range of deployment models within a microservice architecture, alongside support for diverse container runtimes.&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Broad Skill Set:&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Packet Handling: Facilitates key operations on data packets, including collection, filtering, distribution, trimming, and eliminating duplicates.&lt;/p&gt;

&lt;p&gt;Flow and Telemetry: Essential for cloud network traffic visualization, this involves preprocessing collected raw data packets, generating Flow logs, and enabling Telemetry functionalities.&lt;/p&gt;

&lt;p&gt;Data Packet Tagging: Allows for the tagging of collected raw data packets, integrating details from business, network, and security contexts directly into the data.&lt;/p&gt;

&lt;p&gt;Reliable TCP Transfers: Utilizes TCP protocol for the secure and dependable transmission of collected data packets.&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;&lt;p&gt;Non-intrusive Operations: Designed to be minimally invasive, it requires no alterations to existing business processes.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Autonomy in Management: Encompasses integration with management platforms, real-time status updates on collectors, self-monitoring, automatic problem resolution, and comprehensive visualization capabilities.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Scalable Architecture: Supports seamless scaling to adapt to changing demands.&lt;/p&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;strong&gt;2. Key Technologies&lt;/strong&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Collection Technologies:&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Application Scenarios: Classified into major categories such as public and private clouds from the application standpoint; from a technical angle, broken down into VMs and container technologies.&lt;/p&gt;

&lt;p&gt;Capabilities: Initially, traffic collection must span diverse scenarios with specific collection strategies tailored for each. Furthermore, in mixed environments, layered traffic collection requires integration into a singular management platform.&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;&lt;p&gt;Layered Approach/vTAP: Netis advocates for a comprehensive approach in cloud traffic management, encapsulating layered collection, processing, refinement, and management. This strategy is vital to maintain granularity and overall observability amidst vast arrays of managed objects and substantial traffic.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Fundamental Collection Techniques: Given the cloud's intricate and varied base layer, selecting the ideal collection technology tailored to distinct environments is crucial for maximizing performance and efficiency.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Support for Autonomous Environments: Cloud network traffic and observability analysis should cater to self-sufficient servers, including those running on ARM architecture or bespoke operating systems.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Enhanced Flow Support: Implementing detailed Flow analytics tailored to specific consumer scenarios across networks, applications, and security can significantly address the balance between value and cloud network expenditures.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Advanced Telemetry: Integrating Open Telemetry features enhances observability capabilities while concurrently minimizing the resource footprint on cloud network traffic.&lt;/p&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;strong&gt;3. Deployment Strategies&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;This section outlines five key strategies: comprehensive collector setup, host-based traffic gathering, virtual machine traffic monitoring, containerized environment data collection, and vTAP segmentation. The white paper provides a thorough breakdown of each strategy.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;4. Key Use Cases&lt;/strong&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Security Monitoring: Effective cloud network traffic systems are crucial for precise, real-time monitoring of internal cloud service traffic.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Situational Awareness: In the era of cloud integration, understanding the security landscape within business processes is critical. This demands accurate cloud traffic analyses supported by foundational security mechanisms.&lt;/p&gt;

&lt;p&gt;Enhanced Security Compliance (Level Protection 2.0): Ensuring high-level security standards such as Level Protection 2.0 necessitates comprehensive cloud network traffic oversight.&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;&lt;p&gt;Business and Application Monitoring (BPM/APM): Netis highlights how BPM, aided by network traffic insights, swiftly pinpoints user experience issues. Coupled with APM’s in-depth application analysis, this offers a holistic approach to cloud observability.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Network Performance Monitoring and Diagnostics (NPMD): Cloud monitoring diverges from traditional methods, incorporating elements like Availability Zones (AZ), Virtual Private Clouds (VPC), and services. This entails advanced capabilities in cloud structure analysis and in-depth, multi-tiered session tracking.&lt;/p&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Cloud Structure Insights: Understanding cloud network architecture requires robust monitoring, supported by specialized cloud traffic collection and tagging techniques, to navigate the cloud's dynamic nature and prevent data bottlenecks.&lt;/p&gt;

&lt;p&gt;In-depth Network Tracking: Detailed session tracking in cloud networks demands sophisticated collection and tagging techniques to follow traffic through multiple layers.&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Database Management and Security: The advent of distributed architectures necessitates a new approach to database monitoring. Frequent interactions between data and access nodes heighten the risk of issues. Opting for cloud traffic observability for distributed database oversight offers a superior solution.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;a href="https://open.netis.com/datacenter/white-papers/%E5%A4%A9%E6%97%A6%E4%BA%91%E7%BD%91%E6%B5%81%E9%87%8F%E9%87%87%E9%9B%86%E5%88%86%E6%9E%90%E7%99%BD%E7%9A%AE%E4%B9%A6%EF%BC%882022%EF%BC%89" rel="noopener noreferrer"&gt;&lt;strong&gt;Download Here&lt;/strong&gt;&lt;/a&gt;&lt;/p&gt;




&lt;p&gt;Netis specializes in Business Performance Analysis (BPC) and Network Performance Monitoring (NPM). Each day, our transaction monitoring solutions ensure the smooth completion of over 30 billion transactions. We prioritize the security and autonomy of systems and data. Utilizing real-time analysis through network traffic mirroring, we ensure zero intrusion into business operations, without the need for any agent installations. Headquartered in Shanghai, China, Netis is a global software company renowned for its high-performance, cost-effective products. If you're interested in our offerings, please don't hesitate to reach out. We eagerly await your trial and partnership.&lt;br&gt;&lt;br&gt;
For further details, visit: &lt;a href="http://www.netis.com/en/" rel="noopener noreferrer"&gt;www.netis.com/en/&lt;/a&gt;&lt;br&gt;&lt;br&gt;
Contact me via email at: &lt;a href="mailto:dennis.li@netis.com"&gt;dennis.li@netis.com&lt;/a&gt;&lt;/p&gt;

</description>
      <category>networking</category>
    </item>
    <item>
      <title>Netis NPM Empowers Customers' IPv6 Upgrade</title>
      <dc:creator>OverFlow</dc:creator>
      <pubDate>Sun, 25 Feb 2024 06:20:59 +0000</pubDate>
      <link>https://dev.to/leaderone23/netis-npm-empowers-customers-ipv6-upgrade-58gg</link>
      <guid>https://dev.to/leaderone23/netis-npm-empowers-customers-ipv6-upgrade-58gg</guid>
      <description>&lt;h1&gt;
  
  
  Netis NPM Empowers Customers' IPv6 Upgrade
&lt;/h1&gt;

&lt;p&gt;&lt;strong&gt;Other Languages&lt;/strong&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;&lt;a href="https://github.com/lvdeshuii/OverFlow/blob/main/docs/zh/Netis-NPM-Empowers-Customers-IPv6-Upgrade-zh.md" rel="noopener noreferrer"&gt;Chinese / 中文&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://github.com/lvdeshuii/OverFlow/blob/main/docs/en/Netis-NPM-Empowers-Customers-IPv6-Upgrade-en.md" rel="noopener noreferrer"&gt;English&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://github.com/lvdeshuii/OverFlow/blob/main/docs/es/Netis-NPM-Empowers-Customers-IPv6-Upgrade-es.md" rel="noopener noreferrer"&gt;Spanish / español / castellano&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://github.com/lvdeshuii/OverFlow/blob/main/docs/ja/Netis-NPM-Empowers-Customers-IPv6-Upgrade-ja.md" rel="noopener noreferrer"&gt;Japanese / 日本語&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://github.com/lvdeshuii/OverFlow/blob/main/docs/de/Netis-NPM-Empowers-Customers-IPv6-Upgrade-de.md" rel="noopener noreferrer"&gt;German / Deutsch&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://github.com/lvdeshuii/OverFlow/blob/main/docs/fr/Netis-NPM-Empowers-Customers-IPv6-Upgrade-fr.md" rel="noopener noreferrer"&gt;French / français&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://github.com/lvdeshuii/OverFlow/blob/main/docs/ar/Netis-NPM-Empowers-Customers-IPv6-Upgrade-ar.md" rel="noopener noreferrer"&gt;Arabic / al arabiya / العربية&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://github.com/lvdeshuii/OverFlow/blob/main/docs/pt/Netis-NPM-Empowers-Customers-IPv6-Upgrade-pt.md" rel="noopener noreferrer"&gt;Portuguese (Portugal)&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://github.com/lvdeshuii/OverFlow/blob/main/docs/ru/Netis-NPM-Empowers-Customers-IPv6-Upgrade-ru.md" rel="noopener noreferrer"&gt;Russian / Русский язык&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;strong&gt;Background&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;In July 2021, the Cyberspace Administration of China, the National Development and Reform Commission, and the Ministry of Industry and Information Technology collectively released a directive to accelerate the widespread adoption and application of Internet Protocol Version 6 (IPv6). The directive specifically targets &lt;strong&gt;"advancing the IPv6 upgrade within financial institutions, continuously enhancing the IPv6 support capabilities of internet-facing financial service applications, and strengthening the IPv6 monitoring and maintenance framework."&lt;/strong&gt; This initiative is identified as a critical step towards the broad deployment and use of IPv6.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Overview&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;One bank took this initiative seriously, dedicating efforts to fulfill the IPv6 upgrade mandate. By early 2022, it had developed a network infrastructure that supports both IPv4 and IPv6 (a dual-stack network), enhancing IPv6 compatibility across various customer-facing applications like its website, online and mobile banking, and WeChat banking services. To boost the operational effectiveness of this dual-stack network and fortify its maintenance structure, the bank adopted Netis NPM, a cutting-edge, comprehensive traffic analysis system. This system is designed to perform real-time monitoring of internet traffic across critical network segments and applications.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Value of the Case&lt;/strong&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;Network Traffic Visualization&lt;/strong&gt;: Offers a fast and intuitive view of the network's topology and details, setting the stage for uncovering the network's internal business potential.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Service Path Mapping from a Business Perspective&lt;/strong&gt;: Moves beyond the isolated worlds of traditional network and application maintenance;&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Comparative View of Internet Applications in IPv4 and IPv6&lt;/strong&gt;: Stay informed about the usage, performance metrics of IPv4 versus IPv6 applications, enabling dynamic adjustment of network resources to swiftly meet application needs;&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Accurate Network Anomaly Detection and Quick Alerts&lt;/strong&gt;: Reduces time to resolve issues, enhancing network service quality.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;strong&gt;1. Netis NPM: A Comprehensive Network Traffic Management Platform&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;Built on proven network mirroring technology, the full-traffic network analysis system duplicates network traffic in real-time to a Traffic Analysis Probe (TAP). This TAP then aggregates, tags, and distributes traffic to various analysis probes based on predefined rules. These probes dissect and process the traffic, after which an all-in-one management platform consolidates and presents the findings.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fccajn5dxxp4b0138hnwm.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fccajn5dxxp4b0138hnwm.png" alt="Image description" width="800" height="748"&gt;&lt;/a&gt;&lt;br&gt;
&lt;em&gt;Figure 1: Netis NPM's Logical Deployment Blueprint&lt;/em&gt;&lt;/p&gt;

&lt;p&gt;Through comprehensive traffic analysis on internet exit pathways and the networking hardware surrounding security mechanisms, it crafts distinct, visual perspectives for both IPv4 and IPv6. This allows for real-time monitoring of network health, enabling IT staff to swiftly grasp daily network operations.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fcwdqdk5fgfi60b1pc2gs.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fcwdqdk5fgfi60b1pc2gs.png" alt="Image description" width="800" height="395"&gt;&lt;/a&gt;&lt;br&gt;
&lt;em&gt;Figure 2: View of an IPv4 Dedicated Exit Link - Application Performance Metrics&lt;/em&gt;&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fdeak5dhg7o82lf8z0hig.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fdeak5dhg7o82lf8z0hig.png" alt="Image description" width="800" height="414"&gt;&lt;/a&gt;&lt;br&gt;
&lt;em&gt;Figure 3: View of an IPv4 Dedicated Exit Link - Network Traffic Load&lt;/em&gt;&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fs60sjsvi168865zuux3d.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fs60sjsvi168865zuux3d.png" alt="Image description" width="800" height="363"&gt;&lt;/a&gt;&lt;br&gt;
&lt;em&gt;Figure 4: View of an IPv6 Dedicated Exit Link - Network Traffic Load&lt;/em&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;2. The Innovative SPV: Network Insights Through the Application Lens&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;Normally, network and application management are siloed into separate teams, leading to a fragmented response when issues arise, which slows down troubleshooting and problem-solving. Netis NPM breaks new ground with its Service Path View (SPV) technology. By creating a comprehensive, end-to-end monitoring framework centered around the business's perspective, it shifts the focus onto how applications interact with the network. The SPV illuminates an application's network condition across four key areas: traffic volume, network performance, application performance, and availability. This empowers IT teams to quickly pinpoint and resolve any issues as soon as they arise, ensuring smooth application operation.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fthxfptaa1slqbxtk0pl8.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fthxfptaa1slqbxtk0pl8.png" alt="Image description" width="800" height="405"&gt;&lt;/a&gt;&lt;br&gt;
&lt;em&gt;Figure 5: The Netis NPM's Service Path Diagram from a Business Viewpoint&lt;/em&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;3. Everything at a Glance: IPv4 vs. IPv6 Network Metrics Comparison&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;At the gateway to the internet, one bank has leveraged the professional capabilities of Netis NPM to create a large display that contrasts the network performance of IPv4 and IPv6. This setup allows for real-time monitoring of the exit paths to the internet, significantly boosting user satisfaction by ensuring smooth connectivity.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Ftnao617b2r0ro0st3q76.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Ftnao617b2r0ro0st3q76.png" alt="Image description" width="800" height="450"&gt;&lt;/a&gt;&lt;br&gt;
&lt;em&gt;Figure 6: The Grand Display of Netis NPM&lt;/em&gt;&lt;/p&gt;

&lt;p&gt;For critical services accessible to the public, the bank designs detailed reports on a daily, weekly, and monthly basis, tailoring these insights to meet the demands of oversight bodies.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F0zeyxefwshhdtu6m5fjk.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F0zeyxefwshhdtu6m5fjk.png" alt="Image description" width="800" height="737"&gt;&lt;/a&gt;&lt;br&gt;
&lt;em&gt;Figure 7: Weekly Insights for Key Services&lt;/em&gt;&lt;/p&gt;

&lt;p&gt;Netis's suite of products offers robust support for IPv6 analysis, playing a key role in maintaining the reliability and stability of IPv6-based services for their clients.&lt;/p&gt;




&lt;p&gt;At Netis, we're at the forefront of analyzing business(APM) and network performance(NPM), ensuring that over thirty billion transactions run smoothly every day. Our commitment to system and data security is paramount, and we pride ourselves on our ability to conduct real-time analysis through network traffic mirroring. This means we can get the job done without the need for any agents or disruptions to your existing operations. Based in Shanghai, China, Netis is a global software company known for its high-performance products and cost-effective solutions. Interested in what we offer? Don't hesitate to get in touch. We're excited about the possibility of working together and welcoming new partners.&lt;br&gt;&lt;br&gt;
Discover more at: &lt;a href="http://www.netis.com/en/" rel="noopener noreferrer"&gt;www.netis.com/en/&lt;/a&gt;&lt;br&gt;&lt;br&gt;
Or drop me a line directly: &lt;a href="mailto:dennis.li@netis.com"&gt;dennis.li@netis.com&lt;/a&gt;&lt;/p&gt;

</description>
      <category>npmd</category>
    </item>
    <item>
      <title>User Case: Smart Business Performance Monitoring in Financial Private Cloud Hybrid Architectures</title>
      <dc:creator>OverFlow</dc:creator>
      <pubDate>Fri, 16 Feb 2024 01:43:39 +0000</pubDate>
      <link>https://dev.to/leaderone23/user-case-smart-business-performance-monitoring-in-financial-private-cloud-hybrid-architectures-30g7</link>
      <guid>https://dev.to/leaderone23/user-case-smart-business-performance-monitoring-in-financial-private-cloud-hybrid-architectures-30g7</guid>
      <description>&lt;p&gt;&lt;strong&gt;Other Languages&lt;/strong&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;&lt;a href="///docs/zh/Smart-Business-Performance-Monitoring-in-Financial-Private-Cloud-Hybrid-Architectures-zh.md"&gt;Chinese / 中文&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="///docs/en/Smart-Business-Performance-Monitoring-in-Financial-Private-Cloud-Hybrid-Architectures-en.md"&gt;English&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="///docs/es/Smart-Business-Performance-Monitoring-in-Financial-Private-Cloud-Hybrid-Architectures-es.md"&gt;Spanish / español / castellano&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="///docs/ja/Smart-Business-Performance-Monitoring-in-Financial-Private-Cloud-Hybrid-Architectures-ja.md"&gt;Japanese / 日本語&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="///docs/de/Smart-Business-Performance-Monitoring-in-Financial-Private-Cloud-Hybrid-Architectures-de.md"&gt;German / Deutsch&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="///docs/fr/Smart-Business-Performance-Monitoring-in-Financial-Private-Cloud-Hybrid-Architectures-fr.md"&gt;French / français&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="///docs/ar/Smart-Business-Performance-Monitoring-in-Financial-Private-Cloud-Hybrid-Architectures-ar.md"&gt;Arabic / al arabiya / العربية&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="///docs/pt/Smart-Business-Performance-Monitoring-in-Financial-Private-Cloud-Hybrid-Architectures-pt.md"&gt;Portuguese (Portugal)&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;As the foundational platform supporting the operation of information systems, financial institutions' IT infrastructures face the twin challenges of digital transformation and technological autonomy. Consequently, the financial private cloud has emerged as a preferred solution for many financial institutions to address these challenges.&lt;br&gt;
In recent years, a city commercial bank has dedicated itself to the vigorous development of private clouds as a new embodiment of fintech-enabled business. It has partnered with leading cloud service providers for joint research and breakthroughs in financial cloud infrastructure and services, financial scenario innovation, and the development of cloud-native business systems, collaboratively advancing the deployment of the bank's financial private cloud technology architecture. This strategy of consistently deploying or migrating critical business systems to the financial private cloud has yielded numerous benefits, such as enhanced business agility, cost optimization, and improved security. However, it has also introduced significant challenges to operational management, including:&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;Achieving unified traffic collection and management across hybrid cloud architectures like cloud servers and container clouds;&lt;/li&gt;
&lt;li&gt;Navigating complex business access relationships and monitoring blind spots in hybrid architectures;&lt;/li&gt;
&lt;li&gt;Dealing with more concealed failures in cloud environments, complicating troubleshooting efforts;&lt;/li&gt;
&lt;li&gt;Streamlining operations to enhance efficiency under the hybrid cloud architecture.
In response to these challenges, Netis and the city commercial bank have collaboratively developed the "Financial Private Cloud Hybrid Architecture Intelligent Business Performance Monitoring Solution," bravely confronting and advancing through these difficulties.&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;&lt;strong&gt;Challenge One: Overcoming Traffic Collection Hurdles in Hybrid Cloud Architectures&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;As the city commercial bank embraces its financial private cloud, an increasing number of business systems find their new homes on cloud servers and container clouds. The first hurdle is how to efficiently and securely gather traffic across this mixed cloud setup, merge it with traffic from traditional setups, and manage it all under one roof. Netis has ingeniously addressed this by introducing a suite of probe deployment strategies (involving both bypass and host probes) tailored to user scenarios. This approach not only facilitates comprehensive traffic collection within the hybrid cloud framework but also, through the Cloud Probe Manager, ensures centralized control over these collections. The culmination of this effort is the integration of traffic data, both from traditional and hybrid cloud sources, into Netis's Business Performance Management (BPC) system.&lt;br&gt;
&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fmmbiz.qpic.cn%2Fmmbiz_jpg%2Fo672k3fsicq3aiabrR0ibCBLmsV6iae9IV8eicSYpc2jHwmXaszCfF6HXqPXXba4nFMFro0zT1qjp3Vzjz9b6vuojuw%2F640%3Fwx_fmt%3Djpeg%26wxfrom%3D5%26wx_lazy%3D1%26wx_co%3D1" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fmmbiz.qpic.cn%2Fmmbiz_jpg%2Fo672k3fsicq3aiabrR0ibCBLmsV6iae9IV8eicSYpc2jHwmXaszCfF6HXqPXXba4nFMFro0zT1qjp3Vzjz9b6vuojuw%2F640%3Fwx_fmt%3Djpeg%26wxfrom%3D5%26wx_lazy%3D1%26wx_co%3D1" alt="图片" width="800" height="529"&gt;&lt;/a&gt;&lt;br&gt;
&lt;em&gt;Figure 1: Deployment architecture of the monitoring solution.&lt;/em&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Challenge Two: Navigating Business Path Analysis in Hybrid Cloud Architectures&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;As cloud-based systems proliferate, delineating business paths becomes increasingly crucial within architectures that blend traditional and cloud environments. Leveraging wire data decoded by BPC, the system autonomously navigates business processes, rendering the entire business system's service paths in a visually accessible format. This not only facilitates real-time visibility but also enables the intelligent amalgamation of applications at identical nodes. This comprehensive visibility aids city commercial bank clients in demystifying the service nodes and applications across their operations, allowing for meticulous path analysis and the elimination of monitoring blind spots. This ensures that the tech department can masterfully manage and understand the business system's intricacies.&lt;br&gt;
&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fmmbiz.qpic.cn%2Fmmbiz_jpg%2Fo672k3fsicq3aiabrR0ibCBLmsV6iae9IV8eOnrHmIC2n9WcbibYwPFRPQPZ96KHdQiahRjibd6tGibHPuYzUFLbjV6thQ%2F640%3Fwx_fmt%3Djpeg%26wxfrom%3D5%26wx_lazy%3D1%26wx_co%3D1" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fmmbiz.qpic.cn%2Fmmbiz_jpg%2Fo672k3fsicq3aiabrR0ibCBLmsV6iae9IV8eOnrHmIC2n9WcbibYwPFRPQPZ96KHdQiahRjibd6tGibHPuYzUFLbjV6thQ%2F640%3Fwx_fmt%3Djpeg%26wxfrom%3D5%26wx_lazy%3D1%26wx_co%3D1" alt="图片" width="800" height="350"&gt;&lt;/a&gt;&lt;br&gt;
&lt;em&gt;Figure 2: SPVD's automated business path analysis.&lt;/em&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Challenge Three: Navigating Troubleshooting in Hybrid Cloud Architectures&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;The nature of cloud architectures—characterized by their flexible connections and ever-changing application nodes—means that failures within the cloud are sneakier and their causes more complex than ever. This complexity turns troubleshooting in cloud-based business systems into a formidable task. Without the right tools, delays in failure notifications, imprecise fault localization, and inaccurate analyses can seriously disrupt business operations, potentially impacting customer-facing services.&lt;/p&gt;

&lt;p&gt;To safeguard the smooth operation of cloud-based systems, Netis has implemented a strategy using five sets of alarm presets, specifically designed to monitor for common yet critical financial transaction failures. This system is bolstered by automated fault localization and root cause analysis, enabling a thorough evaluation of the failure's impact. The end goal? To quickly identify the root cause and any abnormal performance metrics, facilitating swift resolution. This approach ensures that the maintenance response times of cloud-based systems are on par with those of traditional setups.&lt;br&gt;
&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fmmbiz.qpic.cn%2Fmmbiz_jpg%2Fo672k3fsicq3aiabrR0ibCBLmsV6iae9IV8eZ07v3TGgWRswlTmhibicHKBdZia0OPxTMQxwHORfmGqvnMiahsTTYYJUuQ%2F640%3Fwx_fmt%3Djpeg%26wxfrom%3D5%26wx_lazy%3D1%26wx_co%3D1" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fmmbiz.qpic.cn%2Fmmbiz_jpg%2Fo672k3fsicq3aiabrR0ibCBLmsV6iae9IV8eZ07v3TGgWRswlTmhibicHKBdZia0OPxTMQxwHORfmGqvnMiahsTTYYJUuQ%2F640%3Fwx_fmt%3Djpeg%26wxfrom%3D5%26wx_lazy%3D1%26wx_co%3D1" alt="图片" width="800" height="539"&gt;&lt;/a&gt;&lt;br&gt;
&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fmmbiz.qpic.cn%2Fmmbiz_jpg%2Fo672k3fsicq3aiabrR0ibCBLmsV6iae9IV8ePCCCibQxF2DIvaTDHkIeTTBOTJs7MPO6BooPryicOAkZSsEcEYhXd1rw%2F640%3Fwx_fmt%3Djpeg%26wxfrom%3D5%26wx_lazy%3D1%26wx_co%3D1" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fmmbiz.qpic.cn%2Fmmbiz_jpg%2Fo672k3fsicq3aiabrR0ibCBLmsV6iae9IV8ePCCCibQxF2DIvaTDHkIeTTBOTJs7MPO6BooPryicOAkZSsEcEYhXd1rw%2F640%3Fwx_fmt%3Djpeg%26wxfrom%3D5%26wx_lazy%3D1%26wx_co%3D1" alt="图片" width="800" height="502"&gt;&lt;/a&gt;&lt;br&gt;
&lt;em&gt;Figure 3: Illustration of intelligent alarm scenarios and triggers.&lt;/em&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Challenge Four: Overcoming Operational Management Hurdles in Hybrid Cloud Architectures&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;The city commercial bank's financial private cloud has embarked on a groundbreaking journey, thanks to its evolving partnership with cloud service providers. This evolution has propelled operational management, especially within a hybrid cloud framework, to the forefront of the technology operations department's agenda. Consequently, the deployment of a unified intelligent monitoring platform has become a necessity. Netis Business Performance Management (BPC) stands out by seamlessly integrating hybrid and traditional environments into one monitoring interface, ensuring comprehensive, end-to-end coverage without any blind spots. This achievement not only aligns with the operational management goals of the city commercial bank but also significantly boosts efficiency in this domain.&lt;br&gt;
&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fmmbiz.qpic.cn%2Fmmbiz_jpg%2Fo672k3fsicq3aiabrR0ibCBLmsV6iae9IV8e7XjvzyrIL4l0ibJ9MQfBgGpdOMHve9iclMQvEicNURHvY5vx8kC9agXDg%2F640%3Fwx_fmt%3Djpeg%26wxfrom%3D5%26wx_lazy%3D1%26wx_co%3D1" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fmmbiz.qpic.cn%2Fmmbiz_jpg%2Fo672k3fsicq3aiabrR0ibCBLmsV6iae9IV8e7XjvzyrIL4l0ibJ9MQfBgGpdOMHve9iclMQvEicNURHvY5vx8kC9agXDg%2F640%3Fwx_fmt%3Djpeg%26wxfrom%3D5%26wx_lazy%3D1%26wx_co%3D1" alt="图片" width="800" height="368"&gt;&lt;/a&gt;&lt;br&gt;
&lt;em&gt;Figure 4: Comprehensive Service Path - Unified Monitoring Across Cloud and On-Premises Environments&lt;/em&gt;&lt;/p&gt;

&lt;p&gt;Through its sophisticated multi-layer tracking, Netis BPC empowers the bank to seamlessly track transactions across cloud and on-premises systems using business transaction numbers. This capability simplifies the task of achieving thorough, end-to-end monitoring of services, irrespective of their location.&lt;br&gt;
&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fmmbiz.qpic.cn%2Fmmbiz_jpg%2Fo672k3fsicq3aiabrR0ibCBLmsV6iae9IV8e2FTsia5XDYUnrfSlSbyrjmAibyuG1Dxa3Fp29w1nJXbcNoh5MAVTVVyw%2F640%3Fwx_fmt%3Djpeg%26wxfrom%3D5%26wx_lazy%3D1%26wx_co%3D1" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fmmbiz.qpic.cn%2Fmmbiz_jpg%2Fo672k3fsicq3aiabrR0ibCBLmsV6iae9IV8e2FTsia5XDYUnrfSlSbyrjmAibyuG1Dxa3Fp29w1nJXbcNoh5MAVTVVyw%2F640%3Fwx_fmt%3Djpeg%26wxfrom%3D5%26wx_lazy%3D1%26wx_co%3D1" alt="图片" width="800" height="369"&gt;&lt;/a&gt;&lt;br&gt;
&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fmmbiz.qpic.cn%2Fmmbiz_jpg%2Fo672k3fsicq3aiabrR0ibCBLmsV6iae9IV8e9mAK5j45wGqhT1bMceXP5BV6pcDiaKHv5fa0LRTib5O3VCtW49mSfMWQ%2F640%3Fwx_fmt%3Djpeg%26wxfrom%3D5%26wx_lazy%3D1%26wx_co%3D1" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fmmbiz.qpic.cn%2Fmmbiz_jpg%2Fo672k3fsicq3aiabrR0ibCBLmsV6iae9IV8e9mAK5j45wGqhT1bMceXP5BV6pcDiaKHv5fa0LRTib5O3VCtW49mSfMWQ%2F640%3Fwx_fmt%3Djpeg%26wxfrom%3D5%26wx_lazy%3D1%26wx_co%3D1" alt="图片" width="800" height="354"&gt;&lt;/a&gt;&lt;br&gt;
&lt;em&gt;Figure 5: Multi-Layer Tracking - End-to-End Monitoring for Individual Transactions&lt;/em&gt;&lt;/p&gt;

&lt;p&gt;Netis BPC's advanced application performance metrics component vividly displays the real-time status of the entire business system. Its intuitive graphical interface efficiently showcases various key metrics, facilitating visualized performance monitoring. The platform adeptly presents essential application performance metrics, including the "Five Golden Metrics," along with a wide range of business dimensions through dynamic curves, pie charts, and bar graphs. This includes detailed views of application layers, snapshots, multi-dimensional statistics, and transaction tracking features.&lt;br&gt;
&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fmmbiz.qpic.cn%2Fmmbiz_jpg%2Fo672k3fsicq3aiabrR0ibCBLmsV6iae9IV8e7mMSVibHAvuc6M4icWmYcK574PkxXfXL2ibric5mkAcF1AibM1RwWLV3HdA%2F640%3Fwx_fmt%3Djpeg%26wxfrom%3D5%26wx_lazy%3D1%26wx_co%3D1" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fmmbiz.qpic.cn%2Fmmbiz_jpg%2Fo672k3fsicq3aiabrR0ibCBLmsV6iae9IV8e7mMSVibHAvuc6M4icWmYcK574PkxXfXL2ibric5mkAcF1AibM1RwWLV3HdA%2F640%3Fwx_fmt%3Djpeg%26wxfrom%3D5%26wx_lazy%3D1%26wx_co%3D1" alt="图片" width="800" height="444"&gt;&lt;/a&gt;&lt;br&gt;
&lt;em&gt;Figure 6: Netis BPC - Bridging Business and Performance Analysis&lt;/em&gt;&lt;/p&gt;




&lt;p&gt;At Netis, we're at the forefront of analyzing business(APM) and network performance(NPM), ensuring that over thirty billion transactions run smoothly every day. Our commitment to system and data security is paramount, and we pride ourselves on our ability to conduct real-time analysis through network traffic mirroring. This means we can get the job done without the need for any agents or disruptions to your existing operations. Based in Shanghai, China, Netis is a global software company known for its high-performance products and cost-effective solutions. Interested in what we offer? Don't hesitate to get in touch. We're excited about the possibility of working together and welcoming new partners.​&lt;br&gt;&lt;br&gt;
Discover more at: &lt;a href="http://www.netis.com/en/%E2%80%8B" rel="noopener noreferrer"&gt;www.netis.com/en/​&lt;/a&gt;&lt;br&gt;&lt;br&gt;
Or drop me a line directly: &lt;a href="mailto:dennis.li@netis.com"&gt;dennis.li@netis.com&lt;/a&gt;&lt;/p&gt;

</description>
    </item>
  </channel>
</rss>
