SlideShare une entreprise Scribd logo
1  sur  63
Author
             Lawrence Garvin, WSUS MVP




WSUS Reporting Made Easier
                            April 2012
WSUS Reporting Made Easier

 Updates Report
 Computers Reports
 Synchronization Report
 Custom Reporting
WSUS Report Categories: Updates, Computers

   WSUS report types
      » Summary, Detailed, Tabular

   WSUS report filtering options
   Review report layout
   Functionality & examples of “Approved Updates
    Report”
   Hyperlinks available in the report layouts
Documentation
WSUS Operations Guide




 © 2012 Microsoft. Available at:
 http://technet.microsoft.com/enus/library/dd939846(WS.10).aspx.
Report Types
Report Filters

 Update Classifications
 Product Categories
 Computer Target Groups
 Update Status
 Include/Exclude Replica Server Clients
 Approved Updates
Report Filters
Report Filters
Report Filters
Report Filters
Report Filters
Report Filters
Report Filters
Report Layout
Status Summary
Report Layout
Status Summary – Navigation Pane (Updates Report)
Report Layout

Status Summary – Navigation Pane (Computers Report)
Report Layout

Status Summary – Update Metadata
Report Layout
Status Summary – Approval Summary (For selected
groups)
Report Layout

Status Summary – Summary Status (For selected updates)
Report Layout

Status Summary – Computer Information
Report Layout
Status Summary – Summary Status (For selected
computers)
Report Layout

Detailed Status

 Two page report
   » Page 1: Summary Status page
      • Same page as Summary Status report

   » Page 2: Detailed Status report
      • For Updates Report: a detailed listing by computer name for each
        update

      • For Computers Report: a detailed listing by update for each
        computer
Report Layout

Detailed Status - Updates Report (Approval and Status)




                                                   - View 1 -
Report Layout

Detailed Status - Updates Report (Approval and Status)




                                                   - View 2 -
Report Layout

Detailed Status – Computers Report (Approval and Status)
Report Layout

 Tabular Status

 Provides counts for:
    » Needed

    » Installed/Not Applicable

    » Failed

    » Not Status

    » Updates presented are based on the filtering criteria selected in
      Report Options

 All four columns of counts are always presented
Report Layout
Tabular Status – Updates Report




                                  - View 1 -
Report Layout

Tabular Status – Updates Report




                                  - View 2 -
Report Layout

Tabular Status – Computers Report
Report Layout

Approved Updates – Updates Report (Group: All Computers)
Report Layout

Approved Updates – Updates Report (Group: Desktop)
Report Layout

Approved Updates – Computers Report (Group: All Computers)
Report Layout

Approved Updates – Computers Report (Group: Desktop)
Report Layout

Approved Updates – Change to Summary Report
Report Layout

Approved Updates – Change to Detailed Report
Report Layout
Approved Updates – Computer Report (Group: Desktop, for all
updates)
Report Layout

Detailed Status – Hyperlinks (Updates)
Report Layout

Detailed Status – Hyperlinks (Computers)
Report Layout

Detailed Status – Hyperlinks (Approval State)
Report Layout

Detailed Status – Hyperlinks (Installation Status)
Report Layout

Running Update Detailed Status Report from Updates List
Report Layout

Running Computer Detailed Status Report from Computer List
Synchronization & Custom Reporting
 Synchronization Reports
 Custom Reporting
   » Components required to use custom reporting
   » Connecting SQL Server® Management Studio to the WSUS
     database
   » A tour through the views available for reporting
Synchronization Report
 Selected for specified date or date range

 Report provides:
    » Number of New, Revised, and Expired Updates

    » Listing of New, Revised, and Expired Updates

    » Hyperlinks from Updates to Update Status Report

 Approvals can be created from hyperlinks in the Update
  Status Report
Synchronization Report

Report Options
Synchronization Report

Synchronization Summary
Synchronization Report

New/Revised/Expired Updates




      Synchronization
       Report
