## Stackdriver > Documentation > Monitoring > GCP Metrics List
- api/request_count
```language-x
Metrics from Cloud Tasks
API requests
DELTA, INT64, 1 Count of Cloud Tasks API calls. Sampled every 60 seconds.
After sampling,...
Laravelでプロジェクトを作成して、プログラムを実行しようとすると下記のエラーが発生する場合があります。
```language-bash
UnexpectedValueException
The stream or file "/path/to/storage/logs/laravel.log" could not be opened:
failed to op...
PHPのpearをインストールをインストールしようとして、エラー"Sorry! Your PHP version is too new (7.1.16) for this go-pear."が出た時の解決方法です。
## エラーが出たときのコマンド
以下のように go-pear.phpをダウンロードして実行すると、...
youtube-dlコマンドを使って、動画をダウンロードすると下記のエラーが出る場合があります。
```language-bash
$ youtube-dl https://youtube.com/xxxx
ERROR: m3u8 download detected but ffmpeg or avconv could not be found. Please install o...
CircleCI2.0でPHPプロジェクトに対してCIを実行しようとしたとき、以下のように"image cache not found on this host, downloading circleci/php:7.1.5-browsers"エラーが出る場合があります。
```language-bash
Build-agent version 0.0.7546-3d4d9eb8 ...
cronのスクリプトからpythonのスクリプトを実行しようとしたところ、print()による日本語文字列の出力処理で、下記のエラーが発生した
```language-bash
UnicodeEncodeError: 'ascii' codec can't encode characters in position x-x: ordinal not in ra...
pythonでスクリプトを実行すると"NameError: name 'true' is not defined"エラーが発生することがあります。
エラーになる原因はpythonの真偽値はtrue, falseではなく、先頭が大文字のTrue, Falseであるためで、先頭を大文字にすれば良いです。
## ...
pythonで,変数がNoneTypeであるかを判定したい場合、条件式の`is None`を使用すると良いです。
## サンプルプログラム
```language-python
x = None
print(type(x))
if x is None:
print('xはNoneTypeです')
```
## 実行例
```language...
pythonのvenv環境でmatplotlibを使おうとすると以下のRuntimeErrorが発生したので、解決させた方法を書いておきます。
- エラーメッセージ
```language-xxx
RuntimeError: Python is not installed as a framework.
The Mac OS X backend will not b...
pythobでは、os.listdir()関数で、ディレクトリ内に存在するファイルの一覧を取得できます。
```language-python
import os
files = os.listdir('output')
for file in files:
print(file)
```
上記のプログラムを実行してみたところ、出...
```
Many people can try out out printer
たくさんの人が、私たちのプリンターを試しに使うことができる
try out
試しに使う
In that case, I'll call you later.
その場合、私があなたに後で電話します。
in that case
もしそうなら、その場合...
|日本語|英文|日本語(表現)|英語(表現)|
|:-:|:-:|:-:|:-:|
|アリスは彼の代わりに公演する(話す)でしょう|Alice will speak in his place|xxの代わりに|in one's place|
|男の子がこの教室の70 パーセントを占めています|Boys account for 70 percent ...
|日本語|英文|日本語(表現)|英語(表現)|
|:-:|:-:|:-:|:-:|
|登録フォームに入力する|complete the registration form|入力|complete|
|Emailアカウントは到着する前に設定されるでしょう|E-mail account will be set up before you arrive|前に|before...