├── .gitignore ├── Documentation ├── Documentation.md ├── Home_CollectionItemEditor.png ├── Home_CollectionSetEditor.png ├── Home_CollectionSetManager.png ├── Home_CollectorTypeEditor.png ├── Home_Connect.png ├── Home_ParametersEditor.png ├── Home_SQLEditor.png ├── Home_XEDataForm.png ├── Home_XEReaderParametersEditor_1.png ├── Home_XEReaderParametersEditor_2.png ├── Home_XMLEditor.png ├── Home_collectionset.png ├── Screenshots.md ├── Using the TSQL Collector type.md ├── Using the TSQL Collector type_collectionset.png ├── Using the XEReader Collector type.md ├── Using the XEReader Collector type_XEReaderCollectionSet.png └── Using the XEReader Collector type_email.png ├── ExtendedTSQLCollector ├── CollectionSet │ ├── CollectionSet.database │ ├── CollectionSet.dtproj │ ├── CollectionSet.sln │ ├── CollectionSetSetup.sql │ ├── ExtendedTSQLCollect.dtsx │ ├── ExtendedTSQLUpload.dtsx │ ├── ExtendedXEReaderCollect.dtsx │ ├── ExtendedXEReaderUpload.dtsx │ ├── Setup │ │ └── CollectionSetSetup.sql │ ├── test.dtsconfig │ └── test.dtsx ├── CollectionSetManager │ ├── 1397849464_68701.ico │ ├── 1397849640_69471.png │ ├── AboutBox.Designer.cs │ ├── AboutBox.cs │ ├── AboutBox.resx │ ├── App.config │ ├── Banner.png │ ├── CollectionItemControl.Designer.cs │ ├── CollectionItemControl.cs │ ├── CollectionItemControl.resx │ ├── CollectionSetControl.Designer.cs │ ├── CollectionSetControl.cs │ ├── CollectionSetControl.resx │ ├── CollectionSetDataForm.Designer.cs │ ├── CollectionSetDataForm.cs │ ├── CollectionSetDataForm.resx │ ├── CollectionSetManager.csproj │ ├── CollectionSetManager.csproj.vspscc │ ├── CollectorTypeControl.Designer.cs │ ├── CollectorTypeControl.cs │ ├── CollectorTypeControl.resx │ ├── ComboboxItem.cs │ ├── Main.Designer.cs │ ├── Main.cs │ ├── Main.resx │ ├── Manager.Designer.cs │ ├── Manager.cs │ ├── Manager.resx │ ├── Program.cs │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings │ ├── Resources │ │ ├── 1397849640_69471.ico │ │ ├── DataCollection.ico │ │ ├── folder.ico │ │ ├── jobs.ico │ │ ├── package.ico │ │ ├── server.ico │ │ ├── steps.ico │ │ └── text3835.png │ ├── SelectPackageDialog.Designer.cs │ ├── SelectPackageDialog.cs │ ├── SelectPackageDialog.resx │ ├── TSQLParametersEditor.Designer.cs │ ├── TSQLParametersEditor.cs │ ├── TSQLParametersEditor.resx │ ├── TablessControl.cs │ ├── XEReaderParametersEditor.Designer.cs │ ├── XEReaderParametersEditor.cs │ ├── XEReaderParametersEditor.resx │ ├── XMLEditor.Designer.cs │ ├── XMLEditor.cs │ ├── XMLEditor.resx │ ├── get_tv_items.sql │ └── packages.config ├── Common │ ├── AlertConfig.cs │ ├── AlertDispatcher.cs │ ├── CollectionItemConfig.cs │ ├── CollectorConfig.cs │ ├── CollectorLogger.cs │ ├── CollectorUtils.cs │ ├── Common.csproj │ ├── Common.csproj.vspscc │ ├── DataTableTSQLAdapter.cs │ ├── EmailAlertDispatcher.cs │ ├── Enum.cs │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ └── Resources.resx │ ├── Resources │ │ ├── DataTableHtmlXslt.xml │ │ └── HtmlTableStyle.css │ ├── TSQLCollectionItemConfig.cs │ ├── TSQLCollectorConfig.cs │ ├── Uploader.cs │ ├── XEReaderCollectionItemConfig.cs │ └── XEReaderCollectorConfig.cs ├── ExtendedTSQLCollector.sln ├── ExtendedTSQLCollector.vssscc ├── ExtendedTSQLCollector │ ├── App.config │ ├── Collector.cs │ ├── ExtendedTSQLCollector.csproj │ ├── ExtendedTSQLCollector.csproj.vspscc │ ├── Program.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ └── packages.config ├── ExtendedTSQLUploader │ ├── App.config │ ├── ExtendedTSQLUploader.csproj │ ├── ExtendedTSQLUploader.csproj.vspscc │ ├── Program.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── Uploader.cs │ └── packages.config ├── ExtendedXEReaderCollector │ ├── Collector.cs │ ├── ExtendedXEReaderCollector.csproj │ ├── Program.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── app.config │ └── packages.config ├── ExtendedXEReaderCollectorTrigger │ ├── App.config │ ├── ExtendedXEReaderCollectorTrigger.csproj │ ├── Program.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ └── packages.config ├── ExtendedXEReaderUploader │ ├── App.config │ ├── ExtendedXEReaderUploader.csproj │ ├── Program.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── Uploader.cs │ └── packages.config ├── InstallCollectorType │ ├── App.config │ ├── CollectorTypeInstaller.cs │ ├── InstallCollectorType.csproj │ ├── InstallCollectorType.csproj.vspscc │ ├── Program.cs │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ └── Resources.resx │ ├── Resources │ │ ├── XEReaderParamFormatter.xslt │ │ └── XEReaderParamSchema.xml │ └── packages.config ├── Packages.dgml ├── Setup │ ├── Product.wxs │ ├── Setup.wixproj │ └── Setup.wixproj.vspscc ├── UpgradeLog.htm ├── UserControlLibrary │ ├── Converters │ │ ├── DateTimeDoubleConverter.cs │ │ └── TimeSpanConverter.cs │ ├── DateRangeSlider │ │ ├── DateRangeSlider.xaml │ │ ├── DateRangeSlider.xaml.cs │ │ └── SliderResources.xaml │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings │ └── UserControlLibrary.csproj └── packages │ └── repositories.config ├── Readme.md └── license.md /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaghettidba/ExtendedTSQLCollector/HEAD/.gitignore -------------------------------------------------------------------------------- /Documentation/Documentation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaghettidba/ExtendedTSQLCollector/HEAD/Documentation/Documentation.md -------------------------------------------------------------------------------- /Documentation/Home_CollectionItemEditor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaghettidba/ExtendedTSQLCollector/HEAD/Documentation/Home_CollectionItemEditor.png -------------------------------------------------------------------------------- /Documentation/Home_CollectionSetEditor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaghettidba/ExtendedTSQLCollector/HEAD/Documentation/Home_CollectionSetEditor.png -------------------------------------------------------------------------------- /Documentation/Home_CollectionSetManager.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaghettidba/ExtendedTSQLCollector/HEAD/Documentation/Home_CollectionSetManager.png -------------------------------------------------------------------------------- /Documentation/Home_CollectorTypeEditor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaghettidba/ExtendedTSQLCollector/HEAD/Documentation/Home_CollectorTypeEditor.png -------------------------------------------------------------------------------- /Documentation/Home_Connect.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaghettidba/ExtendedTSQLCollector/HEAD/Documentation/Home_Connect.png -------------------------------------------------------------------------------- /Documentation/Home_ParametersEditor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaghettidba/ExtendedTSQLCollector/HEAD/Documentation/Home_ParametersEditor.png -------------------------------------------------------------------------------- /Documentation/Home_SQLEditor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaghettidba/ExtendedTSQLCollector/HEAD/Documentation/Home_SQLEditor.png -------------------------------------------------------------------------------- /Documentation/Home_XEDataForm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaghettidba/ExtendedTSQLCollector/HEAD/Documentation/Home_XEDataForm.png -------------------------------------------------------------------------------- /Documentation/Home_XEReaderParametersEditor_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaghettidba/ExtendedTSQLCollector/HEAD/Documentation/Home_XEReaderParametersEditor_1.png -------------------------------------------------------------------------------- /Documentation/Home_XEReaderParametersEditor_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaghettidba/ExtendedTSQLCollector/HEAD/Documentation/Home_XEReaderParametersEditor_2.png -------------------------------------------------------------------------------- /Documentation/Home_XMLEditor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaghettidba/ExtendedTSQLCollector/HEAD/Documentation/Home_XMLEditor.png -------------------------------------------------------------------------------- /Documentation/Home_collectionset.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaghettidba/ExtendedTSQLCollector/HEAD/Documentation/Home_collectionset.png -------------------------------------------------------------------------------- /Documentation/Screenshots.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaghettidba/ExtendedTSQLCollector/HEAD/Documentation/Screenshots.md -------------------------------------------------------------------------------- /Documentation/Using the TSQL Collector type.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaghettidba/ExtendedTSQLCollector/HEAD/Documentation/Using the TSQL Collector type.md -------------------------------------------------------------------------------- /Documentation/Using the TSQL Collector type_collectionset.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaghettidba/ExtendedTSQLCollector/HEAD/Documentation/Using the TSQL Collector type_collectionset.png -------------------------------------------------------------------------------- /Documentation/Using the XEReader Collector type.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaghettidba/ExtendedTSQLCollector/HEAD/Documentation/Using the XEReader Collector type.md -------------------------------------------------------------------------------- /Documentation/Using the XEReader Collector type_XEReaderCollectionSet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaghettidba/ExtendedTSQLCollector/HEAD/Documentation/Using the XEReader Collector type_XEReaderCollectionSet.png -------------------------------------------------------------------------------- /Documentation/Using the XEReader Collector type_email.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaghettidba/ExtendedTSQLCollector/HEAD/Documentation/Using the XEReader Collector type_email.png -------------------------------------------------------------------------------- /ExtendedTSQLCollector/CollectionSet/CollectionSet.database: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaghettidba/ExtendedTSQLCollector/HEAD/ExtendedTSQLCollector/CollectionSet/CollectionSet.database -------------------------------------------------------------------------------- /ExtendedTSQLCollector/CollectionSet/CollectionSet.dtproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaghettidba/ExtendedTSQLCollector/HEAD/ExtendedTSQLCollector/CollectionSet/CollectionSet.dtproj -------------------------------------------------------------------------------- /ExtendedTSQLCollector/CollectionSet/CollectionSet.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaghettidba/ExtendedTSQLCollector/HEAD/ExtendedTSQLCollector/CollectionSet/CollectionSet.sln -------------------------------------------------------------------------------- /ExtendedTSQLCollector/CollectionSet/CollectionSetSetup.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaghettidba/ExtendedTSQLCollector/HEAD/ExtendedTSQLCollector/CollectionSet/CollectionSetSetup.sql -------------------------------------------------------------------------------- /ExtendedTSQLCollector/CollectionSet/ExtendedTSQLCollect.dtsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaghettidba/ExtendedTSQLCollector/HEAD/ExtendedTSQLCollector/CollectionSet/ExtendedTSQLCollect.dtsx -------------------------------------------------------------------------------- /ExtendedTSQLCollector/CollectionSet/ExtendedTSQLUpload.dtsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaghettidba/ExtendedTSQLCollector/HEAD/ExtendedTSQLCollector/CollectionSet/ExtendedTSQLUpload.dtsx -------------------------------------------------------------------------------- /ExtendedTSQLCollector/CollectionSet/ExtendedXEReaderCollect.dtsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaghettidba/ExtendedTSQLCollector/HEAD/ExtendedTSQLCollector/CollectionSet/ExtendedXEReaderCollect.dtsx -------------------------------------------------------------------------------- /ExtendedTSQLCollector/CollectionSet/ExtendedXEReaderUpload.dtsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaghettidba/ExtendedTSQLCollector/HEAD/ExtendedTSQLCollector/CollectionSet/ExtendedXEReaderUpload.dtsx -------------------------------------------------------------------------------- /ExtendedTSQLCollector/CollectionSet/Setup/CollectionSetSetup.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaghettidba/ExtendedTSQLCollector/HEAD/ExtendedTSQLCollector/CollectionSet/Setup/CollectionSetSetup.sql -------------------------------------------------------------------------------- /ExtendedTSQLCollector/CollectionSet/test.dtsconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaghettidba/ExtendedTSQLCollector/HEAD/ExtendedTSQLCollector/CollectionSet/test.dtsconfig -------------------------------------------------------------------------------- /ExtendedTSQLCollector/CollectionSet/test.dtsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaghettidba/ExtendedTSQLCollector/HEAD/ExtendedTSQLCollector/CollectionSet/test.dtsx -------------------------------------------------------------------------------- /ExtendedTSQLCollector/CollectionSetManager/1397849464_68701.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaghettidba/ExtendedTSQLCollector/HEAD/ExtendedTSQLCollector/CollectionSetManager/1397849464_68701.ico -------------------------------------------------------------------------------- /ExtendedTSQLCollector/CollectionSetManager/1397849640_69471.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaghettidba/ExtendedTSQLCollector/HEAD/ExtendedTSQLCollector/CollectionSetManager/1397849640_69471.png -------------------------------------------------------------------------------- /ExtendedTSQLCollector/CollectionSetManager/AboutBox.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaghettidba/ExtendedTSQLCollector/HEAD/ExtendedTSQLCollector/CollectionSetManager/AboutBox.Designer.cs -------------------------------------------------------------------------------- /ExtendedTSQLCollector/CollectionSetManager/AboutBox.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaghettidba/ExtendedTSQLCollector/HEAD/ExtendedTSQLCollector/CollectionSetManager/AboutBox.cs -------------------------------------------------------------------------------- /ExtendedTSQLCollector/CollectionSetManager/AboutBox.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaghettidba/ExtendedTSQLCollector/HEAD/ExtendedTSQLCollector/CollectionSetManager/AboutBox.resx -------------------------------------------------------------------------------- /ExtendedTSQLCollector/CollectionSetManager/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaghettidba/ExtendedTSQLCollector/HEAD/ExtendedTSQLCollector/CollectionSetManager/App.config -------------------------------------------------------------------------------- /ExtendedTSQLCollector/CollectionSetManager/Banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaghettidba/ExtendedTSQLCollector/HEAD/ExtendedTSQLCollector/CollectionSetManager/Banner.png -------------------------------------------------------------------------------- /ExtendedTSQLCollector/CollectionSetManager/CollectionItemControl.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaghettidba/ExtendedTSQLCollector/HEAD/ExtendedTSQLCollector/CollectionSetManager/CollectionItemControl.Designer.cs -------------------------------------------------------------------------------- /ExtendedTSQLCollector/CollectionSetManager/CollectionItemControl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaghettidba/ExtendedTSQLCollector/HEAD/ExtendedTSQLCollector/CollectionSetManager/CollectionItemControl.cs -------------------------------------------------------------------------------- /ExtendedTSQLCollector/CollectionSetManager/CollectionItemControl.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaghettidba/ExtendedTSQLCollector/HEAD/ExtendedTSQLCollector/CollectionSetManager/CollectionItemControl.resx -------------------------------------------------------------------------------- /ExtendedTSQLCollector/CollectionSetManager/CollectionSetControl.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaghettidba/ExtendedTSQLCollector/HEAD/ExtendedTSQLCollector/CollectionSetManager/CollectionSetControl.Designer.cs -------------------------------------------------------------------------------- /ExtendedTSQLCollector/CollectionSetManager/CollectionSetControl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaghettidba/ExtendedTSQLCollector/HEAD/ExtendedTSQLCollector/CollectionSetManager/CollectionSetControl.cs -------------------------------------------------------------------------------- /ExtendedTSQLCollector/CollectionSetManager/CollectionSetControl.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaghettidba/ExtendedTSQLCollector/HEAD/ExtendedTSQLCollector/CollectionSetManager/CollectionSetControl.resx -------------------------------------------------------------------------------- /ExtendedTSQLCollector/CollectionSetManager/CollectionSetDataForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaghettidba/ExtendedTSQLCollector/HEAD/ExtendedTSQLCollector/CollectionSetManager/CollectionSetDataForm.Designer.cs -------------------------------------------------------------------------------- /ExtendedTSQLCollector/CollectionSetManager/CollectionSetDataForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaghettidba/ExtendedTSQLCollector/HEAD/ExtendedTSQLCollector/CollectionSetManager/CollectionSetDataForm.cs -------------------------------------------------------------------------------- /ExtendedTSQLCollector/CollectionSetManager/CollectionSetDataForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaghettidba/ExtendedTSQLCollector/HEAD/ExtendedTSQLCollector/CollectionSetManager/CollectionSetDataForm.resx -------------------------------------------------------------------------------- /ExtendedTSQLCollector/CollectionSetManager/CollectionSetManager.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaghettidba/ExtendedTSQLCollector/HEAD/ExtendedTSQLCollector/CollectionSetManager/CollectionSetManager.csproj -------------------------------------------------------------------------------- /ExtendedTSQLCollector/CollectionSetManager/CollectionSetManager.csproj.vspscc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaghettidba/ExtendedTSQLCollector/HEAD/ExtendedTSQLCollector/CollectionSetManager/CollectionSetManager.csproj.vspscc -------------------------------------------------------------------------------- /ExtendedTSQLCollector/CollectionSetManager/CollectorTypeControl.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaghettidba/ExtendedTSQLCollector/HEAD/ExtendedTSQLCollector/CollectionSetManager/CollectorTypeControl.Designer.cs -------------------------------------------------------------------------------- /ExtendedTSQLCollector/CollectionSetManager/CollectorTypeControl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaghettidba/ExtendedTSQLCollector/HEAD/ExtendedTSQLCollector/CollectionSetManager/CollectorTypeControl.cs -------------------------------------------------------------------------------- /ExtendedTSQLCollector/CollectionSetManager/CollectorTypeControl.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaghettidba/ExtendedTSQLCollector/HEAD/ExtendedTSQLCollector/CollectionSetManager/CollectorTypeControl.resx -------------------------------------------------------------------------------- /ExtendedTSQLCollector/CollectionSetManager/ComboboxItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaghettidba/ExtendedTSQLCollector/HEAD/ExtendedTSQLCollector/CollectionSetManager/ComboboxItem.cs -------------------------------------------------------------------------------- /ExtendedTSQLCollector/CollectionSetManager/Main.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaghettidba/ExtendedTSQLCollector/HEAD/ExtendedTSQLCollector/CollectionSetManager/Main.Designer.cs -------------------------------------------------------------------------------- /ExtendedTSQLCollector/CollectionSetManager/Main.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaghettidba/ExtendedTSQLCollector/HEAD/ExtendedTSQLCollector/CollectionSetManager/Main.cs -------------------------------------------------------------------------------- /ExtendedTSQLCollector/CollectionSetManager/Main.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaghettidba/ExtendedTSQLCollector/HEAD/ExtendedTSQLCollector/CollectionSetManager/Main.resx -------------------------------------------------------------------------------- /ExtendedTSQLCollector/CollectionSetManager/Manager.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaghettidba/ExtendedTSQLCollector/HEAD/ExtendedTSQLCollector/CollectionSetManager/Manager.Designer.cs -------------------------------------------------------------------------------- /ExtendedTSQLCollector/CollectionSetManager/Manager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaghettidba/ExtendedTSQLCollector/HEAD/ExtendedTSQLCollector/CollectionSetManager/Manager.cs -------------------------------------------------------------------------------- /ExtendedTSQLCollector/CollectionSetManager/Manager.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaghettidba/ExtendedTSQLCollector/HEAD/ExtendedTSQLCollector/CollectionSetManager/Manager.resx -------------------------------------------------------------------------------- /ExtendedTSQLCollector/CollectionSetManager/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaghettidba/ExtendedTSQLCollector/HEAD/ExtendedTSQLCollector/CollectionSetManager/Program.cs -------------------------------------------------------------------------------- /ExtendedTSQLCollector/CollectionSetManager/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaghettidba/ExtendedTSQLCollector/HEAD/ExtendedTSQLCollector/CollectionSetManager/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /ExtendedTSQLCollector/CollectionSetManager/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaghettidba/ExtendedTSQLCollector/HEAD/ExtendedTSQLCollector/CollectionSetManager/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /ExtendedTSQLCollector/CollectionSetManager/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaghettidba/ExtendedTSQLCollector/HEAD/ExtendedTSQLCollector/CollectionSetManager/Properties/Resources.resx -------------------------------------------------------------------------------- /ExtendedTSQLCollector/CollectionSetManager/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaghettidba/ExtendedTSQLCollector/HEAD/ExtendedTSQLCollector/CollectionSetManager/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /ExtendedTSQLCollector/CollectionSetManager/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaghettidba/ExtendedTSQLCollector/HEAD/ExtendedTSQLCollector/CollectionSetManager/Properties/Settings.settings -------------------------------------------------------------------------------- /ExtendedTSQLCollector/CollectionSetManager/Resources/1397849640_69471.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaghettidba/ExtendedTSQLCollector/HEAD/ExtendedTSQLCollector/CollectionSetManager/Resources/1397849640_69471.ico -------------------------------------------------------------------------------- /ExtendedTSQLCollector/CollectionSetManager/Resources/DataCollection.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaghettidba/ExtendedTSQLCollector/HEAD/ExtendedTSQLCollector/CollectionSetManager/Resources/DataCollection.ico -------------------------------------------------------------------------------- /ExtendedTSQLCollector/CollectionSetManager/Resources/folder.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaghettidba/ExtendedTSQLCollector/HEAD/ExtendedTSQLCollector/CollectionSetManager/Resources/folder.ico -------------------------------------------------------------------------------- /ExtendedTSQLCollector/CollectionSetManager/Resources/jobs.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaghettidba/ExtendedTSQLCollector/HEAD/ExtendedTSQLCollector/CollectionSetManager/Resources/jobs.ico -------------------------------------------------------------------------------- /ExtendedTSQLCollector/CollectionSetManager/Resources/package.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaghettidba/ExtendedTSQLCollector/HEAD/ExtendedTSQLCollector/CollectionSetManager/Resources/package.ico -------------------------------------------------------------------------------- /ExtendedTSQLCollector/CollectionSetManager/Resources/server.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaghettidba/ExtendedTSQLCollector/HEAD/ExtendedTSQLCollector/CollectionSetManager/Resources/server.ico -------------------------------------------------------------------------------- /ExtendedTSQLCollector/CollectionSetManager/Resources/steps.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaghettidba/ExtendedTSQLCollector/HEAD/ExtendedTSQLCollector/CollectionSetManager/Resources/steps.ico -------------------------------------------------------------------------------- /ExtendedTSQLCollector/CollectionSetManager/Resources/text3835.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaghettidba/ExtendedTSQLCollector/HEAD/ExtendedTSQLCollector/CollectionSetManager/Resources/text3835.png -------------------------------------------------------------------------------- /ExtendedTSQLCollector/CollectionSetManager/SelectPackageDialog.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaghettidba/ExtendedTSQLCollector/HEAD/ExtendedTSQLCollector/CollectionSetManager/SelectPackageDialog.Designer.cs -------------------------------------------------------------------------------- /ExtendedTSQLCollector/CollectionSetManager/SelectPackageDialog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaghettidba/ExtendedTSQLCollector/HEAD/ExtendedTSQLCollector/CollectionSetManager/SelectPackageDialog.cs -------------------------------------------------------------------------------- /ExtendedTSQLCollector/CollectionSetManager/SelectPackageDialog.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaghettidba/ExtendedTSQLCollector/HEAD/ExtendedTSQLCollector/CollectionSetManager/SelectPackageDialog.resx -------------------------------------------------------------------------------- /ExtendedTSQLCollector/CollectionSetManager/TSQLParametersEditor.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaghettidba/ExtendedTSQLCollector/HEAD/ExtendedTSQLCollector/CollectionSetManager/TSQLParametersEditor.Designer.cs -------------------------------------------------------------------------------- /ExtendedTSQLCollector/CollectionSetManager/TSQLParametersEditor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaghettidba/ExtendedTSQLCollector/HEAD/ExtendedTSQLCollector/CollectionSetManager/TSQLParametersEditor.cs -------------------------------------------------------------------------------- /ExtendedTSQLCollector/CollectionSetManager/TSQLParametersEditor.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaghettidba/ExtendedTSQLCollector/HEAD/ExtendedTSQLCollector/CollectionSetManager/TSQLParametersEditor.resx -------------------------------------------------------------------------------- /ExtendedTSQLCollector/CollectionSetManager/TablessControl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaghettidba/ExtendedTSQLCollector/HEAD/ExtendedTSQLCollector/CollectionSetManager/TablessControl.cs -------------------------------------------------------------------------------- /ExtendedTSQLCollector/CollectionSetManager/XEReaderParametersEditor.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaghettidba/ExtendedTSQLCollector/HEAD/ExtendedTSQLCollector/CollectionSetManager/XEReaderParametersEditor.Designer.cs -------------------------------------------------------------------------------- /ExtendedTSQLCollector/CollectionSetManager/XEReaderParametersEditor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaghettidba/ExtendedTSQLCollector/HEAD/ExtendedTSQLCollector/CollectionSetManager/XEReaderParametersEditor.cs -------------------------------------------------------------------------------- /ExtendedTSQLCollector/CollectionSetManager/XEReaderParametersEditor.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaghettidba/ExtendedTSQLCollector/HEAD/ExtendedTSQLCollector/CollectionSetManager/XEReaderParametersEditor.resx -------------------------------------------------------------------------------- /ExtendedTSQLCollector/CollectionSetManager/XMLEditor.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaghettidba/ExtendedTSQLCollector/HEAD/ExtendedTSQLCollector/CollectionSetManager/XMLEditor.Designer.cs -------------------------------------------------------------------------------- /ExtendedTSQLCollector/CollectionSetManager/XMLEditor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaghettidba/ExtendedTSQLCollector/HEAD/ExtendedTSQLCollector/CollectionSetManager/XMLEditor.cs -------------------------------------------------------------------------------- /ExtendedTSQLCollector/CollectionSetManager/XMLEditor.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaghettidba/ExtendedTSQLCollector/HEAD/ExtendedTSQLCollector/CollectionSetManager/XMLEditor.resx -------------------------------------------------------------------------------- /ExtendedTSQLCollector/CollectionSetManager/get_tv_items.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaghettidba/ExtendedTSQLCollector/HEAD/ExtendedTSQLCollector/CollectionSetManager/get_tv_items.sql -------------------------------------------------------------------------------- /ExtendedTSQLCollector/CollectionSetManager/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaghettidba/ExtendedTSQLCollector/HEAD/ExtendedTSQLCollector/CollectionSetManager/packages.config -------------------------------------------------------------------------------- /ExtendedTSQLCollector/Common/AlertConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaghettidba/ExtendedTSQLCollector/HEAD/ExtendedTSQLCollector/Common/AlertConfig.cs -------------------------------------------------------------------------------- /ExtendedTSQLCollector/Common/AlertDispatcher.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaghettidba/ExtendedTSQLCollector/HEAD/ExtendedTSQLCollector/Common/AlertDispatcher.cs -------------------------------------------------------------------------------- /ExtendedTSQLCollector/Common/CollectionItemConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaghettidba/ExtendedTSQLCollector/HEAD/ExtendedTSQLCollector/Common/CollectionItemConfig.cs -------------------------------------------------------------------------------- /ExtendedTSQLCollector/Common/CollectorConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaghettidba/ExtendedTSQLCollector/HEAD/ExtendedTSQLCollector/Common/CollectorConfig.cs -------------------------------------------------------------------------------- /ExtendedTSQLCollector/Common/CollectorLogger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaghettidba/ExtendedTSQLCollector/HEAD/ExtendedTSQLCollector/Common/CollectorLogger.cs -------------------------------------------------------------------------------- /ExtendedTSQLCollector/Common/CollectorUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaghettidba/ExtendedTSQLCollector/HEAD/ExtendedTSQLCollector/Common/CollectorUtils.cs -------------------------------------------------------------------------------- /ExtendedTSQLCollector/Common/Common.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaghettidba/ExtendedTSQLCollector/HEAD/ExtendedTSQLCollector/Common/Common.csproj -------------------------------------------------------------------------------- /ExtendedTSQLCollector/Common/Common.csproj.vspscc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaghettidba/ExtendedTSQLCollector/HEAD/ExtendedTSQLCollector/Common/Common.csproj.vspscc -------------------------------------------------------------------------------- /ExtendedTSQLCollector/Common/DataTableTSQLAdapter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaghettidba/ExtendedTSQLCollector/HEAD/ExtendedTSQLCollector/Common/DataTableTSQLAdapter.cs -------------------------------------------------------------------------------- /ExtendedTSQLCollector/Common/EmailAlertDispatcher.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaghettidba/ExtendedTSQLCollector/HEAD/ExtendedTSQLCollector/Common/EmailAlertDispatcher.cs -------------------------------------------------------------------------------- /ExtendedTSQLCollector/Common/Enum.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaghettidba/ExtendedTSQLCollector/HEAD/ExtendedTSQLCollector/Common/Enum.cs -------------------------------------------------------------------------------- /ExtendedTSQLCollector/Common/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaghettidba/ExtendedTSQLCollector/HEAD/ExtendedTSQLCollector/Common/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /ExtendedTSQLCollector/Common/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaghettidba/ExtendedTSQLCollector/HEAD/ExtendedTSQLCollector/Common/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /ExtendedTSQLCollector/Common/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaghettidba/ExtendedTSQLCollector/HEAD/ExtendedTSQLCollector/Common/Properties/Resources.resx -------------------------------------------------------------------------------- /ExtendedTSQLCollector/Common/Resources/DataTableHtmlXslt.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaghettidba/ExtendedTSQLCollector/HEAD/ExtendedTSQLCollector/Common/Resources/DataTableHtmlXslt.xml -------------------------------------------------------------------------------- /ExtendedTSQLCollector/Common/Resources/HtmlTableStyle.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaghettidba/ExtendedTSQLCollector/HEAD/ExtendedTSQLCollector/Common/Resources/HtmlTableStyle.css -------------------------------------------------------------------------------- /ExtendedTSQLCollector/Common/TSQLCollectionItemConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaghettidba/ExtendedTSQLCollector/HEAD/ExtendedTSQLCollector/Common/TSQLCollectionItemConfig.cs -------------------------------------------------------------------------------- /ExtendedTSQLCollector/Common/TSQLCollectorConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaghettidba/ExtendedTSQLCollector/HEAD/ExtendedTSQLCollector/Common/TSQLCollectorConfig.cs -------------------------------------------------------------------------------- /ExtendedTSQLCollector/Common/Uploader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaghettidba/ExtendedTSQLCollector/HEAD/ExtendedTSQLCollector/Common/Uploader.cs -------------------------------------------------------------------------------- /ExtendedTSQLCollector/Common/XEReaderCollectionItemConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaghettidba/ExtendedTSQLCollector/HEAD/ExtendedTSQLCollector/Common/XEReaderCollectionItemConfig.cs -------------------------------------------------------------------------------- /ExtendedTSQLCollector/Common/XEReaderCollectorConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaghettidba/ExtendedTSQLCollector/HEAD/ExtendedTSQLCollector/Common/XEReaderCollectorConfig.cs -------------------------------------------------------------------------------- /ExtendedTSQLCollector/ExtendedTSQLCollector.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaghettidba/ExtendedTSQLCollector/HEAD/ExtendedTSQLCollector/ExtendedTSQLCollector.sln -------------------------------------------------------------------------------- /ExtendedTSQLCollector/ExtendedTSQLCollector.vssscc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaghettidba/ExtendedTSQLCollector/HEAD/ExtendedTSQLCollector/ExtendedTSQLCollector.vssscc -------------------------------------------------------------------------------- /ExtendedTSQLCollector/ExtendedTSQLCollector/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaghettidba/ExtendedTSQLCollector/HEAD/ExtendedTSQLCollector/ExtendedTSQLCollector/App.config -------------------------------------------------------------------------------- /ExtendedTSQLCollector/ExtendedTSQLCollector/Collector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaghettidba/ExtendedTSQLCollector/HEAD/ExtendedTSQLCollector/ExtendedTSQLCollector/Collector.cs -------------------------------------------------------------------------------- /ExtendedTSQLCollector/ExtendedTSQLCollector/ExtendedTSQLCollector.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaghettidba/ExtendedTSQLCollector/HEAD/ExtendedTSQLCollector/ExtendedTSQLCollector/ExtendedTSQLCollector.csproj -------------------------------------------------------------------------------- /ExtendedTSQLCollector/ExtendedTSQLCollector/ExtendedTSQLCollector.csproj.vspscc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaghettidba/ExtendedTSQLCollector/HEAD/ExtendedTSQLCollector/ExtendedTSQLCollector/ExtendedTSQLCollector.csproj.vspscc -------------------------------------------------------------------------------- /ExtendedTSQLCollector/ExtendedTSQLCollector/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaghettidba/ExtendedTSQLCollector/HEAD/ExtendedTSQLCollector/ExtendedTSQLCollector/Program.cs -------------------------------------------------------------------------------- /ExtendedTSQLCollector/ExtendedTSQLCollector/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaghettidba/ExtendedTSQLCollector/HEAD/ExtendedTSQLCollector/ExtendedTSQLCollector/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /ExtendedTSQLCollector/ExtendedTSQLCollector/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaghettidba/ExtendedTSQLCollector/HEAD/ExtendedTSQLCollector/ExtendedTSQLCollector/packages.config -------------------------------------------------------------------------------- /ExtendedTSQLCollector/ExtendedTSQLUploader/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaghettidba/ExtendedTSQLCollector/HEAD/ExtendedTSQLCollector/ExtendedTSQLUploader/App.config -------------------------------------------------------------------------------- /ExtendedTSQLCollector/ExtendedTSQLUploader/ExtendedTSQLUploader.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaghettidba/ExtendedTSQLCollector/HEAD/ExtendedTSQLCollector/ExtendedTSQLUploader/ExtendedTSQLUploader.csproj -------------------------------------------------------------------------------- /ExtendedTSQLCollector/ExtendedTSQLUploader/ExtendedTSQLUploader.csproj.vspscc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaghettidba/ExtendedTSQLCollector/HEAD/ExtendedTSQLCollector/ExtendedTSQLUploader/ExtendedTSQLUploader.csproj.vspscc -------------------------------------------------------------------------------- /ExtendedTSQLCollector/ExtendedTSQLUploader/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaghettidba/ExtendedTSQLCollector/HEAD/ExtendedTSQLCollector/ExtendedTSQLUploader/Program.cs -------------------------------------------------------------------------------- /ExtendedTSQLCollector/ExtendedTSQLUploader/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaghettidba/ExtendedTSQLCollector/HEAD/ExtendedTSQLCollector/ExtendedTSQLUploader/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /ExtendedTSQLCollector/ExtendedTSQLUploader/Uploader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaghettidba/ExtendedTSQLCollector/HEAD/ExtendedTSQLCollector/ExtendedTSQLUploader/Uploader.cs -------------------------------------------------------------------------------- /ExtendedTSQLCollector/ExtendedTSQLUploader/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaghettidba/ExtendedTSQLCollector/HEAD/ExtendedTSQLCollector/ExtendedTSQLUploader/packages.config -------------------------------------------------------------------------------- /ExtendedTSQLCollector/ExtendedXEReaderCollector/Collector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaghettidba/ExtendedTSQLCollector/HEAD/ExtendedTSQLCollector/ExtendedXEReaderCollector/Collector.cs -------------------------------------------------------------------------------- /ExtendedTSQLCollector/ExtendedXEReaderCollector/ExtendedXEReaderCollector.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaghettidba/ExtendedTSQLCollector/HEAD/ExtendedTSQLCollector/ExtendedXEReaderCollector/ExtendedXEReaderCollector.csproj -------------------------------------------------------------------------------- /ExtendedTSQLCollector/ExtendedXEReaderCollector/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaghettidba/ExtendedTSQLCollector/HEAD/ExtendedTSQLCollector/ExtendedXEReaderCollector/Program.cs -------------------------------------------------------------------------------- /ExtendedTSQLCollector/ExtendedXEReaderCollector/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaghettidba/ExtendedTSQLCollector/HEAD/ExtendedTSQLCollector/ExtendedXEReaderCollector/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /ExtendedTSQLCollector/ExtendedXEReaderCollector/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaghettidba/ExtendedTSQLCollector/HEAD/ExtendedTSQLCollector/ExtendedXEReaderCollector/app.config -------------------------------------------------------------------------------- /ExtendedTSQLCollector/ExtendedXEReaderCollector/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaghettidba/ExtendedTSQLCollector/HEAD/ExtendedTSQLCollector/ExtendedXEReaderCollector/packages.config -------------------------------------------------------------------------------- /ExtendedTSQLCollector/ExtendedXEReaderCollectorTrigger/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaghettidba/ExtendedTSQLCollector/HEAD/ExtendedTSQLCollector/ExtendedXEReaderCollectorTrigger/App.config -------------------------------------------------------------------------------- /ExtendedTSQLCollector/ExtendedXEReaderCollectorTrigger/ExtendedXEReaderCollectorTrigger.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaghettidba/ExtendedTSQLCollector/HEAD/ExtendedTSQLCollector/ExtendedXEReaderCollectorTrigger/ExtendedXEReaderCollectorTrigger.csproj -------------------------------------------------------------------------------- /ExtendedTSQLCollector/ExtendedXEReaderCollectorTrigger/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaghettidba/ExtendedTSQLCollector/HEAD/ExtendedTSQLCollector/ExtendedXEReaderCollectorTrigger/Program.cs -------------------------------------------------------------------------------- /ExtendedTSQLCollector/ExtendedXEReaderCollectorTrigger/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaghettidba/ExtendedTSQLCollector/HEAD/ExtendedTSQLCollector/ExtendedXEReaderCollectorTrigger/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /ExtendedTSQLCollector/ExtendedXEReaderCollectorTrigger/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaghettidba/ExtendedTSQLCollector/HEAD/ExtendedTSQLCollector/ExtendedXEReaderCollectorTrigger/packages.config -------------------------------------------------------------------------------- /ExtendedTSQLCollector/ExtendedXEReaderUploader/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaghettidba/ExtendedTSQLCollector/HEAD/ExtendedTSQLCollector/ExtendedXEReaderUploader/App.config -------------------------------------------------------------------------------- /ExtendedTSQLCollector/ExtendedXEReaderUploader/ExtendedXEReaderUploader.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaghettidba/ExtendedTSQLCollector/HEAD/ExtendedTSQLCollector/ExtendedXEReaderUploader/ExtendedXEReaderUploader.csproj -------------------------------------------------------------------------------- /ExtendedTSQLCollector/ExtendedXEReaderUploader/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaghettidba/ExtendedTSQLCollector/HEAD/ExtendedTSQLCollector/ExtendedXEReaderUploader/Program.cs -------------------------------------------------------------------------------- /ExtendedTSQLCollector/ExtendedXEReaderUploader/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaghettidba/ExtendedTSQLCollector/HEAD/ExtendedTSQLCollector/ExtendedXEReaderUploader/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /ExtendedTSQLCollector/ExtendedXEReaderUploader/Uploader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaghettidba/ExtendedTSQLCollector/HEAD/ExtendedTSQLCollector/ExtendedXEReaderUploader/Uploader.cs -------------------------------------------------------------------------------- /ExtendedTSQLCollector/ExtendedXEReaderUploader/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaghettidba/ExtendedTSQLCollector/HEAD/ExtendedTSQLCollector/ExtendedXEReaderUploader/packages.config -------------------------------------------------------------------------------- /ExtendedTSQLCollector/InstallCollectorType/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaghettidba/ExtendedTSQLCollector/HEAD/ExtendedTSQLCollector/InstallCollectorType/App.config -------------------------------------------------------------------------------- /ExtendedTSQLCollector/InstallCollectorType/CollectorTypeInstaller.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaghettidba/ExtendedTSQLCollector/HEAD/ExtendedTSQLCollector/InstallCollectorType/CollectorTypeInstaller.cs -------------------------------------------------------------------------------- /ExtendedTSQLCollector/InstallCollectorType/InstallCollectorType.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaghettidba/ExtendedTSQLCollector/HEAD/ExtendedTSQLCollector/InstallCollectorType/InstallCollectorType.csproj -------------------------------------------------------------------------------- /ExtendedTSQLCollector/InstallCollectorType/InstallCollectorType.csproj.vspscc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaghettidba/ExtendedTSQLCollector/HEAD/ExtendedTSQLCollector/InstallCollectorType/InstallCollectorType.csproj.vspscc -------------------------------------------------------------------------------- /ExtendedTSQLCollector/InstallCollectorType/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaghettidba/ExtendedTSQLCollector/HEAD/ExtendedTSQLCollector/InstallCollectorType/Program.cs -------------------------------------------------------------------------------- /ExtendedTSQLCollector/InstallCollectorType/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaghettidba/ExtendedTSQLCollector/HEAD/ExtendedTSQLCollector/InstallCollectorType/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /ExtendedTSQLCollector/InstallCollectorType/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaghettidba/ExtendedTSQLCollector/HEAD/ExtendedTSQLCollector/InstallCollectorType/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /ExtendedTSQLCollector/InstallCollectorType/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaghettidba/ExtendedTSQLCollector/HEAD/ExtendedTSQLCollector/InstallCollectorType/Properties/Resources.resx -------------------------------------------------------------------------------- /ExtendedTSQLCollector/InstallCollectorType/Resources/XEReaderParamFormatter.xslt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaghettidba/ExtendedTSQLCollector/HEAD/ExtendedTSQLCollector/InstallCollectorType/Resources/XEReaderParamFormatter.xslt -------------------------------------------------------------------------------- /ExtendedTSQLCollector/InstallCollectorType/Resources/XEReaderParamSchema.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaghettidba/ExtendedTSQLCollector/HEAD/ExtendedTSQLCollector/InstallCollectorType/Resources/XEReaderParamSchema.xml -------------------------------------------------------------------------------- /ExtendedTSQLCollector/InstallCollectorType/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaghettidba/ExtendedTSQLCollector/HEAD/ExtendedTSQLCollector/InstallCollectorType/packages.config -------------------------------------------------------------------------------- /ExtendedTSQLCollector/Packages.dgml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaghettidba/ExtendedTSQLCollector/HEAD/ExtendedTSQLCollector/Packages.dgml -------------------------------------------------------------------------------- /ExtendedTSQLCollector/Setup/Product.wxs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaghettidba/ExtendedTSQLCollector/HEAD/ExtendedTSQLCollector/Setup/Product.wxs -------------------------------------------------------------------------------- /ExtendedTSQLCollector/Setup/Setup.wixproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaghettidba/ExtendedTSQLCollector/HEAD/ExtendedTSQLCollector/Setup/Setup.wixproj -------------------------------------------------------------------------------- /ExtendedTSQLCollector/Setup/Setup.wixproj.vspscc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaghettidba/ExtendedTSQLCollector/HEAD/ExtendedTSQLCollector/Setup/Setup.wixproj.vspscc -------------------------------------------------------------------------------- /ExtendedTSQLCollector/UpgradeLog.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaghettidba/ExtendedTSQLCollector/HEAD/ExtendedTSQLCollector/UpgradeLog.htm -------------------------------------------------------------------------------- /ExtendedTSQLCollector/UserControlLibrary/Converters/DateTimeDoubleConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaghettidba/ExtendedTSQLCollector/HEAD/ExtendedTSQLCollector/UserControlLibrary/Converters/DateTimeDoubleConverter.cs -------------------------------------------------------------------------------- /ExtendedTSQLCollector/UserControlLibrary/Converters/TimeSpanConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaghettidba/ExtendedTSQLCollector/HEAD/ExtendedTSQLCollector/UserControlLibrary/Converters/TimeSpanConverter.cs -------------------------------------------------------------------------------- /ExtendedTSQLCollector/UserControlLibrary/DateRangeSlider/DateRangeSlider.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaghettidba/ExtendedTSQLCollector/HEAD/ExtendedTSQLCollector/UserControlLibrary/DateRangeSlider/DateRangeSlider.xaml -------------------------------------------------------------------------------- /ExtendedTSQLCollector/UserControlLibrary/DateRangeSlider/DateRangeSlider.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaghettidba/ExtendedTSQLCollector/HEAD/ExtendedTSQLCollector/UserControlLibrary/DateRangeSlider/DateRangeSlider.xaml.cs -------------------------------------------------------------------------------- /ExtendedTSQLCollector/UserControlLibrary/DateRangeSlider/SliderResources.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaghettidba/ExtendedTSQLCollector/HEAD/ExtendedTSQLCollector/UserControlLibrary/DateRangeSlider/SliderResources.xaml -------------------------------------------------------------------------------- /ExtendedTSQLCollector/UserControlLibrary/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaghettidba/ExtendedTSQLCollector/HEAD/ExtendedTSQLCollector/UserControlLibrary/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /ExtendedTSQLCollector/UserControlLibrary/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaghettidba/ExtendedTSQLCollector/HEAD/ExtendedTSQLCollector/UserControlLibrary/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /ExtendedTSQLCollector/UserControlLibrary/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaghettidba/ExtendedTSQLCollector/HEAD/ExtendedTSQLCollector/UserControlLibrary/Properties/Resources.resx -------------------------------------------------------------------------------- /ExtendedTSQLCollector/UserControlLibrary/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaghettidba/ExtendedTSQLCollector/HEAD/ExtendedTSQLCollector/UserControlLibrary/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /ExtendedTSQLCollector/UserControlLibrary/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaghettidba/ExtendedTSQLCollector/HEAD/ExtendedTSQLCollector/UserControlLibrary/Properties/Settings.settings -------------------------------------------------------------------------------- /ExtendedTSQLCollector/UserControlLibrary/UserControlLibrary.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaghettidba/ExtendedTSQLCollector/HEAD/ExtendedTSQLCollector/UserControlLibrary/UserControlLibrary.csproj -------------------------------------------------------------------------------- /ExtendedTSQLCollector/packages/repositories.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaghettidba/ExtendedTSQLCollector/HEAD/ExtendedTSQLCollector/packages/repositories.config -------------------------------------------------------------------------------- /Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaghettidba/ExtendedTSQLCollector/HEAD/Readme.md -------------------------------------------------------------------------------- /license.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaghettidba/ExtendedTSQLCollector/HEAD/license.md --------------------------------------------------------------------------------