Documentation- Custom Reporting
WSUS Operations Guide




    © 2012 Microsoft. Available at http://technet.microsoft.com/en-us/library/dd939891(WS.10).aspx.
Documentation – Custom Reporting
WSUS Operations Guide




   © 2012 Microsoft. Available at http://msdn.microsoft.com/en-us/library/bb410149(VS.85).aspx.
Requirements
To do custom reporting
 Have query capability to WSUS database
    » SQL Server Management Studio

 Understand how to use PUBLIC_VIEWS
    » Basic knowledge of T-SQL and SQL Server

 Install and use Report Builder 2.0
    » Visual Studio 2008 also has these tools

 Deploy SQL Server Reporting Services
    » SSRS is available in SQL Express Advanced Services
Connectivity

To the WSUS Database

 SQL Server (Workgroup/Standard/Enterprise)
   » SQL Server Management Studio

 Windows® Internal Database
   » SQLCMD.exe or SQL Server Management Studio Express

   » Named Pipes
      • .pipeMSSQL$MICROSOFT##SSEEsqlquery

   » Local ONLY

 SQL Server Express Edition?? (EMail me!)
Tools

SQL Server Management Studio Express




      Synchronization
       Report
Access

To the WSUS Public Views

 All public views are located in the PUBLIC_VIEWS
  namespace
 Local Administrators have access by default
 Read-only to the PublicViewAccess database role
 Additional users must be added to database role
Familiarity

     With the WSUS Public Views

PUBLIC_VIEWS.vCategory                  PUBLIC_VIEWS.vSupportedInventory

PUBLIC_VIEWS.vCategoryText              PUBLIC_VIEWS.vUpdate

PUBLIC_VIEWS.vClassification            PUBLIC_VIEWS.vUpdateAdditionalInfoUrl

PUBLIC_VIEWS.vClassificationText        PUBLIC_VIEWS.vUpdateApproval

PUBLIC_VIEWS.vComputerGroupMembership   PUBLIC_VIEWS.vUpdateEffectiveApprovalPerComputer

PUBLIC_VIEWS.vComputerInventory         PUBLIC_VIEWS.vUpdateInCategory

PUBLIC_VIEWS.vComputerTarget            PUBLIC_VIEWS.vUpdateInstallationInfo

PUBLIC_VIEWS.vComputerTargetGroup       PUBLIC_VIEWS.vUpdateInstallationInfoBasic

PUBLIC_VIEWS.vDownstreamServer          PUBLIC_VIEWS.vUpdateText

PUBLIC_VIEWS.vLanguage                  PUBLIC_VIEWS.fnUpdateInstallationStateMap
Documentation - Views
WSUS Operations Guide




      © 2012 Microsoft. Available at: http://msdn.microsoft.com/en-us/library/bb410149(VS.85).aspx.
Code Example

 Update summaries for unassigned computers

The following query gets update summaries for all Security Updates
across all the computers in the Unassigned Computers group.
DECLARE @unassignedGroup uniqueidentifier
'B73CA6ED-5727-47F3-84DE-015E03F6A88A'

SELECT u.UpdateId, u.DefaultTitle, usc.State, COUNT(*)
FROM PUBLIC_VIEWS.vUpdate AS u
JOIN PUBLIC_VIEWS.vUpdateInstallationInfo AS usc
  ON u.UpdateId = usc.UpdateId
WHERE usc.ComputerTargetId IN (
        SELECT ComputerTargetId FROM PUBLIC_VIEWS.vComputerGroupMembership
        WHERE ComputerTargetGroupID = @unassignedGroup
        )
GROUP BY u.UpdateID, u.DefaultTitle, usc.State
Code Example

Update Summaries for unassigned computers (Results)
Building Custom Reports

for Publishing

 Report Builder 2.0
    » System Requirements
       • Desktop:
          » Windows XP® SP3
          » Windows Vista® SP1
          » Windows 7
       • Server:
          » Windows Server® 2003 SP2
          » Windows Server 2008
       • .NET Framework v3.5
Building Custom Reports

