Questions tagged [sitescope]

an application availability and performance monitoring software

19 questions
7
votes
4 answers

How do you reject a string if preceded by another string using standard POSIX regex?

I have a regex which finds errors in a log for me: /(exception|error)/i This works, except that I do not want to be alerted when the following occurs, which I expect to happen: DD/MM/YYYY 10:20pm: Read exception encountered How do I specifically…
David Smith
  • 38,044
  • 11
  • 44
  • 61
2
votes
1 answer

Is there a way to match strings:numbers with variable positioning within the string?

We are using a simple curl to get metrics via an API. The problem is, that the output is fixed in the amount of arguments but not their position within the output. We need to do this with a "simple" regex since the tool only accepts…
MA123
  • 21
  • 2
1
vote
1 answer

Need a Way to Test a user against remote server using Powershell

My only objective is to validate the user account against bunch servers. I am using below commands to do it. $creds2= Get-Credential $servers = Get-Content ('C:\Users\vishnuvardhan.chapal\Documents\Widnows Servers success in 139 and…
0
votes
1 answer

JMeter and Sitescope Monitors - Is it possible to pass metrics to SiteScope so an application can be monitored in real time?

We are setting up SiteScope application monitoring and are currently using out of the box standard port, URL and Service types of monitoring. However, for some applications there is a requirement to know the application response time for certain…
0
votes
0 answers

Metrics collection of application behind Citrix

I need to measure .NET performance counters using Windows Management Instrumentation (WMI) during performance test. Testing platform is based on LoadRunner and SiteScope. I have use the follow approach: using perfmon application to identify .NET…
0
votes
1 answer

Calculated metrics: create metrics expression

I want to create Calculated metrics expression for same Logical expression for example by Java if (KPI<=95 & FailedCount!=0) { STATUS=1;} else {STATUS=0;} In Site Scope I wrote this expression ((<><=95)&(<>!=0)) But I do not…
Nikolay Baranenko
  • 1,582
  • 6
  • 35
  • 60
0
votes
0 answers

Loadrunner monitoring of VMWare ESX host

Looking into setting up a Loadrunner monitor for a ESX host running my test virtual machines. Some quick searching is not finding any native ESX monitors. Can i use some Linux kind of thing? I have seen some doco which suggests Sitescope does this.…
0
votes
0 answers

Status 302 Found, when I try to access my web application instead of status 200

Please help me in understanding why we get found 302 status. I googled and get to know that this is something to do with redirect. I have two web applications IIS servers and they configured for round robin DNS. If I check it from fiddler sometimes…
AnneRaNa
  • 51
  • 10
0
votes
1 answer

How can I use multiple databases in a sitescope monitor?

We have 2 databases. One is an oracle 11g DB and the other is a DB2 database. I need to make a query to the oracle database to get a list of accounts and feed that as parameters into another DB2 query. If the DB2 Query returns any results then I…
George
  • 1,021
  • 15
  • 32
0
votes
1 answer

Match SiteScope Log file path

I'm trying to monitor a log file using sitescope. The file is came from the ReportServer and has format of ReportServerService__02_18_2015_00_00_01.log I can get the month, day and year but when I trying to inject a regex to match the succeeding…
Chris
  • 599
  • 7
  • 23
0
votes
4 answers

Hp Loadrunner / virtual user generator web click and script alternative

Not sure if iam asking this in the right place, sorry if not! We currently create scripts through HP Virtual User generator (using the web click and script protocol) to monitor our webapps, we use this as they require JavaScript execution when being…
Glenn
  • 65
  • 9
0
votes
3 answers

log file monitoring using regex

below is sample log file of our application, I've to monitor this log file and get a count of code 91 (6th column) in last 5 minutes, I'm to use log file monitoring feature of sitescope monitoring tool, i need help to build regular expression to…
tnt5273
  • 79
  • 3
  • 10
0
votes
1 answer

Regular Expressions - match content in XML page

I am new to regular expressions and need to write one that will pull certain data out of an XML page. For instance, Number of test runs 2 The only number I need to pull is the 2. I want it to look at the XML tag Name…
0
votes
4 answers

Regex: How to exclude one word and one character?

I'm working with the Dynamic Disk Monitor in SiteScope and I need a regex that exclude the word "Harddisk" and the character "D". So far, I found this: ^(?!.*Harddisk).*/percent full How do I add the part for the exclusion of "D" in the same…
e.vejar
  • 43
  • 1
  • 9
0
votes
1 answer

Monitoring Integration points

Our company is working on integrating Guidewire(claims processing system) into the existing claims system. We will be executing performance tests on the integrated system shortly. I wanted to know if there was some way to monitor the integration…
1
2