Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat(cwl): Add clear screen and stop session code lens #5958

Merged
merged 5 commits into from
Nov 8, 2024
Merged
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
21 changes: 20 additions & 1 deletion packages/core/src/awsService/cloudWatchLogs/activation.ts
Original file line number Diff line number Diff line change
Expand Up @@ -19,13 +19,14 @@ import { searchLogGroup } from './commands/searchLogGroup'
import { changeLogSearchParams } from './changeLogSearch'
import { CloudWatchLogsNode } from './explorer/cloudWatchLogsNode'
import { loadAndOpenInitialLogStreamFile, LogStreamCodeLensProvider } from './document/logStreamsCodeLensProvider'
import { tailLogGroup } from './commands/tailLogGroup'
import { clearDocument, closeSession, tailLogGroup } from './commands/tailLogGroup'
import { LiveTailDocumentProvider } from './document/liveTailDocumentProvider'
import { LiveTailSessionRegistry } from './registry/liveTailSessionRegistry'
import { DeployedResourceNode } from '../appBuilder/explorer/nodes/deployedNode'
import { isTreeNode } from '../../shared/treeview/resourceTreeDataProvider'
import { getLogger } from '../../shared/logger/logger'
import { ToolkitError } from '../../shared'
import { LiveTailCodeLensProvider } from './document/liveTailCodeLensProvider'

export async function activate(context: vscode.ExtensionContext, configuration: Settings): Promise<void> {
const registry = LogDataRegistry.instance
Expand All @@ -48,6 +49,16 @@ export async function activate(context: vscode.ExtensionContext, configuration:
vscode.workspace.registerTextDocumentContentProvider(CLOUDWATCH_LOGS_SCHEME, documentProvider)
)

context.subscriptions.push(
vscode.languages.registerCodeLensProvider(
{
language: 'log',
scheme: cloudwatchLogsLiveTailScheme,
},
new LiveTailCodeLensProvider()
Comment on lines +56 to +58
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Why do we have a different scheme, and a different codelens, for "live tail"? The codelenses for the non-livetail log group search would be useful in live tail. Why are they separate?

Whether a log group is being "tailed" or not is just a flag. It's not an entirely different concept.

Copy link
Contributor Author

@keeganirby keeganirby Nov 8, 2024

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The CodeLenses in the existing CWL experiences are not very applicable to our LiveTail use case.
"Load newer" & "Load older" don't apply when data is being streamed in constantly. For View full log stream, customers can apply LogStream filter parameters to their liveTail session already so having this as a codeLens in a Livetail session doesn't seem necessary.
On the other hand, a SearchLogGroup command won't need a Stop tailing code lens.

These UX are quite separate.

We already separate the CodeLens providers for logData and logStream. Given the UX and functionality of LiveTail is different from our other experiences I think it fits to have a separate CodeLens provider.

This is the same reasoning behind having a separate scheme as we discussed here. The way we retrieve/display logs from a LiveTail session stream differs enough from the existing LogDataRegistry that I felt that it was best to separate these logic's, as opposed to finding a way to generalize.

I feel that LiveTail and the existing experiences are separate enough from each other that they should be treated as such.

)
)

context.subscriptions.push(
vscode.workspace.registerTextDocumentContentProvider(cloudwatchLogsLiveTailScheme, liveTailDocumentProvider)
)
Expand Down Expand Up @@ -112,6 +123,14 @@ export async function activate(context: vscode.ExtensionContext, configuration:
await tailLogGroup(liveTailRegistry, logGroupInfo)
}),

Commands.register('aws.cwl.stopTailingLogGroup', async (document: vscode.TextDocument) => {
closeSession(document.uri, liveTailRegistry)
}),

Commands.register('aws.cwl.clearDocument', async (document: vscode.TextDocument) => {
await clearDocument(document)
}),