for Publishing
Building Custom Reports

for Publishing
 Report Builder 2.0
   » Product Information / Training / Download
      • http://www.microsoft.com/sqlserver/2008/en/us/report-b
Summary

 Update Reports

 Computer Reports

 Synchronization Report

 Custom Reporting
Helpful Resources
 Learn how to extend WSUS to report on      3rd
    party application patch compliance with
           SolarWinds Patch Manager


          Watch Video                        Test Drive Live Demo




       Ask Our Community                Download 30-day Free Trial



                  Click any of the links above


                              - Slide 62 -
Author: Lawrence Garvin, WSUS MVP




                                                Thank You!


     Feedback or Questions
Lawrence.Garvin@solarwinds.com

Contenu connexe

Tendances

Windows Registry Tips & Tricks
Windows Registry Tips & TricksWindows Registry Tips & Tricks
Windows Registry Tips & Tricks
Raghav Bisht
 
Domino policies deep dive
Domino policies deep diveDomino policies deep dive
Domino policies deep dive
Martijn de Jong
 

Tendances (20)

MES from the Ground Up
MES from the Ground UpMES from the Ground Up
MES from the Ground Up
 
System maintenance
System maintenanceSystem maintenance
System maintenance
 
Ch03 prescriptive process models
Ch03 prescriptive process modelsCh03 prescriptive process models
Ch03 prescriptive process models
 
RUP model
RUP modelRUP model
RUP model
 
Informe del mantenimiento de pc
Informe del mantenimiento de pcInforme del mantenimiento de pc
Informe del mantenimiento de pc
 
Mainframes project
Mainframes projectMainframes project
Mainframes project
 
Managing bitlocker with mbam
Managing bitlocker with mbamManaging bitlocker with mbam
Managing bitlocker with mbam
 
Data Backup and Recovery.pdf
Data Backup and Recovery.pdfData Backup and Recovery.pdf
Data Backup and Recovery.pdf
 
Introduction of software project management
Introduction of software project managementIntroduction of software project management
Introduction of software project management
 
Software maintenance
Software maintenanceSoftware maintenance
Software maintenance
 
SQA - chapter 13 (Software Quality Infrastructure)
SQA - chapter 13 (Software Quality Infrastructure)SQA - chapter 13 (Software Quality Infrastructure)
SQA - chapter 13 (Software Quality Infrastructure)
 
Mantenimiento de Pc & Redes
Mantenimiento de Pc & RedesMantenimiento de Pc & Redes
Mantenimiento de Pc & Redes
 
Linux System Monitoring
Linux System Monitoring Linux System Monitoring
Linux System Monitoring
 
Pragmatic Approaches to Project Costs Estimation
Pragmatic Approaches to Project Costs EstimationPragmatic Approaches to Project Costs Estimation
Pragmatic Approaches to Project Costs Estimation
 
Best new features in windows server 2016
Best new features in windows server 2016Best new features in windows server 2016
Best new features in windows server 2016
 
Quality tracking through JIRA
Quality tracking through JIRAQuality tracking through JIRA
Quality tracking through JIRA
 
Windows Registry Tips & Tricks
Windows Registry Tips & TricksWindows Registry Tips & Tricks
Windows Registry Tips & Tricks
 
Domino policies deep dive
Domino policies deep diveDomino policies deep dive
Domino policies deep dive
 
358050855 planificacion-de-soporte-tecnico
358050855 planificacion-de-soporte-tecnico358050855 planificacion-de-soporte-tecnico
358050855 planificacion-de-soporte-tecnico
 
Network File System
Network File SystemNetwork File System
Network File System
 

En vedette

4 Aa1 1793 Enw
4 Aa1 1793 Enw4 Aa1 1793 Enw
4 Aa1 1793 Enw
LiquidHub
 
REDE LOCAL - COMPLETO
REDE LOCAL - COMPLETOREDE LOCAL - COMPLETO
REDE LOCAL - COMPLETO
Elizeu Ferro
 
