├── .gitattributes ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── SECURITY.md ├── VERSION ├── composer.json ├── metadata └── V1Beta1 │ ├── Common.php │ ├── ErrorGroupService.php │ ├── ErrorStatsService.php │ └── ReportErrorsService.php └── src ├── Bootstrap.php ├── V1beta1 ├── Client │ ├── ErrorGroupServiceClient.php │ ├── ErrorStatsServiceClient.php │ └── ReportErrorsServiceClient.php ├── DeleteEventsRequest.php ├── DeleteEventsResponse.php ├── ErrorContext.php ├── ErrorEvent.php ├── ErrorGroup.php ├── ErrorGroupOrder.php ├── ErrorGroupServiceClient.php ├── ErrorGroupServiceGrpcClient.php ├── ErrorGroupStats.php ├── ErrorStatsServiceClient.php ├── ErrorStatsServiceGrpcClient.php ├── Gapic │ ├── ErrorGroupServiceGapicClient.php │ ├── ErrorStatsServiceGapicClient.php │ └── ReportErrorsServiceGapicClient.php ├── GetGroupRequest.php ├── HttpRequestContext.php ├── ListEventsRequest.php ├── ListEventsResponse.php ├── ListGroupStatsRequest.php ├── ListGroupStatsResponse.php ├── QueryTimeRange.php ├── QueryTimeRange │ └── Period.php ├── QueryTimeRange_Period.php ├── README.md ├── ReportErrorEventRequest.php ├── ReportErrorEventResponse.php ├── ReportErrorsServiceClient.php ├── ReportErrorsServiceGrpcClient.php ├── ReportedErrorEvent.php ├── ResolutionStatus.php ├── ServiceContext.php ├── ServiceContextFilter.php ├── SourceLocation.php ├── TimedCount.php ├── TimedCountAlignment.php ├── TrackingIssue.php ├── UpdateGroupRequest.php └── resources │ ├── error_group_service_client_config.json │ ├── error_group_service_descriptor_config.php │ ├── error_group_service_rest_client_config.php │ ├── error_stats_service_client_config.json │ ├── error_stats_service_descriptor_config.php │ ├── error_stats_service_rest_client_config.php │ ├── report_errors_service_client_config.json │ ├── report_errors_service_descriptor_config.php │ └── report_errors_service_rest_client_config.php └── prepend.php /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-php-errorreporting/HEAD/.gitattributes -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-php-errorreporting/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-php-errorreporting/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-php-errorreporting/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-php-errorreporting/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-php-errorreporting/HEAD/SECURITY.md -------------------------------------------------------------------------------- /VERSION: -------------------------------------------------------------------------------- 1 | 0.25.1 2 | -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-php-errorreporting/HEAD/composer.json -------------------------------------------------------------------------------- /metadata/V1Beta1/Common.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-php-errorreporting/HEAD/metadata/V1Beta1/Common.php -------------------------------------------------------------------------------- /metadata/V1Beta1/ErrorGroupService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-php-errorreporting/HEAD/metadata/V1Beta1/ErrorGroupService.php -------------------------------------------------------------------------------- /metadata/V1Beta1/ErrorStatsService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-php-errorreporting/HEAD/metadata/V1Beta1/ErrorStatsService.php -------------------------------------------------------------------------------- /metadata/V1Beta1/ReportErrorsService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-php-errorreporting/HEAD/metadata/V1Beta1/ReportErrorsService.php -------------------------------------------------------------------------------- /src/Bootstrap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-php-errorreporting/HEAD/src/Bootstrap.php -------------------------------------------------------------------------------- /src/V1beta1/Client/ErrorGroupServiceClient.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-php-errorreporting/HEAD/src/V1beta1/Client/ErrorGroupServiceClient.php -------------------------------------------------------------------------------- /src/V1beta1/Client/ErrorStatsServiceClient.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-php-errorreporting/HEAD/src/V1beta1/Client/ErrorStatsServiceClient.php -------------------------------------------------------------------------------- /src/V1beta1/Client/ReportErrorsServiceClient.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-php-errorreporting/HEAD/src/V1beta1/Client/ReportErrorsServiceClient.php -------------------------------------------------------------------------------- /src/V1beta1/DeleteEventsRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-php-errorreporting/HEAD/src/V1beta1/DeleteEventsRequest.php -------------------------------------------------------------------------------- /src/V1beta1/DeleteEventsResponse.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-php-errorreporting/HEAD/src/V1beta1/DeleteEventsResponse.php -------------------------------------------------------------------------------- /src/V1beta1/ErrorContext.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-php-errorreporting/HEAD/src/V1beta1/ErrorContext.php -------------------------------------------------------------------------------- /src/V1beta1/ErrorEvent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-php-errorreporting/HEAD/src/V1beta1/ErrorEvent.php -------------------------------------------------------------------------------- /src/V1beta1/ErrorGroup.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-php-errorreporting/HEAD/src/V1beta1/ErrorGroup.php -------------------------------------------------------------------------------- /src/V1beta1/ErrorGroupOrder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-php-errorreporting/HEAD/src/V1beta1/ErrorGroupOrder.php -------------------------------------------------------------------------------- /src/V1beta1/ErrorGroupServiceClient.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-php-errorreporting/HEAD/src/V1beta1/ErrorGroupServiceClient.php -------------------------------------------------------------------------------- /src/V1beta1/ErrorGroupServiceGrpcClient.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-php-errorreporting/HEAD/src/V1beta1/ErrorGroupServiceGrpcClient.php -------------------------------------------------------------------------------- /src/V1beta1/ErrorGroupStats.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-php-errorreporting/HEAD/src/V1beta1/ErrorGroupStats.php -------------------------------------------------------------------------------- /src/V1beta1/ErrorStatsServiceClient.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-php-errorreporting/HEAD/src/V1beta1/ErrorStatsServiceClient.php -------------------------------------------------------------------------------- /src/V1beta1/ErrorStatsServiceGrpcClient.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-php-errorreporting/HEAD/src/V1beta1/ErrorStatsServiceGrpcClient.php -------------------------------------------------------------------------------- /src/V1beta1/Gapic/ErrorGroupServiceGapicClient.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-php-errorreporting/HEAD/src/V1beta1/Gapic/ErrorGroupServiceGapicClient.php -------------------------------------------------------------------------------- /src/V1beta1/Gapic/ErrorStatsServiceGapicClient.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-php-errorreporting/HEAD/src/V1beta1/Gapic/ErrorStatsServiceGapicClient.php -------------------------------------------------------------------------------- /src/V1beta1/Gapic/ReportErrorsServiceGapicClient.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-php-errorreporting/HEAD/src/V1beta1/Gapic/ReportErrorsServiceGapicClient.php -------------------------------------------------------------------------------- /src/V1beta1/GetGroupRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-php-errorreporting/HEAD/src/V1beta1/GetGroupRequest.php -------------------------------------------------------------------------------- /src/V1beta1/HttpRequestContext.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-php-errorreporting/HEAD/src/V1beta1/HttpRequestContext.php -------------------------------------------------------------------------------- /src/V1beta1/ListEventsRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-php-errorreporting/HEAD/src/V1beta1/ListEventsRequest.php -------------------------------------------------------------------------------- /src/V1beta1/ListEventsResponse.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-php-errorreporting/HEAD/src/V1beta1/ListEventsResponse.php -------------------------------------------------------------------------------- /src/V1beta1/ListGroupStatsRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-php-errorreporting/HEAD/src/V1beta1/ListGroupStatsRequest.php -------------------------------------------------------------------------------- /src/V1beta1/ListGroupStatsResponse.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-php-errorreporting/HEAD/src/V1beta1/ListGroupStatsResponse.php -------------------------------------------------------------------------------- /src/V1beta1/QueryTimeRange.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-php-errorreporting/HEAD/src/V1beta1/QueryTimeRange.php -------------------------------------------------------------------------------- /src/V1beta1/QueryTimeRange/Period.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-php-errorreporting/HEAD/src/V1beta1/QueryTimeRange/Period.php -------------------------------------------------------------------------------- /src/V1beta1/QueryTimeRange_Period.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-php-errorreporting/HEAD/src/V1beta1/QueryTimeRange_Period.php -------------------------------------------------------------------------------- /src/V1beta1/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-php-errorreporting/HEAD/src/V1beta1/README.md -------------------------------------------------------------------------------- /src/V1beta1/ReportErrorEventRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-php-errorreporting/HEAD/src/V1beta1/ReportErrorEventRequest.php -------------------------------------------------------------------------------- /src/V1beta1/ReportErrorEventResponse.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-php-errorreporting/HEAD/src/V1beta1/ReportErrorEventResponse.php -------------------------------------------------------------------------------- /src/V1beta1/ReportErrorsServiceClient.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-php-errorreporting/HEAD/src/V1beta1/ReportErrorsServiceClient.php -------------------------------------------------------------------------------- /src/V1beta1/ReportErrorsServiceGrpcClient.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-php-errorreporting/HEAD/src/V1beta1/ReportErrorsServiceGrpcClient.php -------------------------------------------------------------------------------- /src/V1beta1/ReportedErrorEvent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-php-errorreporting/HEAD/src/V1beta1/ReportedErrorEvent.php -------------------------------------------------------------------------------- /src/V1beta1/ResolutionStatus.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-php-errorreporting/HEAD/src/V1beta1/ResolutionStatus.php -------------------------------------------------------------------------------- /src/V1beta1/ServiceContext.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-php-errorreporting/HEAD/src/V1beta1/ServiceContext.php -------------------------------------------------------------------------------- /src/V1beta1/ServiceContextFilter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-php-errorreporting/HEAD/src/V1beta1/ServiceContextFilter.php -------------------------------------------------------------------------------- /src/V1beta1/SourceLocation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-php-errorreporting/HEAD/src/V1beta1/SourceLocation.php -------------------------------------------------------------------------------- /src/V1beta1/TimedCount.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-php-errorreporting/HEAD/src/V1beta1/TimedCount.php -------------------------------------------------------------------------------- /src/V1beta1/TimedCountAlignment.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-php-errorreporting/HEAD/src/V1beta1/TimedCountAlignment.php -------------------------------------------------------------------------------- /src/V1beta1/TrackingIssue.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-php-errorreporting/HEAD/src/V1beta1/TrackingIssue.php -------------------------------------------------------------------------------- /src/V1beta1/UpdateGroupRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-php-errorreporting/HEAD/src/V1beta1/UpdateGroupRequest.php -------------------------------------------------------------------------------- /src/V1beta1/resources/error_group_service_client_config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-php-errorreporting/HEAD/src/V1beta1/resources/error_group_service_client_config.json -------------------------------------------------------------------------------- /src/V1beta1/resources/error_group_service_descriptor_config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-php-errorreporting/HEAD/src/V1beta1/resources/error_group_service_descriptor_config.php -------------------------------------------------------------------------------- /src/V1beta1/resources/error_group_service_rest_client_config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-php-errorreporting/HEAD/src/V1beta1/resources/error_group_service_rest_client_config.php -------------------------------------------------------------------------------- /src/V1beta1/resources/error_stats_service_client_config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-php-errorreporting/HEAD/src/V1beta1/resources/error_stats_service_client_config.json -------------------------------------------------------------------------------- /src/V1beta1/resources/error_stats_service_descriptor_config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-php-errorreporting/HEAD/src/V1beta1/resources/error_stats_service_descriptor_config.php -------------------------------------------------------------------------------- /src/V1beta1/resources/error_stats_service_rest_client_config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-php-errorreporting/HEAD/src/V1beta1/resources/error_stats_service_rest_client_config.php -------------------------------------------------------------------------------- /src/V1beta1/resources/report_errors_service_client_config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-php-errorreporting/HEAD/src/V1beta1/resources/report_errors_service_client_config.json -------------------------------------------------------------------------------- /src/V1beta1/resources/report_errors_service_descriptor_config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-php-errorreporting/HEAD/src/V1beta1/resources/report_errors_service_descriptor_config.php -------------------------------------------------------------------------------- /src/V1beta1/resources/report_errors_service_rest_client_config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-php-errorreporting/HEAD/src/V1beta1/resources/report_errors_service_rest_client_config.php -------------------------------------------------------------------------------- /src/prepend.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-php-errorreporting/HEAD/src/prepend.php --------------------------------------------------------------------------------