Commands.register('aws.appBuilder.searchLogs', async (node: DeployedResourceNode) => {
try {
const logGroupInfo = isTreeNode(node)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ import {
LiveTailSessionUpdate,
StartLiveTailResponseStream,
} from '@aws-sdk/client-cloudwatch-logs'
import { globals, ToolkitError } from '../../../shared'
import { getLogger, ToolkitError } from '../../../shared'

export async function tailLogGroup(
registry: LiveTailSessionRegistry,
Expand All @@ -32,32 +32,29 @@ export async function tailLogGroup(
region: wizardResponse.regionLogGroupSubmenuResponse.region,
}
const session = new LiveTailSession(liveTailSessionConfig)
if (registry.has(session.uri)) {
if (registry.has(session.uri.toString())) {
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

uriToKey exists for this purpose.

export function uriToKey(uri: vscode.Uri): string {

toString is not reliable, querystring parameters can appear in arbitrary order.

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

public isRegistered(uri: vscode.Uri): boolean {
return this.registry.has(uriToKey(uri))
}

This makes me wonder why LiveTailSessionRegistry is using a completely different pattern than LogDataRegistry. Now we have two different "registries" concepts to maintain, using completely different patterns.

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I think the aim of these two registries are different from one another.
Given a LiveTail session has its own components unique to other CWL experiences (own client, abortController, responseStream, etc.) We have a LiveTailSession object, that has a long running lifeCycle. This lifecycle can end from outside the TailLogGroup command, and so this registry is really just there to track what Sessions are currently running, so when a session needs to be closed via a CodeLens, or closing its textEditors, we can find the LiveTailSession from its uri and abort the response stream and clean up its resources.

I think this is a separate responsiblity from the LogDataRegistry that is actually persisting LogData, and making requests to FilterLogEvents.

await prepareDocument(session)
return
}
registry.set(session.uri, session)
registry.set(session.uri.toString(), session)

const document = await prepareDocument(session)
const timer = globals.clock.setInterval(() => {
session.updateStatusBarItemText()
}, 500)

hideShowStatusBarItemsOnActiveEditor(session, document)
registerTabChangeCallback(session, registry, document, timer)
registerTabChangeCallback(session, registry, document)

const stream = await session.startLiveTailSession()

await handleSessionStream(stream, document, session, timer)
await handleSessionStream(stream, document, session)
}

export function closeSession(sessionUri: vscode.Uri, registry: LiveTailSessionRegistry, timer: NodeJS.Timer) {
globals.clock.clearInterval(timer)
const session = registry.get(sessionUri)
export function closeSession(sessionUri: vscode.Uri, registry: LiveTailSessionRegistry) {
const session = registry.get(sessionUri.toString())
if (session === undefined) {
throw new ToolkitError(`No LiveTail session found for URI: ${sessionUri.toString()}`)
}
session.stopLiveTailSession()
registry.delete(sessionUri)
registry.delete(sessionUri.toString())
}

export async function clearDocument(textDocument: vscode.TextDocument) {
Expand All @@ -80,8 +77,7 @@ async function prepareDocument(session: LiveTailSession): Promise<vscode.TextDoc
async function handleSessionStream(
stream: AsyncIterable<StartLiveTailResponseStream>,
document: vscode.TextDocument,
session: LiveTailSession,
timer: NodeJS.Timer
session: LiveTailSession
) {
try {
for await (const event of stream) {
Expand All @@ -100,8 +96,21 @@ async function handleSessionStream(
session.isSampled = isSampled(event.sessionUpdate)
}
}
} finally {
globals.clock.clearInterval(timer)
} catch (e) {
if (session.isAborted) {
//Expected case. User action cancelled stream (CodeLens, Close Editor, etc.).
//AbortSignal interrupts the LiveTail stream, causing error to be thrown here.
//Can assume that stopLiveTailSession() has already been called - AbortSignal is only
//exposed through that method.
getLogger().info(`Session ${session.uri.toString()} stopped.`)
keeganirby marked this conversation as resolved.
Show resolved Hide resolved
} else {
//Unexpected exception.
session.stopLiveTailSession()
throw ToolkitError.chain(
e,
`Unexpected on-stream execption while tailing session: ${session.uri.toString()}`
keeganirby marked this conversation as resolved.
Show resolved Hide resolved
)
}
}
}

Expand Down Expand Up @@ -196,13 +205,12 @@ function hideShowStatusBarItemsOnActiveEditor(session: LiveTailSession, document
function registerTabChangeCallback(
session: LiveTailSession,
registry: LiveTailSessionRegistry,
document: vscode.TextDocument,
timer: NodeJS.Timer
document: vscode.TextDocument
) {
vscode.window.tabGroups.onDidChangeTabs((tabEvent) => {
const isOpen = isLiveTailSessionOpenInAnyTab(session)
if (!isOpen) {
closeSession(session.uri, registry, timer)
closeSession(session.uri, registry)
void clearDocument(document)
}
})
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,52 @@
/*!
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0
*/

import * as vscode from 'vscode'
import { cloudwatchLogsLiveTailScheme } from '../../../shared/constants'

export class LiveTailCodeLensProvider implements vscode.CodeLensProvider {
onDidChangeCodeLenses?: vscode.Event<void> | undefined

provideCodeLenses(
document: vscode.TextDocument,
token: vscode.CancellationToken
): vscode.ProviderResult<vscode.CodeLens[]> {
const uri = document.uri
if (uri.scheme !== cloudwatchLogsLiveTailScheme) {
return []
}
const codeLenses: vscode.CodeLens[] = []
codeLenses.push(this.buildClearDocumentCodeLens(document))
codeLenses.push(this.buildStopTailingCodeLens(document))
return codeLenses
}

private buildClearDocumentCodeLens(document: vscode.TextDocument): vscode.CodeLens {
const range = this.getBottomOfDocumentRange(document)
const command: vscode.Command = {
title: 'Clear document',
command: 'aws.cwl.clearDocument',
arguments: [document],
}
return new vscode.CodeLens(range, command)
}

private buildStopTailingCodeLens(document: vscode.TextDocument): vscode.CodeLens {
const range = this.getBottomOfDocumentRange(document)
const command: vscode.Command = {
title: 'Stop tailing',
command: 'aws.cwl.stopTailingLogGroup',
arguments: [document],
}
return new vscode.CodeLens(range, command)
}

private getBottomOfDocumentRange(document: vscode.TextDocument): vscode.Range {
return new vscode.Range(
new vscode.Position(document.lineCount - 1, 0),
new vscode.Position(document.lineCount - 1, 0)
)
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ import {
} from '@aws-sdk/client-cloudwatch-logs'
import { LogStreamFilterResponse } from '../wizard/liveTailLogStreamSubmenu'
import { CloudWatchLogsSettings } from '../cloudWatchLogsUtils'
import { convertToTimeString, Settings, ToolkitError } from '../../../shared'
import { convertToTimeString, globals, Settings, ToolkitError } from '../../../shared'
import { createLiveTailURIFromArgs } from './liveTailSessionRegistry'
import { getUserAgent } from '../../../shared/telemetry/util'

Expand Down Expand Up @@ -39,6 +39,9 @@ export class LiveTailSession {
private _eventRate: number
private _isSampled: boolean

//While session is running, used to update the StatusBar each half second.
private statusBarUpdateTimer: NodeJS.Timer | undefined

static settings = new CloudWatchLogsSettings(Settings.instance)

public constructor(configuration: LiveTailSessionConfiguration) {
Expand Down Expand Up @@ -89,6 +92,10 @@ export class LiveTailSession {
}
this.startTime = Date.now()
this.endTime = undefined
this.statusBarUpdateTimer = globals.clock.setInterval(() => {
this.updateStatusBarItemText()
}, 500)

return commandOutput.responseStream
} catch (e) {
throw new ToolkitError('Encountered error while trying to start LiveTail session.')
Expand All @@ -98,6 +105,7 @@ export class LiveTailSession {
public stopLiveTailSession() {
this.endTime = Date.now()
this.statusBarItem.dispose()
globals.clock.clearInterval(this.statusBarUpdateTimer)
this.liveTailClient.abortController.abort()
this.liveTailClient.cwlClient.destroy()
}
Expand Down Expand Up @@ -145,4 +153,8 @@ export class LiveTailSession {
const sampledString = this._isSampled ? 'Yes' : 'No'
this.statusBarItem.text = `Tailing: ${timeString}, ${this._eventRate} events/sec, Sampled: ${sampledString}`
}

public get isAborted() {
return this.liveTailClient.abortController.signal.aborted
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import * as vscode from 'vscode'
import { cloudwatchLogsLiveTailScheme } from '../../../shared/constants'
import { LiveTailSession, LiveTailSessionConfiguration } from './liveTailSession'

export class LiveTailSessionRegistry extends Map<vscode.Uri, LiveTailSession> {
export class LiveTailSessionRegistry extends Map<string, LiveTailSession> {
static #instance: LiveTailSessionRegistry

public static get instance() {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -125,15 +125,14 @@ describe('TailLogGroup', function () {
.callsFake(async function () {
return
})
// const fakeClock = installFakeClock()
const timer = setInterval(() => {}, 1000)

const session = new LiveTailSession({
logGroupName: testLogGroup,
region: testRegion,
})
registry.set(session.uri, session)
registry.set(session.uri.toString(), session)

closeSession(session.uri, registry, timer)
closeSession(session.uri, registry)
assert.strictEqual(0, registry.size)
assert.strictEqual(true, stopLiveTailSessionSpy.calledOnce)
assert.strictEqual(0, clock.countTimers())
Expand Down
Loading