Colt wholesale vpn customer presentation
Colt wholesale vpn customer presentationColt wholesale vpn customer presentation
Colt wholesale vpn customer presentation
acaiani
 
AWS Cloud School | London - Part 1
AWS Cloud School | London - Part 1AWS Cloud School | London - Part 1
AWS Cloud School | London - Part 1
Amazon Web Services
 

En vedette (20)

Wsus sample scripts
Wsus sample scriptsWsus sample scripts
Wsus sample scripts
 
Wsus best practices
Wsus best practicesWsus best practices
Wsus best practices
 
Redes locais
Redes locaisRedes locais
Redes locais
 
Veterinary Catalog
Veterinary CatalogVeterinary Catalog
Veterinary Catalog
 
4 Aa1 1793 Enw
4 Aa1 1793 Enw4 Aa1 1793 Enw
4 Aa1 1793 Enw
 
Zombie DNS
Zombie DNSZombie DNS
Zombie DNS
 
Apresentação geral
Apresentação geralApresentação geral
Apresentação geral
 
Comunicacoes opticas I
Comunicacoes opticas IComunicacoes opticas I
Comunicacoes opticas I
 
REDE LOCAL - COMPLETO
REDE LOCAL - COMPLETOREDE LOCAL - COMPLETO
REDE LOCAL - COMPLETO
 
Coletânea de exercícios informatica
Coletânea de exercícios informaticaColetânea de exercícios informatica
Coletânea de exercícios informatica
 
Colt wholesale vpn customer presentation
Colt wholesale vpn customer presentationColt wholesale vpn customer presentation
Colt wholesale vpn customer presentation
 
Proxy list
Proxy listProxy list
Proxy list
 
Aligning Sales and Marketing Measurement - Tracking KPIs that Matter
Aligning Sales and Marketing Measurement - Tracking KPIs that MatterAligning Sales and Marketing Measurement - Tracking KPIs that Matter
Aligning Sales and Marketing Measurement - Tracking KPIs that Matter
 
Senai recife
Senai   recifeSenai   recife
Senai recife
 
Manual ited, 3ª edição
Manual ited, 3ª ediçãoManual ited, 3ª edição
Manual ited, 3ª edição
 
AWS Cloud School | London - Part 1
AWS Cloud School | London - Part 1AWS Cloud School | London - Part 1
AWS Cloud School | London - Part 1
 
Fundamentos de Quimica
Fundamentos de QuimicaFundamentos de Quimica
Fundamentos de Quimica
 
Introdução rede- I unidade
Introdução rede- I unidadeIntrodução rede- I unidade
Introdução rede- I unidade
 
Legislação mopp
Legislação moppLegislação mopp
Legislação mopp
 
Neumotorax clase unpa 2011
Neumotorax clase unpa 2011Neumotorax clase unpa 2011
Neumotorax clase unpa 2011
 

Similaire à How-To: WSUS Reporting Made Easier

System Center Configuration Manager 2012 Overview
System Center Configuration Manager 2012 OverviewSystem Center Configuration Manager 2012 Overview
System Center Configuration Manager 2012 Overview
Amit Gatenyo
 
Software Development Life Cycle Testingtypes
Software Development Life Cycle TestingtypesSoftware Development Life Cycle Testingtypes
Software Development Life Cycle Testingtypes
vladimir zaremba
 
Scvmm Technical Overview.Son Vu
Scvmm Technical Overview.Son VuScvmm Technical Overview.Son Vu
Scvmm Technical Overview.Son Vu
vncson
 
WSO2 Customer Webinar: WEST Interactive’s Deployment Approach and DevOps Prac...
WSO2 Customer Webinar: WEST Interactive’s Deployment Approach and DevOps Prac...WSO2 Customer Webinar: WEST Interactive’s Deployment Approach and DevOps Prac...
WSO2 Customer Webinar: WEST Interactive’s Deployment Approach and DevOps Prac...
WSO2
 

Similaire à How-To: WSUS Reporting Made Easier (20)

