Click here to Skip to main content
15,885,940 members
Articles / DevOps / Load Testing

Measuring and Monitoring WCF Web Service Performance

Rate me:
Please Sign up or sign in to vote.
5.00/5 (17 votes)
4 Oct 2012GPL310 min read 55.3K   2.2K   47  
Using ServiceMon to obtain performance statistics for web services
namespace Kaleida.ServiceMonitor.UI.NotificationPanels
{
    partial class ResponsesNotificationPanel
    {
        /// <summary> 
        /// Required designer variable.
        /// </summary>
        private System.ComponentModel.IContainer components = null;

        /// <summary> 
        /// Clean up any resources being used.
        /// </summary>
        /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
        protected override void Dispose(bool disposing)
        {
            if (disposing && (components != null))
            {
                components.Dispose();
            }
            base.Dispose(disposing);
        }

        #region Component Designer generated code

        /// <summary> 
        /// Required method for Designer support - do not modify 
        /// the contents of this method with the code editor.
        /// </summary>
        private void InitializeComponent()
        {
            this.lblItemLimit = new System.Windows.Forms.Label();
            this.btnClear = new System.Windows.Forms.Button();
            this.btnCopyToClipboard = new System.Windows.Forms.Button();
            this.lbRecentRequests = new System.Windows.Forms.ListBox();
            this.chkErrorsOnly = new System.Windows.Forms.CheckBox();
            this.SuspendLayout();
            // 
            // lblItemLimit
            // 
            this.lblItemLimit.AutoSize = true;
            this.lblItemLimit.Location = new System.Drawing.Point(11, 9);
            this.lblItemLimit.Name = "lblItemLimit";
            this.lblItemLimit.Size = new System.Drawing.Size(51, 13);
            this.lblItemLimit.TabIndex = 26;
            this.lblItemLimit.Text = "Item Limit";
            // 
            // btnClear
            // 
            this.btnClear.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
            this.btnClear.Location = new System.Drawing.Point(616, 4);
            this.btnClear.Name = "btnClear";
            this.btnClear.Size = new System.Drawing.Size(102, 23);
            this.btnClear.TabIndex = 25;
            this.btnClear.Text = "Clear Current View";
            this.btnClear.UseVisualStyleBackColor = true;
            this.btnClear.Click += new System.EventHandler(this.btnClear_Click);
            // 
            // btnCopyToClipboard
            // 
            this.btnCopyToClipboard.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
            this.btnCopyToClipboard.Location = new System.Drawing.Point(501, 4);
            this.btnCopyToClipboard.Name = "btnCopyToClipboard";
            this.btnCopyToClipboard.Size = new System.Drawing.Size(109, 23);
            this.btnCopyToClipboard.TabIndex = 24;
            this.btnCopyToClipboard.Text = "Copy to Clipboard";
            this.btnCopyToClipboard.UseVisualStyleBackColor = true;
            this.btnCopyToClipboard.Click += new System.EventHandler(this.btnCopyToClipboard_Click);
            // 
            // lbRecentRequests
            // 
            this.lbRecentRequests.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) 
            | System.Windows.Forms.AnchorStyles.Left) 
            | System.Windows.Forms.AnchorStyles.Right)));
            this.lbRecentRequests.FormattingEnabled = true;
            this.lbRecentRequests.HorizontalScrollbar = true;
            this.lbRecentRequests.Location = new System.Drawing.Point(3, 32);
            this.lbRecentRequests.Name = "lbRecentRequests";
            this.lbRecentRequests.Size = new System.Drawing.Size(715, 485);
            this.lbRecentRequests.TabIndex = 23;
            // 
            // chkErrorsOnly
            // 
            this.chkErrorsOnly.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
            this.chkErrorsOnly.AutoSize = true;
            this.chkErrorsOnly.Location = new System.Drawing.Point(367, 7);
            this.chkErrorsOnly.Name = "chkErrorsOnly";
            this.chkErrorsOnly.Size = new System.Drawing.Size(113, 17);
            this.chkErrorsOnly.TabIndex = 27;
            this.chkErrorsOnly.Text = "Only Show Errors?";
            this.chkErrorsOnly.UseVisualStyleBackColor = true;
            // 
            // ResponsesNotificationPanel
            // 
            this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
            this.Controls.Add(this.chkErrorsOnly);
            this.Controls.Add(this.lblItemLimit);
            this.Controls.Add(this.btnClear);
            this.Controls.Add(this.btnCopyToClipboard);
            this.Controls.Add(this.lbRecentRequests);
            this.Name = "ResponsesNotificationPanel";
            this.Size = new System.Drawing.Size(721, 521);
            this.ResumeLayout(false);
            this.PerformLayout();

        }

        #endregion

        private System.Windows.Forms.Label lblItemLimit;
        private System.Windows.Forms.Button btnClear;
        private System.Windows.Forms.Button btnCopyToClipboard;
        private System.Windows.Forms.ListBox lbRecentRequests;
        private System.Windows.Forms.CheckBox chkErrorsOnly;
    }
}

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article, along with any associated source code and files, is licensed under The GNU General Public License (GPLv3)


Written By
Architect BlackJet Software Ltd
United Kingdom United Kingdom
Stuart Wheelwright is the Principal Architect and Software Developer at BlackJet Software Ltd.

He has over 16 years commercial experience producing robust, maintainable, web-based solutions and bespoke systems for Microsoft platforms.

His latest project is Shopping UK, an elegantly simple shopping list for iPhone.

Comments and Discussions