Re: [google-appengine] Re: Problem with Uptime Check alerts - stackdriver

2020-06-01 Thread Sowmiya Ragu
Thanks for the response. But its not about the data showing up in the dashboard 
after creating uptime check for a service. But to create a new uptime check for 
a service is not listed during the initial creation , so I’m blocked in 
creating the uptime itself.

Regards,
Sowmiya

> On 30-May-2020, at 8:05 AM, 'anarayanaswamy' via Google App Engine 
>  wrote:
> 
> May be it is configuration issue, I would advise to review the uptime 
> configurations again. [1]
> 
> Note: Dashboards report "no data available" for newly-created uptime checks. 
> This message is removed when the data arrives. The maximum wait time for this 
> stage is 5 minutes.
> 
> [1] 
> https://cloud.google.com/monitoring/uptime-checks#create-console 
> 
> 
> On Friday, May 29, 2020 at 7:47:15 AM UTC-4, Sowmiya Ragu wrote:
> Hi Team,
> 
> Trying to set up Uptime Check alerts for the App Engine services. When I 
> deploy the service to App Engine sometime it takes nearly 2 hours of time to 
> be available in the Monitoring - Uptime check service list.
> Also sometimes , existing services gets vanished from the service list. 
> 
> For instance,
> Deployed 2 services yesterday api/default to a project.
> One service was immediately available in uptime check but not the other'.
> 
> Please let us know as why it’s happening.
> 
> Regards,
> Sowmiya
> 
> -- 
> You received this message because you are subscribed to the Google Groups 
> "Google App Engine" group.
> To unsubscribe from this group and stop receiving emails from it, send an 
> email to google-appengine+unsubscr...@googlegroups.com 
> .
> To view this discussion on the web visit 
> https://groups.google.com/d/msgid/google-appengine/7d194416-053c-4c57-a817-e4dd8ec96f84%40googlegroups.com
>  
> .

-- 
You received this message because you are subscribed to the Google Groups 
"Google App Engine" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to google-appengine+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/google-appengine/166DA7B2-B53E-418C-BB1F-6E9AFE1469EB%40trimble.com.


[google-appengine] Set service on Google Task API - PHP

2020-06-01 Thread Alisson Linneker
I'm trying to create a task, but it is forwarded to the project's 'default' 
service by informing the URI in setRelativeUri().
What would be the method for defining the specific service in the project?

My Code:

require_once __DIR__ . '/vendor/autoload.php';

use Google\Cloud\Tasks\V2\AppEngineHttpRequest;
use Google\Cloud\Tasks\V2\CloudTasksClient;
use Google\Cloud\Tasks\V2\HttpMethod;
use Google\Cloud\Tasks\V2\Task;

$client = new CloudTasksClient();
$queueName = $client->queueName('MyProject', 'location-id', 'MyQueue');
$httpRequest = new AppEngineHttpRequest();

$httpRequest->setRelativeUri('/script.php'); //Runing on 'default' service. 
How to change?
$httpRequest->setHttpMethod(HttpMethod::GET);

if (isset($payload))
$httpRequest->setBody($payload);

$task = new Task();
$task->setAppEngineHttpRequest($httpRequest);

$response = $client->createTask($queueName, $task);

printf('Created task %s' . PHP_EOL, $response->getName());


I've tried to change the URI to /app/serviceFolder/script.php, but it does 
not work. Error 404 is returned in the task logs.

-- 
You received this message because you are subscribed to the Google Groups 
"Google App Engine" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to google-appengine+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/google-appengine/700658fc-f6bc-45dc-893b-3a7810be5433%40googlegroups.com.


[google-appengine] Re: Is it possible to publish Core MVC web program to Google Play Store?

2020-06-01 Thread 'Katayoon (Cloud Platform Support)' via Google App Engine
Hello,