Common WSUS Issues in Deployment Operations and Diagnostics
Common WSUS Issues in Deployment Operations and DiagnosticsCommon WSUS Issues in Deployment Operations and Diagnostics
Common WSUS Issues in Deployment Operations and Diagnostics
 
Azure System Management
Azure System ManagementAzure System Management
Azure System Management
 
Llunitebe2018 best of_two_worlds-manage.your.servers.the.azure.or.configmgr.way
Llunitebe2018 best of_two_worlds-manage.your.servers.the.azure.or.configmgr.wayLlunitebe2018 best of_two_worlds-manage.your.servers.the.azure.or.configmgr.way
Llunitebe2018 best of_two_worlds-manage.your.servers.the.azure.or.configmgr.way
 
System Center Configuration Manager 2012 Overview
System Center Configuration Manager 2012 OverviewSystem Center Configuration Manager 2012 Overview
System Center Configuration Manager 2012 Overview
 
WSUS Deployment on Windows Server 2008
WSUS Deployment on Windows Server 2008WSUS Deployment on Windows Server 2008
WSUS Deployment on Windows Server 2008
 
Vistapresentation2
Vistapresentation2Vistapresentation2
Vistapresentation2
 
Managing Updates with System Center Configuration Manager 2012
Managing Updates with System Center Configuration Manager 2012Managing Updates with System Center Configuration Manager 2012
Managing Updates with System Center Configuration Manager 2012
 
Software Development Life Cycle Testingtypes
Software Development Life Cycle TestingtypesSoftware Development Life Cycle Testingtypes
Software Development Life Cycle Testingtypes
 
Virtualising Tier 1 Apps
Virtualising Tier 1 AppsVirtualising Tier 1 Apps
Virtualising Tier 1 Apps
 
Testing & Improving Performance in IBM Cognos BI, Plus Automated Cognos Testi...
Testing & Improving Performance in IBM Cognos BI, Plus Automated Cognos Testi...Testing & Improving Performance in IBM Cognos BI, Plus Automated Cognos Testi...
Testing & Improving Performance in IBM Cognos BI, Plus Automated Cognos Testi...
 
System Center Essentials
System Center EssentialsSystem Center Essentials
System Center Essentials
 
DC Metro And Federal VMUG March 2009
DC Metro And Federal VMUG March 2009DC Metro And Federal VMUG March 2009
DC Metro And Federal VMUG March 2009
 
VMware App Volumes Troubleshooting
VMware App Volumes TroubleshootingVMware App Volumes Troubleshooting
VMware App Volumes Troubleshooting
 
C Cure Users Group Presentation Final 4
C Cure Users Group Presentation Final 4C Cure Users Group Presentation Final 4
C Cure Users Group Presentation Final 4
 
Xandria datasheet
Xandria datasheet Xandria datasheet
Xandria datasheet
 
Polarian Integration Adapter - Datasheet
Polarian Integration Adapter - DatasheetPolarian Integration Adapter - Datasheet
Polarian Integration Adapter - Datasheet
 
IUG ATL PC 9.5
IUG ATL PC 9.5IUG ATL PC 9.5
IUG ATL PC 9.5
 
Middleware monitoring with Applications Manager
Middleware monitoring with Applications ManagerMiddleware monitoring with Applications Manager
Middleware monitoring with Applications Manager
 
Scvmm Technical Overview.Son Vu
Scvmm Technical Overview.Son VuScvmm Technical Overview.Son Vu
Scvmm Technical Overview.Son Vu
 
WSO2 Customer Webinar: WEST Interactive’s Deployment Approach and DevOps Prac...
WSO2 Customer Webinar: WEST Interactive’s Deployment Approach and DevOps Prac...WSO2 Customer Webinar: WEST Interactive’s Deployment Approach and DevOps Prac...
WSO2 Customer Webinar: WEST Interactive’s Deployment Approach and DevOps Prac...
 

Plus de SolarWinds

Plus de SolarWinds (20)

