Home / Companies / InfluxData / Blog / April 2024

April 2024 Summaries

5 posts from InfluxData

Filter
Month: Year:
Post Summaries Back to Blog
The International Space Station's (ISS) Alpha Magnetic Spectrometer (AMS), which conducts fundamental physics research, has modernized its software system by replacing its relational database backend with the time series database InfluxDB. This change eliminated the need for custom scripting updates and provided a simplified way to add, query, and visualize vital data from the AMS. The new AMI also offers a simplified method of updating without the need for custom scripting and allows the use of APIs to automate backup and synchronization. InfluxDB is now used in conjunction with Grafana for client-side visualizations, improving data analysis and allowing POCC engineers to better understand monitoring data, make comparisons, understand trends, and spot abnormalities.
Apr 30, 2024 1,360 words in the original blog post.
This article provides a comprehensive guide on obtaining the current time in C# using DateTime.Now, DateTime.UtcNow, and DateTimeOffset.Now. It explains why it's important to get the current time and provides use cases such as recording events, logging application errors, setting alarms or reminders, displaying current time on UI, and calculating time passed since a given point in the past. The article also covers how to get the current UTC time in C#, handling different time zones, formatting the output, and understanding the difference between DateTime.Now and DateTime.Today.
Apr 26, 2024 1,672 words in the original blog post.
The Quix Template can be used to sync data from InfluxDB v2 to v3 for users looking to migrate their data. Quix is a Python-based solution that offers stream processing libraries and a fully managed platform for deploying applications in data pipelines. It is designed to handle time series data and supports both cloud and on-premise offerings. The Quix Template's syncing capabilities are similar to the Edge Data Replication tool, but it can also scale to accommodate high-throughput use cases due to its Kafka foundation. To use this template, users need an InfluxDB v2 instance with real-time data, an InfluxDB v3 account, and a Quix account. They must gather the necessary credentials from both their v2 and v3 InfluxDB accounts and follow the instructions provided in the tutorial to configure and sync their environment.
Apr 08, 2024 781 words in the original blog post.
The article discusses infrastructure monitoring using the TIG stack - Telegraf, InfluxDB, and Grafana. It highlights how these tools can be used to ensure reliability and performance of applications and systems. The author explains that while traditional monitoring approaches fall short in providing real-time insights and proactive problem-solving, InfluxDB offers a robust solution for all monitoring needs. The article covers the difference between monitoring and observability, using Telegraf for data collection, InfluxDB for data storage, and Grafana for visualizing and acting on data. It also emphasizes how InfluxDB 3.0 brings significant improvements for handling time series data, including enhanced storage and compression, faster ingestion of data, real-time querying using SQL, and the ability to handle logs, traces, events, and metrics. The versatility of Telegraf is also highlighted due to its plug-in-driven nature, which supports over 300 plugins for ingesting and outputting data. The author concludes by encouraging readers to try out InfluxDB for themselves by signing up for a free account.
Apr 05, 2024 740 words in the original blog post.
This tutorial provides a comprehensive guide on comparing dates in Java using both old and new APIs. It begins by discussing the two available APIs for date and time manipulation in Java, highlighting the reasons behind the introduction of the new API with Java 8. The tutorial then delves into various classes such as LocalDate, LocalTime, LocalDateTime, Duration, Period, Date, and Calendar, explaining how to create instances of these classes and compare them using methods like isEqual(), isBefore(), isAfter(), equals(), and compareTo(). Finally, it touches upon the old days with the Date and Calendar classes. The tutorial emphasizes the importance of handling time in programming and recommends using the new Java Time API for all time-related needs.
Apr 03, 2024 1,531 words in the original blog post.