GS2-Log GS2-Deploy/CDK リファレンス
エンティティ
Namespace
ネームスペース
ネームスペースは一つのプロジェクトで同じサービスを異なる用途で複数利用できるようにするための仕組みです。
GS2 のサービスは基本的にネームスペースというレイヤーがあり、ネームスペースが異なれば同じサービスでもまったく別のデータ空間として取り扱われます。
そのため、各サービスの利用を開始するにあたってネームスペースを作成する必要があります。
型 | 必須 | デフォルト | 値の制限 | 説明 | |
---|---|---|---|---|---|
name | string | ✓ | ~ 128文字 | ネームスペース名 | |
description | string | ~ 1024文字 | 説明文 | ||
type | string | ✓ | “gs2” | ~ 128文字 | ログの書き出し方法 |
gcpCredentialJson | string | {type} == “bigquery” | ~ 5120文字 | GCPのクレデンシャル | |
bigQueryDatasetName | string | {type} == “bigquery” | ~ 1024文字 | BigQueryのデータセット名 | |
logExpireDays | int | {type} in [“gs2”, “bigquery”] | ~ 3650 | ログの保存期間(日) | |
awsRegion | string | {type} == “firehose” | ~ 256文字 | AWSのリージョン | |
awsAccessKeyId | string | {type} == “firehose” | ~ 256文字 | AWSのアクセスキーID | |
awsSecretAccessKey | string | {type} == “firehose” | ~ 256文字 | AWSのシークレットアクセスキー | |
firehoseStreamName | string | {type} == “firehose” | ~ 256文字 | Kinesis Firehose のストリーム名 |
type に指定する列挙型の定義
定義 | 説明 |
---|---|
gs2 | GS2による管理 |
bigquery | BigQuery への書き出し |
firehose | Kinesis Firehose への書き出し |
GetAttr
型 | 説明 | |
---|---|---|
Item | Namespace | 作成したネームスペース |
実装例
Type: GS2::Log::Namespace
Properties:
Name: namespace1
Description: null
Type: gs2
GcpCredentialJson: {"project_id": "gs2-dev"}
BigQueryDatasetName: dataset_0001
LogExpireDays: 3
AwsRegion: awsRegion
AwsAccessKeyId: awsAccessKeyId
AwsSecretAccessKey: awsSecretAccessKey
FirehoseStreamName: firehoseStreamName
from gs2_cdk import Stack, core, log
class SampleStack(Stack):
def __init__(self):
super().__init__()
log.Namespace(
stack=self,
name="namespace-0001",
options=log.NamespaceOptions(
type='gs2',
gcp_credential_json='{"project_id": "gs2-dev"}',
big_query_dataset_name='dataset_0001',
log_expire_days=3,
aws_region='awsRegion',
aws_access_key_id='awsAccessKeyId',
aws_secret_access_key='awsSecretAccessKey',
firehose_stream_name='firehoseStreamName',
),
)
print(SampleStack().yaml()) # Generate Template
class SampleStack extends \Gs2Cdk\Core\Model\Stack
{
function __construct() {
parent::__construct();
new \Gs2Cdk\Log\Model\Namespace_(
stack: $this,
name: "namespace-0001",
options: new \Gs2Cdk\Log\Model\Options\NamespaceOptions(
type: "gs2",
gcpCredentialJson: "{\"project_id\": \"gs2-dev\"}",
bigQueryDatasetName: "dataset_0001",
logExpireDays: 3,
awsRegion: "awsRegion",
awsAccessKeyId: "awsAccessKeyId",
awsSecretAccessKey: "awsSecretAccessKey",
firehoseStreamName: "firehoseStreamName"
)
);
}
}
print((new SampleStack())->yaml()); // Generate Template
class SampleStack extends io.gs2.cdk.core.model.Stack
{
public SampleStack() {
super();
new io.gs2.cdk.log.model.Namespace(
this,
"namespace-0001",
new io.gs2.cdk.log.model.options.NamespaceOptions() {
{
type = "gs2";
gcpCredentialJson = "{\"project_id\": \"gs2-dev\"}";
bigQueryDatasetName = "dataset_0001";
logExpireDays = 3;
awsRegion = "awsRegion";
awsAccessKeyId = "awsAccessKeyId";
awsSecretAccessKey = "awsSecretAccessKey";
firehoseStreamName = "firehoseStreamName";
}
}
);
}
}
System.out.println(new SampleStack().yaml()); // Generate Template
import core from "@/gs2cdk/core";
import log from "@/gs2cdk/log";
class SampleStack extends core.Stack
{
public constructor() {
super();
new log.model.Namespace(
this,
"namespace-0001",
{
type: "gs2",
gcpCredentialJson: "{\"project_id\": \"gs2-dev\"}",
bigQueryDatasetName: "dataset_0001",
logExpireDays: 3,
awsRegion: "awsRegion",
awsAccessKeyId: "awsAccessKeyId",
awsSecretAccessKey: "awsSecretAccessKey",
firehoseStreamName: "firehoseStreamName"
}
);
}
}
console.log(new SampleStack().yaml()); // Generate Template
public class SampleStack : Gs2Cdk.Core.Model.Stack
{
public SampleStack() {
new Gs2Cdk.Gs2Log.Model.Namespace(
this,
"namespace-0001",
new Gs2Cdk.Gs2Log.Model.Options.NamespaceOptions {
type = "gs2",
gcpCredentialJson = "{\"project_id\": \"gs2-dev\"}",
bigQueryDatasetName = "dataset_0001",
logExpireDays = 3,
awsRegion = "awsRegion",
awsAccessKeyId = "awsAccessKeyId",
awsSecretAccessKey = "awsSecretAccessKey",
firehoseStreamName = "firehoseStreamName"
}
);
}
}
Debug.Log(new SampleStack().Yaml()); // Generate Template
Insight
GS2-Insight は GS2-Log に蓄積されたアクセスログを可視化・分析するツールです。
GS2-Insight 自体はオープンソースで github にて公開されています。
https://github.com/gs2io/gs2-insight
ここでは、公開されているオープンソースのコードをご自身でホスティングすることなく、オンデマンドで起動してご利用いただけます。
オンデマンド起動された GS2-Insight は最大2時間利用することができます。
2時間を超えて利用したい場合は、ご自身でホスティングしてご利用ください。
型 | 必須 | デフォルト | 値の制限 | 説明 | |
---|---|---|---|---|---|
namespaceName | string | ✓ | ~ 128文字 | ネームスペース名 |
status に指定する列挙型の定義
定義 | 説明 |
---|---|
ALLOCATING | サーバーの割り当て中 |
LAUNCHING | 起動処理中 |
ACTIVE | 有効 |
DELETED | 削除済み |
GetAttr
型 | 説明 | |
---|---|---|
Item | Insight | GS2-Insight |
実装例
Type: GS2::Log::Insight
Properties:
NamespaceName: namespace1
from gs2_cdk import Stack, core, log
class SampleStack(Stack):
def __init__(self):
super().__init__()
log.Insight(
stack=self,
namespace_name="namespace-0001",
)
print(SampleStack().yaml()) # Generate Template
class SampleStack extends \Gs2Cdk\Core\Model\Stack
{
function __construct() {
parent::__construct();
new \Gs2Cdk\Log\Model\Insight(
stack: $this,
namespaceName: "namespace-0001"
);
}
}
print((new SampleStack())->yaml()); // Generate Template
class SampleStack extends io.gs2.cdk.core.model.Stack
{
public SampleStack() {
super();
new io.gs2.cdk.log.model.Insight(
this,
"namespace-0001"
);
}
}
System.out.println(new SampleStack().yaml()); // Generate Template
import core from "@/gs2cdk/core";
import log from "@/gs2cdk/log";
class SampleStack extends core.Stack
{
public constructor() {
super();
new log.model.Insight(
this,
"namespace-0001"
);
}
}
console.log(new SampleStack().yaml()); // Generate Template
public class SampleStack : Gs2Cdk.Core.Model.Stack
{
public SampleStack() {
new Gs2Cdk.Gs2Log.Model.Insight(
this,
"namespace-0001"
);
}
}
Debug.Log(new SampleStack().Yaml()); // Generate Template
AccessLog
アクセスログ
マイクロサービスへのリクエスト及びその応答内容を記録したログです。
型 | 必須 | デフォルト | 値の制限 | 説明 | |
---|---|---|---|---|---|
timestamp | long | ✓ | 日時 (UNIX時間 単位:ミリ秒) | ||
requestId | string | ✓ | ~ 1024文字 | リクエストID | |
service | string | ✓ | ~ 1024文字 | マイクロサービスの種類 | |
method | string | ✓ | ~ 1024文字 | マイクロサービスのメソッド | |
userId | string | ~ 128文字 | ユーザーID | ||
request | string | ✓ | ~ 10485760文字 | リクエストパラメータ | |
result | string | ✓ | ~ 10485760文字 | 応答内容 |
AccessLogCount
アクセスログ集計
型 | 必須 | デフォルト | 値の制限 | 説明 | |
---|---|---|---|---|---|
service | string | ~ 1024文字 | マイクロサービスの種類 | ||
method | string | ~ 1024文字 | マイクロサービスのメソッド | ||
userId | string | ~ 128文字 | ユーザーID | ||
count | long | ✓ | ~ 9223372036854775805 | 回数 |
IssueStampSheetLog
トランザクション発行ログ
型 | 必須 | デフォルト | 値の制限 | 説明 | |
---|---|---|---|---|---|
timestamp | long | ✓ | 日時 (UNIX時間 単位:ミリ秒) | ||
transactionId | string | ✓ | ~ 1024文字 | トランザクションID | |
service | string | ✓ | ~ 1024文字 | マイクロサービスの種類 | |
method | string | ✓ | ~ 1024文字 | マイクロサービスのメソッド | |
userId | string | ✓ | ~ 128文字 | ユーザーID | |
action | string | ✓ | ~ 1024文字 | 入手アクション | |
args | string | ✓ | ~ 5242880文字 | 引数 | |
tasks | List<string> | ~ 10 items | スタンプタスクリスト |
IssueStampSheetLogCount
トランザクション発行ログ集計
型 | 必須 | デフォルト | 値の制限 | 説明 | |
---|---|---|---|---|---|
service | string | ~ 1024文字 | マイクロサービスの種類 | ||
method | string | ~ 1024文字 | マイクロサービスのメソッド | ||
userId | string | ~ 128文字 | ユーザーID | ||
action | string | ~ 1024文字 | 入手アクション | ||
count | long | ✓ | ~ 9223372036854775805 | 回数 |
ExecuteStampSheetLog
入手アクション実行ログ
マイクロサービスごとのトランザクションの実行内容ログです。
型 | 必須 | デフォルト | 値の制限 | 説明 | |
---|---|---|---|---|---|
timestamp | long | ✓ | 日時 (UNIX時間 単位:ミリ秒) | ||
transactionId | string | ✓ | ~ 1024文字 | トランザクションID | |
service | string | ✓ | ~ 1024文字 | マイクロサービスの種類 | |
method | string | ✓ | ~ 1024文字 | マイクロサービスのメソッド | |
userId | string | ✓ | ~ 128文字 | ユーザーID | |
action | string | ✓ | ~ 1024文字 | 入手アクション | |
args | string | ✓ | ~ 5242880文字 | 引数 |
ExecuteStampSheetLogCount
入手アクション実行ログ集計
型 | 必須 | デフォルト | 値の制限 | 説明 | |
---|---|---|---|---|---|
service | string | ~ 1024文字 | マイクロサービスの種類 | ||
method | string | ~ 1024文字 | マイクロサービスのメソッド | ||
userId | string | ~ 128文字 | ユーザーID | ||
action | string | ~ 1024文字 | 入手アクション | ||
count | long | ✓ | ~ 9223372036854775805 | 回数 |
ExecuteStampTaskLog
スタンプタスク実行ログ
マイクロサービスごとのスタンプタスクの実行内容ログです。
型 | 必須 | デフォルト | 値の制限 | 説明 | |
---|---|---|---|---|---|
timestamp | long | ✓ | 日時 (UNIX時間 単位:ミリ秒) | ||
taskId | string | ✓ | ~ 1024文字 | タスクID | |
service | string | ✓ | ~ 1024文字 | マイクロサービスの種類 | |
method | string | ✓ | ~ 1024文字 | マイクロサービスのメソッド | |
userId | string | ✓ | ~ 128文字 | ユーザーID | |
action | string | ✓ | ~ 1024文字 | 入手アクション | |
args | string | ✓ | ~ 5242880文字 | 引数 |
ExecuteStampTaskLogCount
入手アクション実行ログ集計
型 | 必須 | デフォルト | 値の制限 | 説明 | |
---|---|---|---|---|---|
service | string | ~ 1024文字 | マイクロサービスの種類 | ||
method | string | ~ 1024文字 | マイクロサービスのメソッド | ||
userId | string | ~ 128文字 | ユーザーID | ||
action | string | ~ 1024文字 | 入手アクション | ||
count | long | ✓ | ~ 9223372036854775805 | 回数 |
AccessLogWithTelemetry
テレメトリー情報付きアクセスログ
マイクロサービスへのリクエスト及びその応答内容を記録したログにレスポンスタイムや呼び出し元のコンテキスト情報を付加したログ
型 | 必須 | デフォルト | 値の制限 | 説明 | |
---|---|---|---|---|---|
timestamp | long | ✓ | 日時 (UNIX時間 単位:ミリ秒) | ||
sourceRequestId | string | ✓ | ~ 1024文字 | 呼び出し元リクエストID | |
requestId | string | ✓ | ~ 1024文字 | リクエストID | |
duration | long | ✓ | ~ 9223372036854775805 | 実行時間(ms) | |
service | string | ✓ | ~ 1024文字 | マイクロサービスの種類 | |
method | string | ✓ | ~ 1024文字 | マイクロサービスのメソッド | |
userId | string | ~ 128文字 | ユーザーID | ||
request | string | ✓ | ~ 10485760文字 | リクエストパラメータ | |
result | string | ✓ | ~ 10485760文字 | 応答内容 | |
status | enum { “ok”, “error” } | ✓ | ~ 128文字 | 実行時間(ms) |
status に指定する列挙型の定義
定義 | 説明 |
---|---|
ok | 正常 |
error | 異常 |
InGameLogTag
ゲーム内ログのタグ
型 | 必須 | デフォルト | 値の制限 | 説明 | |
---|---|---|---|---|---|
key | string | ✓ | ~ 64文字 | タグ名 | |
value | string | ✓ | ~ 128文字 | タグ値 |