SolarWinds Government and Education Webinar: Greatest SolarWinds Features I N...
SolarWinds Government and Education Webinar: Greatest SolarWinds Features I N...SolarWinds Government and Education Webinar: Greatest SolarWinds Features I N...
SolarWinds Government and Education Webinar: Greatest SolarWinds Features I N...
 
SolarWinds Government and Education Webinar: Gaps Exist in Your Monitoring In...
SolarWinds Government and Education Webinar: Gaps Exist in Your Monitoring In...SolarWinds Government and Education Webinar: Gaps Exist in Your Monitoring In...
SolarWinds Government and Education Webinar: Gaps Exist in Your Monitoring In...
 
Government Webinar: Alerting and Reporting in the Age of Observability
Government Webinar: Alerting and Reporting in the Age of ObservabilityGovernment Webinar: Alerting and Reporting in the Age of Observability
Government Webinar: Alerting and Reporting in the Age of Observability
 
Government and Education Webinar: Full Stack Observability
Government and Education Webinar: Full Stack ObservabilityGovernment and Education Webinar: Full Stack Observability
Government and Education Webinar: Full Stack Observability
 
Government and Education Webinar: Public Sector Cybersecurity Survey - What I...
Government and Education Webinar: Public Sector Cybersecurity Survey - What I...Government and Education Webinar: Public Sector Cybersecurity Survey - What I...
Government and Education Webinar: Public Sector Cybersecurity Survey - What I...
 
Becoming Secure By Design: Questions You Should Ask Your Software Vendors
Becoming Secure By Design: Questions You Should Ask Your Software VendorsBecoming Secure By Design: Questions You Should Ask Your Software Vendors
Becoming Secure By Design: Questions You Should Ask Your Software Vendors
 
Government and Education Webinar: Real-Time Mission, CIO, and Command Dashboards
Government and Education Webinar: Real-Time Mission, CIO, and Command DashboardsGovernment and Education Webinar: Real-Time Mission, CIO, and Command Dashboards
Government and Education Webinar: Real-Time Mission, CIO, and Command Dashboards
 
Government and Education Webinar: Simplify Your Database Performance Manageme...
Government and Education Webinar: Simplify Your Database Performance Manageme...Government and Education Webinar: Simplify Your Database Performance Manageme...
Government and Education Webinar: Simplify Your Database Performance Manageme...
 
Government and Education Webinar: SolarWinds Orion Platform: Audit and Stream...
Government and Education Webinar: SolarWinds Orion Platform: Audit and Stream...Government and Education Webinar: SolarWinds Orion Platform: Audit and Stream...
Government and Education Webinar: SolarWinds Orion Platform: Audit and Stream...
 
Government and Education Webinar: Leverage Automation to Improve IT Operations
Government and Education Webinar: Leverage Automation to Improve IT OperationsGovernment and Education Webinar: Leverage Automation to Improve IT Operations
Government and Education Webinar: Leverage Automation to Improve IT Operations
 
Government and Education Webinar: Improving Application Performance
Government and Education Webinar: Improving Application PerformanceGovernment and Education Webinar: Improving Application Performance
Government and Education Webinar: Improving Application Performance
 
Government and Education: IT Tools to Support Your Hybrid Workforce
Government and Education: IT Tools to Support Your Hybrid WorkforceGovernment and Education: IT Tools to Support Your Hybrid Workforce
Government and Education: IT Tools to Support Your Hybrid Workforce
 
Government and Education Webinar: There's More Than One Way to Monitor SQL Da...
Government and Education Webinar: There's More Than One Way to Monitor SQL Da...Government and Education Webinar: There's More Than One Way to Monitor SQL Da...
Government and Education Webinar: There's More Than One Way to Monitor SQL Da...
 
SolarWinds Government and Education Webinar: Virtual Technology Briefing 08.0...
SolarWinds Government and Education Webinar: Virtual Technology Briefing 08.0...SolarWinds Government and Education Webinar: Virtual Technology Briefing 08.0...
SolarWinds Government and Education Webinar: Virtual Technology Briefing 08.0...
 
