Welcome to the Inedo Forums! Check out the Forums Guide for help getting started.

If you are experiencing any issues with the forum software, please visit the Contact Form on our website and let us know!

Package Upload Information



  • Hi,

    We are using Proget 5.1.15 and need to identify a user who has uploaded particular NuGet packages to a feed.

    Please can you tell me where I can find this information.

    Thanks

    Dave


  • inedo-engineer

    This would be captured in an event (Admin > ProGet Event Log); the UI doesn't currently support package-level queries (you can filter a few other ways), but you could do a database query pretty easily...

    SELECT *
    FROM [EventOccurrences]
     WHERE [Event_Code] = 'PKGADD'
       AND [Feed_Id] = 2
       AND [Details_Xml].value('(/Details/@Package_Name)[1]', 'varchar(max)')  LIKE 'Carbon'
       AND [Details_Xml].value('(/Details/@Package_Version)[1]', 'varchar(max)')  LIKE '2.9.0'
    

Log in to reply
 

Inedo Website HomeSupport HomeCode of ConductForums GuideDocumentation