๐ MAROKO133 Breaking ai: A NASA Spacecraft Orbiting Mars Just Mysteriously Went Of
There are currently seven spacecraft orbiting Mars, three of which belong to NASA. They’re designed to study the hostile planet’s geology, atmosphere, and radiation, while also supporting missions on the surface from just over 100 to tens of thousands of miles away.
But keeping up with spacecraft across a vast distance of tens of millions of miles is no easy feat. Case in point: in a Tuesday update, NASA admitted that it had lost signal of its MAVEN (Mars Atmosphere and Volatile EvolutioN) spacecraft.
It was expected to send telemetry back to Earth on December 6, but it was never picked up by NASA’s Deep Space Network, a global system of massive radio antennas built to keep in touch with interplanetary spacecraft.
“The spacecraft and operations teams are investigating the anomaly to address the situation,” the agency wrote.
The Maven spacecraft launched in late 2013 and arrived at the Red Planet roughly a year later. It’s designed to study the Martian upper atmosphere and how particles from the Sun interact with it.
It also has the extremely important task of relaying communications between missions on the Martian surface and Earth. As Scientific American points out, it’s one of four spacecraft that do this job, alongside the European Space Agency’s Exomars Trace Orbiter, and NASA’s Mars Reconnaissance Orbiter and Mars Odyssey.
Worse yet, MAVEN is technically the youngest out of the four, raising the possibility of more trouble for NASA ahead.
A new Red Planet orbiter, called the Mars Telecommunications Orbiter, designed to provide next-generation communications with Mars, was recently revived in president Donald Trump’s “Big, Beautiful Bill” act, which allocated it a budget of $700 million. However, it’s unclear when the project will launch, let alone wrap up development.
It’s not the first time MAVEN has failed to phone home. In 2022, the spacecraft spent three months in safe mode after its Inertial Measurement Units (IMUs), which are critical sensors for keeping orientation in space, “began exhibiting anomalous behavior,” per NASA. The team “switched the spacecraft to rely on stellar navigation instead of the IMUs,” allowing MAVEN to be taken out of safe mode.
For now, we’ll have to be patient and wait for further updates.
“More information will be shared once it becomes available,” NASA promised in its latest updates.
More on MAVEN: Marsโ Magnetosphere Suddenly Tripled in Size Last Christmas Day
The post A NASA Spacecraft Orbiting Mars Just Mysteriously Went Offline appeared first on Futurism.
๐ Sumber: futurism.com
๐ MAROKO133 Breaking ai: How Hud's runtime sensor cut triage time from 3 hour
Engineering teams are generating more code with AI agents than ever before. But they're hitting a wall when that code reaches production.
The problem isn't necessarily the AI-generated code itself. It's that traditional monitoring tools generally struggle to provide the granular, function-level data AI agents need to understand how code actually behaves in complex production environments. Without that context, agents can't detect issues or generate fixes that account for production reality.
It's a challenge that startup Hud is looking to help solve with the launch of its runtime code sensor on Wednesday. The company's eponymous sensor runs alongside production code, automatically tracking how every function behaves, giving developers a heads-up on what's actually occurring in deployment.
"Every software team building at scale faces the same fundamental challenge: building high-quality products that work well in the real world," Roee Adler, CEO and founder of Hud, told VentureBeat in an exclusive interview.ย "In the new era of AI-accelerated development, not knowing how code behaves in production becomes an even bigger part of that challenge."
What software developers are struggling withย
The pain points that developers are facing are fairly consistent across engineering organizations. Moshik Eilon, group tech lead at Monday.com, oversees 130 engineer and describes a familiar frustration with traditional monitoring tools.
"When you get an alert, you usually end up checking an endpoint that has an error rate or high latency, and you want to drill down to see the downstream dependencies," Eilon told VentureBeat. "A lot of times it's the actual application, and then it's a black box. You just get 80% downstream latency on the application."
The next step typically involves manual detective work across multiple tools. Check the logs. Correlate timestamps. Try to reconstruct what the application was doing. For novel issues deep in a large codebase, teams often lack the exact data they need.
Daniel Marashlian, CTO and co-founder at Drata, saw his engineers spending hours on what he referred to as an "investigation tax." "They were mapping a generic alert to a specific code owner, then digging through logs to reconstruct the state of the application," Marashlian told VentureBeat. "We wanted to eliminate that so our team could focus entirely on the fix rather than the discovery."
Drata's architecture compounds the challenge. The company integrates with numerous external services to deliver automated compliance, which creates sophisticated investigations when issues arise. Engineers trace behavior across a very large codebase spanning risk, compliance, integrations, and reporting modules.
Marashlian identified three specific problems that drove Drata toward investing in runtime sensors. The first issue was the cost of context switching.ย
"Our data was scattered, so our engineers had to act as human bridges between disconnected tools," he said.
The second issue, he noted, is alert fatigue. "When you have a complex distributed system, general alert channels become a constant stream of background noise, what our team describes as a 'ding, ding, ding' effect that eventually gets ignored," Marashlian said.
The third key driver was a need to integrate with the company's AI strategy.
"An AI agent can write code, but it cannot fix a production bug if it can't see the runtime variables or the root cause," Marashlian said.
Why traditional APMs can't solve the problem easily
Enterprises have long relied on a class of tools and services known as Application Performance Monitoring (APM).ย
With the current pace of agentic AI development and modern development workflows, both Monday.com and Drata simply were not able to get the required visibility from existing APM tools.
"If I would want to get this information from Datadog or from CoreLogix, I would just have to ingest tons of logs or tons of spans, and I would pay a lot of money," Eilon said.ย
Eilon noted that Monday.com used very low sampling rates because of cost constraints. That meant they often missed the exact data needed to debug issues.
Traditional application performance monitoring tools also require prediction, which is a problem because sometimes a developer just doesn't know what they don't know.
"Traditional observability requires you to anticipate what you'll need to debug," Marashlian said. "But when a novel issue surfaces, especially deep within a large, complex codebase, you're often missing the exact data you need."
Drata evaluated several solutions in the AI site reliability engineering and automated incident response categories and didn't find what was needed.ย
ย "Most tools we evaluated were excellent at managing the incident process, routing tickets, summarizing Slack threads, or correlating graphs," he said. "But they often stopped short of the code itself. They could tell us 'Service A is down,' but they couldn't tell us why specifically."
Another common capability in some tools including error monitors like Sentry is the ability to capture exceptions. The challenge, according to Adler, is that being made aware of exceptions is nice, but that doesn't connect them to business impact or provide the execution context AI agents need to propose fixes.
How runtime sensors work differently
Runtime sensors push intelligence to the edge where code executes. Hud's sensor runs as an SDK that integrates with a single line of code. It sees every function execution but only sends lightweight aggregate data unless something goes wrong.
When errors or slowdowns occur, the sensor automatically gathers deep forensic data including HTTP parameters, database queries and responses, and full execution context. The system establishes performance baselines within a day and can alert on both dramatic slowdowns and outliers that percentile-based monitoring misses.
"Now we just get all of this information for all of the functions regardless of what level they are, even for underlying packages," Eilon said. "Sometimes you might have an issue that is very deep, and we still see it pretty fast."
The platform delivers data through four channels:
-
Web application for centralized monitoring and analysis
-
IDE extensions for VS Code, JetBrains and Cursor that surface production metrics directly where code is written
-
MCP server that feeds structured data to AI coding agents
-
Alerting system that identifies issues without manual configuration
The MCP server integration is critical for AI-assisted development. Monday.com engineers now query production behavior directly within Cursor.ย
"I can just ask Cursor a question: Hey, why is this endpoint slow?" Eilon said. "When it uses the Hud MCP, I get all of the granular metrics, and this function is 30% slower since this deployment. Then I can also find the root cause."
This changes the incident response workflow. Instead of starting in Datadog and drilling down through layers, engineers start by asking an AI agent to diagnose the issue. The agent has immediate access to function-level production data.
From voodoo incidents to minutes-long fixes
The shift from theoretical capability to practical impact becomes clear in how engineering teams actually use runtime sensors. What used to take hours or days of detective work now resolves in min…
Konten dipersingkat otomatis.
๐ Sumber: venturebeat.com
๐ค Catatan MAROKO133
Artikel ini adalah rangkuman otomatis dari beberapa sumber terpercaya. Kami pilih topik yang sedang tren agar kamu selalu update tanpa ketinggalan.
โ Update berikutnya dalam 30 menit โ tema random menanti!