Government and Education Webinar: Zero-Trust Panel Discussion
Government and Education Webinar: Zero-Trust Panel Discussion Government and Education Webinar: Zero-Trust Panel Discussion
Government and Education Webinar: Zero-Trust Panel Discussion
 
Government and Education: Leveraging The SolarWinds Orion Assistance Program ...
Government and Education: Leveraging The SolarWinds Orion Assistance Program ...Government and Education: Leveraging The SolarWinds Orion Assistance Program ...
Government and Education: Leveraging The SolarWinds Orion Assistance Program ...
 
Government and Education Webinar: SQL Server—Advanced Performance Tuning
Government and Education Webinar: SQL Server—Advanced Performance Tuning Government and Education Webinar: SQL Server—Advanced Performance Tuning
Government and Education Webinar: SQL Server—Advanced Performance Tuning
 
Government and Education Webinar: Recovering IP Addresses on Your Network
Government and Education Webinar: Recovering IP Addresses on Your NetworkGovernment and Education Webinar: Recovering IP Addresses on Your Network
Government and Education Webinar: Recovering IP Addresses on Your Network
 
Government and Education Webinar: Optimize Performance With Advanced Host Mon...
Government and Education Webinar: Optimize Performance With Advanced Host Mon...Government and Education Webinar: Optimize Performance With Advanced Host Mon...
Government and Education Webinar: Optimize Performance With Advanced Host Mon...
 
Government and Education Webinar: Conquering Remote Work IT Challenges
Government and Education Webinar: Conquering Remote Work IT Challenges Government and Education Webinar: Conquering Remote Work IT Challenges
Government and Education Webinar: Conquering Remote Work IT Challenges
 

Dernier

Modular Monolith - a Practical Alternative to Microservices @ Devoxx UK 2024
Modular Monolith - a Practical Alternative to Microservices @ Devoxx UK 2024Modular Monolith - a Practical Alternative to Microservices @ Devoxx UK 2024
Modular Monolith - a Practical Alternative to Microservices @ Devoxx UK 2024
Victor Rentea
 
Why Teams call analytics are critical to your entire business
Why Teams call analytics are critical to your entire businessWhy Teams call analytics are critical to your entire business
Why Teams call analytics are critical to your entire business
panagenda
 
Finding Java's Hidden Performance Traps @ DevoxxUK 2024
Finding Java's Hidden Performance Traps @ DevoxxUK 2024Finding Java's Hidden Performance Traps @ DevoxxUK 2024
Finding Java's Hidden Performance Traps @ DevoxxUK 2024
Victor Rentea
 

Dernier (20)

