We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 14198b3 commit e671ebeCopy full SHA for e671ebe
VERSION
@@ -1 +1 @@
1
-2.3.2
+2.4.0
src/main.js
@@ -130,7 +130,10 @@ async function fetchAndSaveData(type, namespace) {
130
await Promise.all(resources.items.map(async (item) => {
131
let log;
132
try {
133
- log = await coreApi.namespace(namespace).getPodLog(item.metadata.name, { container: item.spec.containers[0].name });
+ log = await coreApi.namespace(namespace).getPodLog(item.metadata.name, {
134
+ container: item.spec.containers[0].name,
135
+ timestamps: true,
136
+ });
137
} catch (error) {
138
console.error(`Failed to get items for ${item.metadata.name}:`, error);
139
log = error;
0 commit comments