I've tried to create a regex for the following checkout page:
https://checkout.returnonart.com/pay/cs_live_b1sHcLQqcRrQV8C7LXDzSScPgXBp3X4nPkWyCixPl2dj5pEy9oKiq8Y4cO#fidkdWxOYHwnPyd1blppbHNgWnE9dkJGZG59R3BtbzVSMkBNcm1kb2xycjU1YTBLbUR1ZGEnKSdjd2poVmB3c2B3Jz9xd3BgKSdpZHxqcHFRfHVgJz8naHBpcWxabHFgaCcpJ2BrZGdpYFVpZGZgbWppYWB3dic%2FcXdwYHgl
The first part is static until /cs_live_
This part is dynamic:
b1sHcLQqcRrQV8C7LXDzSScPgXBp3X4nPkWyCixPl2dj5pEy9oKiq8Y4cO#fidkdWxOYHwnPyd1blppbHNgWnE9dkJGZG59R3BtbzVSMkBNcm1kb2xycjU1YTBLbUR1ZGEnKSdjd2poVmB3c2B3Jz9xd3BgKSdpZHxqcHFRfHVgJz8naHBpcWxabHFgaCcpJ2BrZGdpYFVpZGZgbWppYWB3dic%2FcXdwYHgl
So far I have this: ^checkout\.returnonart\.com\/pay\/cs_live_?([A-Za-z0-9\-]*) but it doesn't work, if I verify this goal via Google Analytics.
Try this pattern because probably the cause is the domain in the regex. The domain is not present normally in pagePath in Google Analytics:
\/pay\/cs_live_
thank you very much for your support. Since I found a workaround (button click event), the issue is solved.
Related
Hi thhis is my first time working with kibana. I am creating a simple kibana dashboard for my java application. I have 3 endpoints and in my kibana dashboard, I will create panels to store 5xx and 4xx status code from my application.
My issue is that if I have a path variable in my url, how would my kibana query look like?
I am writing it this way and it does not work (doesn't fetch any results):
kubernetes.container_name: "v1/myapp" AND uri: "v1/deposits/([a-zA-Z0-9]*)/output"
Please help me to rewrite the regex portion.
🙏
You should be able to click "Edit Query DSL" and there you can use this regex query.
Hope it helps!
I have a site built with Jekyll Now on GitHub and I want it to appear in a google search. If I just google my GitHub username followed by 'GitHub' and 'io', it does not find my site. How do I get google to find my site in a google search?
You have to create a Google Search Console account and add your page, then typically you just drop a "marker" file in the root (Search Console generates this) so that Google can confirm you really own the page.
Google Search Console
Instructions
(Since the instructions are long and have many links to sub-steps, I'm only providing the link.)
Also, if you're going to use a registered domain name, set that up before you register the site for search.
(Edit: Technically you don't have to do this, sooner or later Google will find you... but this will give your content a much higher-quality score.)
It can take a few days before the site is indexed by search engines. Google for google index site and you will find quite a lot of information about the process and how it can be speed up.
Generally, google finds all website and index them. Sometimes, it's takes time to crawl the new website.
But, you can do this thing manually by following these steps:
Go to Google search
Add the website as your property
Then, verify your property that you're the owner of this.
I have been charged with setting up a long list of triggers in Google Tag Manager for our sites. For some of these triggers regex seems to be the best solution, but I am new to this and really struggling with them. My current problem is matching an internal landing page. Here are examples of what should match:
/interior/
/interior/index.php
/interior/?var=anything
/interior/index.php?var=anything
It should NOT match:
/interior/any-other-page(.php or not)
/any-other-page(.php or not)
Here is what I built but it is not working:^(\/interior\/(\?.*|index\.php(\?.*)?)?)$
Thanks!
My problem was in another Google Tag Manager setting and the trigger using that regex is now working. Thanks to everyone for their comments that pointed me in a different direction!
I cannot figure out how to get Google Analytics Goals to work:
URL in Google Analytics report:
/relay/v2/relay.cgi/www.mydomain.com/faerdig.php?tid=3414528&orderid=03-14:29&amount=100000&cur=208&date=20101003&time=1430&cardnopostfix=4000&timer=03-14:29&cardid=2&transfee=0
(Above URL is taken straight from the Google Analytics report)
I want to search for: faerdig
I have tried the following:
Head Match: /relay/v2/relay.cgi/www.mydomain.com/faerdig
Regular Expression Match: faerdig
First and foremost GA has a delay of 24-48 hours on custom coding (and sometimes even generic page view hits), so don't expect to see hits instantly.
2nd, you must have the global GA code on the target page in order for it to be tracked in GA. Have you ensured that the global code is on the actual page? Pointing to the right account, etc...?
I want to call the Google product search and get back a parse-able XML file rather than having to scrape the HTML. I'm not looking for a SOAP based service, but a service that returns XML based on a URL passed in.
Correction--this did NOT work:
The Google Base API lists only a subset of Google product sellers (apparently only those who are active users of the Google Base product.)
http://code.google.com/apis/base/docs/2.0/attrs-queries.html
I eventually ended up using a screen scraping solution and then found that the data was too inconsistant to use for my purposes at all. :-(
http://answers.oreilly.com/topic/2165-how-to-search-google-and-bing-in-c/
use that refer link ,hopefuly it'll very usefull with you all guys