Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 1 addition & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -223,7 +223,6 @@ To configure a provider, pass it when initializing the cluster:

```csharp
using Cassandra;
using Cassandra.DataStax.Auth;
```

```csharp
Expand Down Expand Up @@ -255,7 +254,7 @@ Here is a list of platforms and .NET targets that Datastax uses when testing thi

Mono `6.12.0` is also used to run `net462` tests on `Ubuntu 18.04` but Datastax can't guarantee that the driver fully supports Mono in a production environment. Datastax recommends the modern cross platform .NET platform instead.

Note: DataStax products do not support big-endian systems.
Note: Big-endian systems are not supported.

## Building and running the tests

Expand Down
2 changes: 1 addition & 1 deletion docs/source/api-docs/toc.yml
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
- name: DataStax C# Driver for Apache Cassandra API Documentation
- name: ScyllaDB C# Driver API Documentation
href: api/
296 changes: 0 additions & 296 deletions docs/source/features/graph-support/index.md

This file was deleted.

2 changes: 0 additions & 2 deletions docs/source/features/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,6 @@ The ScyllaDB C# Driver for Scylla is a feature-rich and highly tunable C# client
- [CQL data types to C# types](datatypes/index)
- [Execution Profiles](execution-profiles/index)
- [Cluster and schema metadata](metadata/index)
- [Graph support](graph-support/index)
- [Metrics](metrics/index)
- [App.Metrics Provider](metrics/app-metrics/index)
- [List of metrics](metrics/metrics-list/index)
Expand Down Expand Up @@ -48,7 +47,6 @@ connection-heartbeat/index
connection-pooling/index
datatypes/index
execution-profiles/index
graph-support/index
metadata/index
metrics/index
native-protocol/index
Expand Down
4 changes: 2 additions & 2 deletions docs/source/features/metrics/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

The driver exposes measurements of its internal behavior through an API composed by abstractions. The client application must provide an implementation of these abstractions (`IDriverMetricsProvider`) in order to enable metrics.

DataStax offers an [Extension package] based on the [App.Metrics] library. Application developers can use [App.Metrics] to export metrics to a monitoring tool.
An [Extension package] is offered that is based on the [App.Metrics] library. Application developers can use [App.Metrics] to export metrics to a monitoring tool.

## Structure

Expand Down Expand Up @@ -55,7 +55,7 @@ builder.WithMetrics(provider, new DriverMetricsOptions()

`DriverMetricsOptions.SetBucketPrefix` can be used to specify a custom prefix to be added to the bucket name of every metric. See the [previous section](#structure) for information about his.

The `provider` parameter must be an implementation of `IDriverMetricsProvider`. As was mentioned previouly, DataStax offers an [App.Metrics based implementation on a separate extension nuget package].
The `provider` parameter must be an implementation of `IDriverMetricsProvider`. As was mentioned previouly, an [App.Metrics based implementation on a separate extension nuget package] is offered.

## Exporting metrics

Expand Down
2 changes: 1 addition & 1 deletion docs/source/features/opentelemetry/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ using var tracerProvider = Sdk.CreateTracerProviderBuilder()
...
```

__You can also find an [example in the driver's Github repository](https://github.com/scylladb/csharp-driver/tree/master/examples/OpenTelemetry/DistributedTracing) of how to implement distributed tracing with OpenTelemetry and the DataStax C# driver in an ASP.NET Core project.__
__You can also find an [example in the driver's Github repository](https://github.com/scylladb/csharp-driver/tree/master/examples/OpenTelemetry/DistributedTracing) of how to implement distributed tracing with OpenTelemetry and the ScyllaDB C# driver in an ASP.NET Core project.__

### Attributes

Expand Down
3 changes: 1 addition & 2 deletions docs/source/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -221,7 +221,6 @@ To configure a provider, pass it when initializing the cluster:

```csharp
using Cassandra;
using Cassandra.DataStax.Auth;
```

```csharp
Expand Down Expand Up @@ -253,7 +252,7 @@ Here is a list of platforms and .NET targets that Datastax uses when testing thi

Mono `6.12.0` is also used to run `net462` tests on `Ubuntu 18.04` but Datastax can't guarantee that the driver fully supports Mono in a production environment. Datastax recommends the modern cross platform .NET platform instead.

Note: DataStax products do not support big-endian systems.
Note: Big-endian systems are not supported.

## Building and running the tests

Expand Down
5 changes: 1 addition & 4 deletions docs/source/upgrade-guide/index.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,6 @@
# Upgrade Guide

The purpose of this guide is to detail the changes made by the successive versions of the DataStax C# Driver that are relevant to for an upgrade from prior versions.

If you have any question or comment, you can [post it on the mailing list][mailing-list].
The purpose of this guide is to detail the changes made by the successive versions of the ScyllaDB C# Driver that are relevant to for an upgrade from prior versions.

## Our policy regarding API changes and release versioning

Expand Down Expand Up @@ -280,7 +278,6 @@ only an initial amount of rows will be fetched (according to the page size), the
"on-demand" as you iterate through it.


[mailing-list]: https://groups.google.com/a/lists.datastax.com/forum/#!forum/csharp-driver-user
[context]: https://msdn.microsoft.com/en-us/library/system.data.objects.objectcontext(v=vs.110).aspx
[entitynuget]: https://www.nuget.org/packages/CassandraEntityContext/
[enum-tolist]: https://msdn.microsoft.com/en-us/library/bb342261(v=vs.110).aspx
Loading