Web Form Automation for Bonterra Impact Management (fka Social Solutions Apri...
Web Form Automation for Bonterra Impact Management (fka Social Solutions Apri...Web Form Automation for Bonterra Impact Management (fka Social Solutions Apri...
Web Form Automation for Bonterra Impact Management (fka Social Solutions Apri...
 
Connector Corner: Accelerate revenue generation using UiPath API-centric busi...
Connector Corner: Accelerate revenue generation using UiPath API-centric busi...Connector Corner: Accelerate revenue generation using UiPath API-centric busi...
Connector Corner: Accelerate revenue generation using UiPath API-centric busi...
 
Corporate and higher education May webinar.pptx
Corporate and higher education May webinar.pptxCorporate and higher education May webinar.pptx
Corporate and higher education May webinar.pptx
 
Understanding the FAA Part 107 License ..
Understanding the FAA Part 107 License ..Understanding the FAA Part 107 License ..
Understanding the FAA Part 107 License ..
 
TrustArc Webinar - Unlock the Power of AI-Driven Data Discovery
TrustArc Webinar - Unlock the Power of AI-Driven Data DiscoveryTrustArc Webinar - Unlock the Power of AI-Driven Data Discovery
TrustArc Webinar - Unlock the Power of AI-Driven Data Discovery
 
Strategies for Landing an Oracle DBA Job as a Fresher
Strategies for Landing an Oracle DBA Job as a FresherStrategies for Landing an Oracle DBA Job as a Fresher
Strategies for Landing an Oracle DBA Job as a Fresher
 
AWS Community Day CPH - Three problems of Terraform
AWS Community Day CPH - Three problems of TerraformAWS Community Day CPH - Three problems of Terraform
AWS Community Day CPH - Three problems of Terraform
 
Elevate Developer Efficiency & build GenAI Application with Amazon Q​
Elevate Developer Efficiency & build GenAI Application with Amazon Q​Elevate Developer Efficiency & build GenAI Application with Amazon Q​
Elevate Developer Efficiency & build GenAI Application with Amazon Q​
 
ProductAnonymous-April2024-WinProductDiscovery-MelissaKlemke
ProductAnonymous-April2024-WinProductDiscovery-MelissaKlemkeProductAnonymous-April2024-WinProductDiscovery-MelissaKlemke
ProductAnonymous-April2024-WinProductDiscovery-MelissaKlemke
 
DBX First Quarter 2024 Investor Presentation
DBX First Quarter 2024 Investor PresentationDBX First Quarter 2024 Investor Presentation
DBX First Quarter 2024 Investor Presentation
 
Apidays New York 2024 - APIs in 2030: The Risk of Technological Sleepwalk by ...
Apidays New York 2024 - APIs in 2030: The Risk of Technological Sleepwalk by ...Apidays New York 2024 - APIs in 2030: The Risk of Technological Sleepwalk by ...
Apidays New York 2024 - APIs in 2030: The Risk of Technological Sleepwalk by ...
 
WSO2's API Vision: Unifying Control, Empowering Developers
WSO2's API Vision: Unifying Control, Empowering DevelopersWSO2's API Vision: Unifying Control, Empowering Developers
WSO2's API Vision: Unifying Control, Empowering Developers
 
DEV meet-up UiPath Document Understanding May 7 2024 Amsterdam
DEV meet-up UiPath Document Understanding May 7 2024 AmsterdamDEV meet-up UiPath Document Understanding May 7 2024 Amsterdam
DEV meet-up UiPath Document Understanding May 7 2024 Amsterdam
 
Modular Monolith - a Practical Alternative to Microservices @ Devoxx UK 2024
Modular Monolith - a Practical Alternative to Microservices @ Devoxx UK 2024Modular Monolith - a Practical Alternative to Microservices @ Devoxx UK 2024
Modular Monolith - a Practical Alternative to Microservices @ Devoxx UK 2024
 
Strategize a Smooth Tenant-to-tenant Migration and Copilot Takeoff
Strategize a Smooth Tenant-to-tenant Migration and Copilot TakeoffStrategize a Smooth Tenant-to-tenant Migration and Copilot Takeoff
Strategize a Smooth Tenant-to-tenant Migration and Copilot Takeoff
 
Why Teams call analytics are critical to your entire business
Why Teams call analytics are critical to your entire businessWhy Teams call analytics are critical to your entire business
Why Teams call analytics are critical to your entire business
 
How to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected WorkerHow to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected Worker
 
Finding Java's Hidden Performance Traps @ DevoxxUK 2024
Finding Java's Hidden Performance Traps @ DevoxxUK 2024Finding Java's Hidden Performance Traps @ DevoxxUK 2024
Finding Java's Hidden Performance Traps @ DevoxxUK 2024
 
Repurposing LNG terminals for Hydrogen Ammonia: Feasibility and Cost Saving
Repurposing LNG terminals for Hydrogen Ammonia: Feasibility and Cost SavingRepurposing LNG terminals for Hydrogen Ammonia: Feasibility and Cost Saving
Repurposing LNG terminals for Hydrogen Ammonia: Feasibility and Cost Saving
 
Exploring Multimodal Embeddings with Milvus
Exploring Multimodal Embeddings with MilvusExploring Multimodal Embeddings with Milvus
Exploring Multimodal Embeddings with Milvus
 

How-To: WSUS Reporting Made Easier