I should note that Google Cloud Platform groups are reserved for general 
questions about GCP-end products and your question seems to be about Google 
Play store. So, I recommend to contact the Google Play Store support team 
 for further 
assistance. 

-- 
You received this message because you are subscribed to the Google Groups 
"Google App Engine" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to google-appengine+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/google-appengine/f95ae2dc-b534-47a9-82d4-c6d4834d20d7%40googlegroups.com.


[google-appengine] Re: Set service on Google Task API - PHP

2020-06-01 Thread 'George (Cloud Platform Support)' via Google App Engine
Hello Allison, 

It depends on how you set up the queue you send your tasks to. You can 
explicitly route all tasks in a queue to a non-default target by using 
appEngineRoutingOverride in a command similar to: 

gcloud tasks queues update [QUEUE_ID] 
--routing-override=service:[SERVICE],version:[VERSION]

This is detailed on the "Configuring Cloud Tasks queues" page 
. 

This discussion group is oriented more towards general opinions, trends, 
and issues of general nature touching App Engine and Cloud Tasks. For 
coding and programming architecture, as well as setting up Cloud Tasks 
queues in your code, you may be better served in dedicated forums such as 
stackoverflow, where experienced programmers are within reach and ready to 
help. 

-- 
You received this message because you are subscribed to the Google Groups 
"Google App Engine" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to google-appengine+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/google-appengine/443e61b4-c754-4f4b-8635-f600d0f950e6%40googlegroups.com.


[google-appengine] Re: Upgraded from 1.9.69 to 1.9.80 and application size increased 3 times

2020-06-01 Thread 'Olu' via Google App Engine
I understand your question is regarding the size discrepancy in your 
application deployments on App Engine (GAE). There are a number of reasons 
which may contribute to the different sizes, particularly in the past, the 
size difference in the builds for the same Java application code has been 
seen to relate to different implementations of the functions (i.e. deploy) 
and the tools in each SDK and the plugins. Hence, to understand better the 
cause may require reviewing the differences between the plugins used and 
the App Engine SDK versions, and how the changes may have applied to your 
application.

For more specific information about your applications and why the 
Application sizes differed, I recommend that you contact the GCP Support 
engineers[1][2] so that the specific App Engine versions can be evaluated 
to determine exactly and obtain more specific information about the cause.

[1]https://cloud.google.com/support-hub
[2]https://developers.google.com/issue-tracker/#public_users

-- 
You received this message because you are subscribed to the Google Groups 
"Google App Engine" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to google-appengine+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/google-appengine/bedb786e-10b6-4719-a5de-b7d7ebdaedf9%40googlegroups.com.


Re: [google-appengine] Re: Problem with Uptime Check alerts - stackdriver

2020-06-01 Thread 'Elliott (Cloud Platform Support)' via Google App Engine
Hello Sawmiya,

It sounds that you have an issue with Cloud Uptime Checks. The best way to 
have this addressed is to open a Google Issue Tracker 
because Google Groups 
is meant for discussing Google products, not for reporting issues.

-- 
You received this message because you are subscribed to the Google Groups 
"Google App Engine" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to google-appengine+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/google-appengine/8a3c2454-8d27-4ed9-9466-18afcc8c5e1c%40googlegroups.com.


[google-appengine] Re: Google Cloud Build - build.yaml & app.yaml in a sub directory not building correct source

2020-06-01 Thread 'David (Cloud Platform Support)' via Google App Engine
When you use the dir field in a build step, you are setting the working 
directory to its value and in this case, assuming your source files are not 
in that working directory and from what you have mentioned that it’s 
deploying empty, it’s not finding your source files and you can check this 
if you go to your deployed application versions, under “diagnose” right 
click on tools -> source and you will be able to see the files that were 
deployed.

-- 
You received this message because you are subscribed to the Google Groups 
"Google App Engine" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to google-appengine+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/google-appengine/0abaa82e-d36b-4627-8ce5-c9d146897eb5%40googlegroups.com.